/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | MissingTokenException.cs | 64 public MissingTokenException(int expecting, IIntStream input, object inserted) in MissingTokenException() argument 65 : this(expecting, input, inserted, null) in MissingTokenException() 69 …public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> token… in MissingTokenException() argument 72 this._inserted = inserted; in MissingTokenException() 75 …gTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> to… in MissingTokenException() argument 78 this._inserted = inserted; in MissingTokenException() 81 …gTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> to… in MissingTokenException() argument 84 this._inserted = inserted; in MissingTokenException()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | MissingTokenException.cs | 59 public MissingTokenException(int expecting, IIntStream input, object inserted) in MissingTokenException() argument 60 : this(expecting, input, inserted, null) { in MissingTokenException() 63 …public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> token… in MissingTokenException() argument 65 this._inserted = inserted; in MissingTokenException() 68 …gTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> to… in MissingTokenException() argument 70 this._inserted = inserted; in MissingTokenException() 73 …gTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> to… in MissingTokenException() argument 75 this._inserted = inserted; in MissingTokenException()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | MissingTokenException.as | 5 public var inserted:Object; variable in org.antlr.runtime.MissingTokenException 7 public function MissingTokenException(expecting:int, input:IntStream, inserted:Object) { 9 this.inserted = inserted; 17 if ( inserted!=null && token!=null ) { 18 return "MissingTokenException(inserted "+inserted+" at "+token.text+")";
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | MissingTokenException.java | 34 public Object inserted; field in MissingTokenException 38 public MissingTokenException(int expecting, IntStream input, Object inserted) { in MissingTokenException() argument 40 this.inserted = inserted; in MissingTokenException() 48 if ( inserted!=null && token!=null ) { in toString() 49 return "MissingTokenException(inserted "+inserted+" at "+token.getText()+")"; in toString()
|
/external/llvm/test/CodeGen/ARM/ |
D | legalize-unaligned-load.ll | 21 %inserted.real = insertvalue { float, float } undef, float %arg.val.0, 0 22 %inserted.imag = insertvalue { float, float } %inserted.real, float %arg.val.1, 1 30 %inserted.real.1 = insertvalue { float, float } undef, float %.18, 0 31 %inserted.imag.1 = insertvalue { float, float } %inserted.real.1, float %.20, 1 32 store { float, float } %inserted.imag, { float, float }* %.16, align 1 33 store { float, float } %inserted.imag.1, { float, float }* %retptr, align 4
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | MissingTokenException.js | 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) { argument 5 this.inserted = inserted; 17 if (org.antlr.lang.isValue(this.inserted) && 20 return "MissingTokenException(inserted "+this.inserted+" at "+this.token.getText()+")";
|
/external/deqp/framework/delibs/depool/ |
D | dePoolSet.c | 49 deBool inserted = deInBounds32(i, 0, 5000); in dePoolSet_selfTest() local 51 DE_TEST_ASSERT(found == inserted); in dePoolSet_selfTest() 61 deBool inserted = deInBounds32(i, 1000, 5000); in dePoolSet_selfTest() local 63 DE_TEST_ASSERT(found == inserted); in dePoolSet_selfTest() 74 deBool inserted = (deInBounds32(i, 1000, 5000) || deInBounds32(i, 10000, 12000)); in dePoolSet_selfTest() local 76 DE_TEST_ASSERT(found == inserted); in dePoolSet_selfTest()
|
D | dePoolMultiSet.c | 47 deBool inserted = deInBounds32(i, 0, 5000); in dePoolMultiSet_selfTest() local 49 DE_TEST_ASSERT(found == inserted); in dePoolMultiSet_selfTest() 59 deBool inserted = deInBounds32(i, 1000, 5000); in dePoolMultiSet_selfTest() local 61 DE_TEST_ASSERT(found == inserted); in dePoolMultiSet_selfTest() 72 deBool inserted = (deInBounds32(i, 1000, 5000) || deInBounds32(i, 10000, 12000)); in dePoolMultiSet_selfTest() local 74 DE_TEST_ASSERT(found == inserted); in dePoolMultiSet_selfTest()
|
/external/ltp/testcases/commands/insmod/ |
D | insmod01.sh | 27 inserted=0 31 if [ $inserted -ne 0 ]; then 37 inserted=0 48 inserted=1
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | MissingTokenException.pm | 23 if (defined (my $inserted = $self->inserted) && defined (my $token = $self->token)) { 24 return "MissingTokenException(inserted $inserted at " . $token->get_text() . ")";
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stackdepotbase.h | 30 handle_type Put(args_type args, bool *inserted = nullptr); 99 bool *inserted) { in Put() argument 100 if (inserted) *inserted = false; in Put() 132 if (inserted) *inserted = true; in Put()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRMissingTokenException.m | 61 inserted = insertedToken; 73 if ( inserted != nil && token != nil ) { 74 …return [NSString stringWithFormat:@"MissingTokenException(inserted %@ at %@)", inserted, token.tex… 82 @synthesize inserted;
|
D | ANTLRMissingTokenException.h | 37 id<ANTLRToken> inserted; variable 51 @property (retain) id<ANTLRToken> inserted;
|
D | ANTLRMismatchedTokenException.h | 47 Token:(id<ANTLRToken>)inserted; 55 Token:(id<ANTLRToken>)inserted;
|
D | ANTLRMismatchedTokenException.m | 44 Token:(id<ANTLRToken>)inserted 46 …MismatchedTokenException alloc] initWithTokenType:expectedTokenType Stream:anInput Token:inserted]; 70 Token:(id<ANTLRToken>)inserted
|
/external/libmojo/mojo/public/cpp/bindings/lib/ |
D | multiplex_router.cc | 364 bool inserted = false; in CreateLocalEndpointHandle() local 365 InterfaceEndpoint* endpoint = FindOrInsertEndpoint(id, &inserted); in CreateLocalEndpointHandle() 366 if (inserted) { in CreateLocalEndpointHandle() 714 bool inserted = false; in ProcessIncomingMessage() local 715 InterfaceEndpoint* endpoint = FindOrInsertEndpoint(id, &inserted); in ProcessIncomingMessage() 716 if (inserted) { in ProcessIncomingMessage() 828 bool* inserted) { in FindOrInsertEndpoint() argument 832 DCHECK(!inserted || !*inserted); in FindOrInsertEndpoint() 839 if (inserted) in FindOrInsertEndpoint() 840 *inserted = true; in FindOrInsertEndpoint()
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | exceptions.py | 237 def __init__(self, expecting, input, inserted): argument 240 self.inserted = inserted 248 if self.inserted is not None and self.token is not None: 250 self.inserted, self.token.text)
|
/external/compiler-rt/lib/msan/ |
D | msan_chained_origin_depot.cc | 111 bool inserted; in ChainedOriginDepotPut() local 112 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted); in ChainedOriginDepotPut() 114 return inserted; in ChainedOriginDepotPut()
|
/external/v8/src/inspector/ |
D | wasm-translation.cc | 238 auto inserted = reverse_tables_.insert( in GetReverseTable() local 240 DCHECK(inserted.second); in GetReverseTable() 241 return &inserted.first->second; in GetReverseTable() 269 auto inserted = in AddScript() local 272 DCHECK(inserted.second); in AddScript() 274 inserted.first->second->Init(isolate_, this, agent); in AddScript()
|
/external/boringssl/src/crypto/pool/ |
D | pool.c | 117 int inserted = 0; in CRYPTO_BUFFER_new() local 120 inserted = lh_CRYPTO_BUFFER_insert(pool->bufs, &old, buf); in CRYPTO_BUFFER_new() 127 if (!inserted) { in CRYPTO_BUFFER_new()
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRMismatchedTokenException.h | 47 Token:(id<ANTLRToken>)inserted; 55 Token:(id<ANTLRToken>)inserted;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRMismatchedTokenException.h | 47 Token:(id<ANTLRToken>)inserted; 55 Token:(id<ANTLRToken>)inserted;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRMismatchedTokenException.h | 47 Token:(id<ANTLRToken>)inserted; 55 Token:(id<ANTLRToken>)inserted;
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
D | error.rb | 292 def initialize( expecting, input, inserted ) argument 294 @inserted = inserted 608 def MissingToken( expecting, inserted, input = @input ) argument 609 MissingToken.new( expecting, input, inserted )
|
/external/llvm/test/MC/Mips/ |
D | nacl-mask.s | 25 # Check that additional nop is inserted, to align mask and jr to the next 62 # Check that additional nop is inserted, to align mask and load to the next 130 # Check that additional nop is inserted, to align mask and store to the next 187 # Check that additional nop is inserted, to align instruction and mask to the 197 # check that 2 additional nops are inserted, to align it to the next bundle.
|