Home
last modified time | relevance | path

Searched refs:inserted (Results 1 – 25 of 262) sorted by relevance

1234567891011

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DMissingTokenException.cs64 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/
DMissingTokenException.cs59 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/
DMissingTokenException.as5 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/
DMissingTokenException.java34 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/
Dlegalize-unaligned-load.ll21 %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/
DMissingTokenException.js1 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/
DdePoolSet.c49 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()
DdePoolMultiSet.c47 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/
DMissingTokenException.pm23 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/
Dsanitizer_stackdepotbase.h30 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/
DANTLRMissingTokenException.m61 inserted = insertedToken;
73 if ( inserted != nil && token != nil ) {
74 …return [NSString stringWithFormat:@"MissingTokenException(inserted %@ at %@)", inserted, token.tex…
82 @synthesize inserted;
DANTLRMissingTokenException.h37 id<ANTLRToken> inserted; variable
51 @property (retain) id<ANTLRToken> inserted;
DANTLRMismatchedTokenException.h47 Token:(id<ANTLRToken>)inserted;
55 Token:(id<ANTLRToken>)inserted;
DANTLRMismatchedTokenException.m44 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/
Dexceptions.py237 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/
Dmsan_chained_origin_depot.cc111 bool inserted; in ChainedOriginDepotPut() local
112 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted); in ChainedOriginDepotPut()
114 return inserted; in ChainedOriginDepotPut()
Dmsan_origin.h132 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/
DANTLRMismatchedTokenException.h47 Token:(id<ANTLRToken>)inserted;
55 Token:(id<ANTLRToken>)inserted;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRMismatchedTokenException.h47 Token:(id<ANTLRToken>)inserted;
55 Token:(id<ANTLRToken>)inserted;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRMismatchedTokenException.h47 Token:(id<ANTLRToken>)inserted;
55 Token:(id<ANTLRToken>)inserted;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Derror.rb292 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/
Dnacl-mask.s26 # 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/
DAArch64AddressTypePromotion.cpp389 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/
Dclassreferenceholder.cc142 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/
Douter_inner.supp32 "LD_PRELOAD_STRING inserted in env, difficult to free"
49 "LD_PRELOAD_STRING inserted in env, difficult to free"

1234567891011