/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/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/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()
|
D | msan_origin.h | 132 bool inserted = ChainedOriginDepotPut(h.id(), prev.raw_id(), &chained_id); in CreateChainedOrigin() local 135 if (inserted && flags()->origin_history_per_stack_limit > 0) in CreateChainedOrigin()
|
/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/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 | 26 # Check that additional nop is inserted, to align mask and jr to the next 63 # Check that additional nop is inserted, to align mask and load to the next 131 # Check that additional nop is inserted, to align mask and store to the next 188 # Check that additional nop is inserted, to align instruction and mask to the 198 # check that 2 additional nops are inserted, to align it to the next bundle.
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64AddressTypePromotion.cpp | 389 bool inserted = false; in mergeSExts() local 397 inserted = true; in mergeSExts() 409 inserted = true; in mergeSExts() 412 if (!inserted) in mergeSExts()
|
/external/webrtc/talk/app/webrtc/java/jni/ |
D | classreferenceholder.cc | 142 bool inserted = classes_.insert(std::make_pair(name, globalRef)).second; in LoadClass() local 143 RTC_CHECK(inserted) << "Duplicate class name: " << name; in LoadClass()
|
/external/valgrind/tests/ |
D | outer_inner.supp | 32 "LD_PRELOAD_STRING inserted in env, difficult to free" 49 "LD_PRELOAD_STRING inserted in env, difficult to free"
|