/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | SubList.cs | 34 throw new NotSupportedException(); in Add() 39 throw new NotSupportedException(); in Clear() 64 throw new NotSupportedException(); in Insert() 85 throw new NotSupportedException(); in Remove() 90 throw new NotSupportedException(); in RemoveAt() 257 throw new NotSupportedException(); in IList.Add() 262 throw new NotSupportedException(); in IList.Clear() 283 throw new NotSupportedException(); in IList.Insert() 308 throw new NotSupportedException(); in IList.Remove() 313 throw new NotSupportedException(); in IList.RemoveAt() [all …]
|
/external/brotli/csharp/ |
D | injected_code.txt | 10 get {throw new System.NotSupportedException();} 13 get {throw new System.NotSupportedException();} 14 set {throw new System.NotSupportedException();} 17 throw new System.NotSupportedException(); 20 throw new System.NotSupportedException(); 26 throw new System.NotSupportedException(); 29 throw new System.NotSupportedException();
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | LimitedInputStream.cs | 75 get { throw new NotSupportedException(); } 80 get { throw new NotSupportedException(); } 81 set { throw new NotSupportedException(); } 97 throw new NotSupportedException(); in Seek() 102 throw new NotSupportedException(); in SetLength() 107 throw new NotSupportedException(); in Write()
|
/external/zlib/src/contrib/dotzlib/DotZLib/ |
D | GZipStream.cs | 156 if (!CanRead) throw new NotSupportedException(); in Read() 183 if (!CanRead) throw new NotSupportedException(); in ReadByte() 201 if (!CanWrite) throw new NotSupportedException(); in Write() 228 if (!CanWrite) throw new NotSupportedException(); in WriteByte() 245 throw new NotSupportedException(); in SetLength() 257 throw new NotSupportedException(); in Seek() 279 throw new NotSupportedException(); 283 throw new NotSupportedException(); 296 throw new NotSupportedException();
|
/external/brotli/csharp/org/brotli/dec/ |
D | BrotliInputStream.cs | 199 get {throw new System.NotSupportedException();} 202 get {throw new System.NotSupportedException();} 203 set {throw new System.NotSupportedException();} 206 throw new System.NotSupportedException(); in Seek() 209 throw new System.NotSupportedException(); in SetLength() 215 throw new System.NotSupportedException(); in BeginWrite() 218 throw new System.NotSupportedException(); in Write()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
D | LookaheadStream.cs | 38 using NotSupportedException = System.NotSupportedException; typedef 167 throw new System.NotSupportedException( "streams are of unknown size" ); 246 … throw new NotSupportedException("can't seek before the beginning of this stream's buffer"); in Seek() 266 …throw new NotSupportedException("can't look more than one token before the beginning of this strea… in LB() 268 … throw new NotSupportedException("can't look past the end of this stream's buffer using LB(int)"); in LB()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | RewriteRuleNodeStream.cs | 36 using NotSupportedException = System.NotSupportedException; typedef 78 throw new NotSupportedException( "dup can't be called for a node stream." ); in Dup()
|
D | RewriteRuleTokenStream.cs | 36 using NotSupportedException = System.NotSupportedException; typedef 83 throw new NotSupportedException( "dup can't be called for a token stream." ); in Dup()
|
D | BaseTreeAdaptor.cs | 40 using NotSupportedException = System.NotSupportedException; typedef 291 throw new NotSupportedException( "don't know enough about Tree node" ); in SetType() 305 throw new NotSupportedException( "don't know enough about Tree node" ); in SetText() 512 throw new NotSupportedException(); in GetTree()
|
/external/bcc/src/cc/frontends/p4/compiler/ |
D | compilationException.py | 21 class NotSupportedException(Exception): class 25 super(NotSupportedException, self).__init__() 33 return (self.format + NotSupportedException.archError).format(
|
D | ebpfAction.py | 189 raise NotSupportedException("{0}", callee) 217 raise NotSupportedException( 221 raise NotSupportedException( 242 raise NotSupportedException("{0}: Arithmetic on {1}-bits", 259 raise NotSupportedException(
|
D | ebpfTable.py | 63 raise NotSupportedException( 90 raise NotSupportedException( 183 raise NotSupportedException("{0}: action_profile tables", 187 hlirtable, NotSupportedException.archError) 199 hlirtable, NotSupportedException.archError)
|
D | ebpfCounter.py | 25 raise NotSupportedException( 32 raise NotSupportedException(
|
D | ebpfScalarType.py | 20 raise NotSupportedException("{0} Variable-width field", parent)
|
D | p4toEbpf.py | 100 except NotSupportedException, e:
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | UnbufferedTokenStream.cs | 36 using NotSupportedException = System.NotSupportedException; typedef 89 … throw new NotSupportedException("Absolute token indexes are meaningless in an unbuffered stream"); in Get()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | UnbufferedTokenStream.cs | 37 using NotSupportedException = System.NotSupportedException; typedef 154 … throw new NotSupportedException("Absolute token indexes are meaningless in an unbuffered stream"); in Get()
|
D | RecognitionException.cs | 39 using NotSupportedException = System.NotSupportedException; typedef 427 catch (NotSupportedException) in ExtractInformationFromTreeNodeStream()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BaseTreeAdaptor.cs | 38 using NotSupportedException = System.NotSupportedException; typedef 228 throw new NotSupportedException("don't know enough about Tree node"); in SetType() 236 throw new NotSupportedException("don't know enough about Tree node"); in SetText()
|
D | CommonTreeNodeStream.cs | 38 using NotSupportedException = System.NotSupportedException; typedef
|
D | RewriteRuleNodeStream.cs | 76 throw new NotSupportedException("dup can't be called for a node stream."); in Dup()
|
D | RewriteRuleTokenStream.cs | 91 throw new NotSupportedException("dup can't be called for a token stream."); in Dup()
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
D | MapFieldTest.cs | 457 Assert.Throws<NotSupportedException>(() => keys.Clear()); in ViewsAreReadOnly() 458 Assert.Throws<NotSupportedException>(() => keys.Remove("a")); in ViewsAreReadOnly() 459 Assert.Throws<NotSupportedException>(() => keys.Add("a")); in ViewsAreReadOnly()
|
/external/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | MapField.cs | 699 throw new NotSupportedException(); in Add() 704 throw new NotSupportedException(); in Clear() 735 throw new NotSupportedException(); in Remove()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
D | LookaheadStream.cs | 134 throw new System.NotSupportedException("streams are of unknown size");
|