Searched defs:inserted (Results 1 - 25 of 49) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRMissingTokenException.h37 id<ANTLRToken> inserted; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRMissingTokenException.h37 id<ANTLRToken> inserted; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRMissingTokenException.h37 id<ANTLRToken> inserted; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRMissingTokenException.h37 id<ANTLRToken> inserted; variable
51 @property (retain) id<ANTLRToken> inserted; variable
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMissingTokenException.java34 public Object inserted; field in class:MissingTokenException
38 public MissingTokenException(int expecting, IntStream input, Object inserted) { argument
40 this.inserted = inserted;
48 if ( inserted!=null && token!=null ) {
49 return "MissingTokenException(inserted "+inserted+" at "+token.getText()+")";
/external/deqp/framework/delibs/depool/
H A DdePoolMultiSet.c47 deBool inserted = deInBounds32(i, 0, 5000); local
49 DE_TEST_ASSERT(found == inserted);
59 deBool inserted = deInBounds32(i, 1000, 5000); local
61 DE_TEST_ASSERT(found == inserted);
72 deBool inserted = (deInBounds32(i, 1000, 5000) || deInBounds32(i, 10000, 12000)); local
74 DE_TEST_ASSERT(found == inserted);
H A DdePoolSet.c49 deBool inserted = deInBounds32(i, 0, 5000); local
51 DE_TEST_ASSERT(found == inserted);
61 deBool inserted = deInBounds32(i, 1000, 5000); local
63 DE_TEST_ASSERT(found == inserted);
74 deBool inserted = (deInBounds32(i, 1000, 5000) || deInBounds32(i, 10000, 12000)); local
76 DE_TEST_ASSERT(found == inserted);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMissingTokenException.cs59 public MissingTokenException(int expecting, IIntStream input, object inserted) argument
60 : this(expecting, input, inserted, null) {
63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
65 this._inserted = inserted;
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
70 this._inserted = inserted;
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) argument
75 this._inserted = inserted;
90 return "MissingTokenException(inserted " + _inserted + " at " + Token.Text + ")";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMissingTokenException.cs64 public MissingTokenException(int expecting, IIntStream input, object inserted) argument
65 : this(expecting, input, inserted, null)
69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
72 this._inserted = inserted;
75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
78 this._inserted = inserted;
81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) argument
84 this._inserted = inserted;
104 return "MissingTokenException(inserted " + _inserted + " at " + Token.Text + ")";
/external/libevent/test/
H A Dregress_minheap.c58 struct event *inserted[1024]; local
65 inserted[i] = malloc(sizeof(struct event));
66 set_random_timeout(inserted[i]);
67 min_heap_push_(&heap, inserted[i]);
74 min_heap_erase_(&heap, inserted[i]);
91 free(inserted[i]);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dexecution_tracker.cc54 auto inserted = handle_to_execution_.emplace( local
57 CHECK(inserted.second);
/external/webrtc/talk/app/webrtc/java/jni/
H A Dclassreferenceholder.cc142 bool inserted = classes_.insert(std::make_pair(name, globalRef)).second; local
143 RTC_CHECK(inserted) << "Duplicate class name: " << name;
/external/boringssl/src/crypto/pool/
H A Dpool.c117 int inserted = 0; local
120 inserted = lh_CRYPTO_BUFFER_insert(pool->bufs, &old, buf);
127 if (!inserted) {
/external/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cc111 bool inserted; local
112 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted);
114 return inserted;
H A Dmsan_origin.h132 bool inserted = ChainedOriginDepotPut(h.id(), prev.raw_id(), &chained_id); local
135 if (inserted && flags()->origin_history_per_stack_limit > 0)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h30 handle_type Put(args_type args, bool *inserted = nullptr);
99 bool *inserted) {
100 if (inserted) *inserted = false;
132 if (inserted) *inserted = true;
98 Put(args_type args, bool *inserted) argument
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
H A DInsertion.java20 * Specifies something that needs to be inserted into a source file, including
41 * Whether this insertion has already been inserted into source code.
43 private boolean inserted; field in class:Insertion
46 * The package names for the annotations being inserted by this Insertion.
68 this.inserted = false;
105 * the source position where this insertion will be inserted
108 * inserted. This value will be ignored if {@code pos} is 0.
147 * the source position where this insertion will be inserted
150 * inserted. This value will be ignored if {@code pos} is 0.
183 * @return the package name of the annotation being inserted b
228 setInserted(boolean inserted) argument
[all...]
/external/jdiff/src/jdiff/
H A DDiffMyers.java94 The diagonal number equals the number of inserted lines minus the number
97 lines inserted or deleted (counting only lines before the midpoint).
356 /** Scan the tables of which lines are inserted and deleted,
391 /** Scan the tables of which lines are inserted and deleted,
469 and some are inserted.
473 INSERTED is the number of lines inserted here in file 1.
482 public int inserted; field in class:DiffMyers.change
487 /** Line number of 1st inserted line. */
493 INSERTED is the number of lines inserted here in file 1.
497 change(int line0, int line1, int deleted, int inserted, chang argument
[all...]
/external/libmojo/mojo/edk/system/
H A Dwait_set_dispatcher.cc102 bool inserted = waiting_dispatchers_.insert( local
104 DCHECK(inserted);
/external/llvm/lib/Target/AArch64/
H A DAArch64AddressTypePromotion.cpp386 bool inserted = false; local
394 inserted = true;
406 inserted = true;
409 if (!inserted)
/external/perf_data_converter/src/
H A Dbuilder.cc41 const auto inserted = strings_.emplace(str, index); local
42 if (!inserted.second) {
44 return inserted.first->second;
46 profile_->add_string_table(inserted.first->first);
59 const auto inserted = functions_.insert(std::make_pair(fn, index)); local
60 const bool insert_successful = inserted.second;
62 const auto existing_function = inserted.first;
215 const auto inserted = address_to_id.emplace(address, index); local
216 if (inserted.second) {
221 sample.add_location_id(inserted
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc152 pair<map<string, pair<size_t, size_t> >::iterator, bool> inserted = local
155 if (!inserted.second) {
159 inserted.first->second = std::make_pair(1, 0);
/external/vixl/src/
H A Dpool-manager-impl.h389 // No need to sort, we inserted the object in an already sorted array.
395 bool inserted = false; local
401 inserted = true;
405 if (!inserted) {
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dgpu_compiler.cc115 // Tries all potential libdevice directories in the order they are inserted.
683 bool inserted; local
692 std::tie(iter, inserted) = compilation_cache_.emplace(
705 if (inserted) {
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dflatset.h183 const bool inserted = !r.found; local
184 return {iterator(r.b, rep_.limit(), r.index), inserted};
271 const bool inserted = !r.found; local
272 return {iterator(r.b, rep_.limit(), r.index), inserted};

Completed in 661 milliseconds

12