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

123

/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/chromium_org/content/common/mojo/
H A Dservice_registry_impl.cc47 bool inserted = service_factories_.insert( local
49 DCHECK(inserted);
/external/chromium_org/chrome/browser/content_settings/
H A Dpermission_context_base.cc98 bool inserted = pending_bubbles_.add( local
100 DCHECK(inserted) << "Duplicate id " << id.ToString();
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Djni_helpers.cc80 bool inserted = classes_.insert(std::make_pair(name, globalRef)).second; local
81 CHECK(inserted, "Duplicate class name");
/external/oprofile/libutil++/
H A Dunique_storage.h83 inserted = ids.insert(val); local
84 if (inserted.second)
87 return inserted.first->second;
/external/chromium_org/net/socket/
H A Dwebsocket_endpoint_lock_manager.cc46 bool inserted = local
49 DCHECK(inserted);
/external/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cc93 bool inserted; local
94 ChainedOriginDepotNode::Handle h = chainedOriginDepot.Put(desc, &inserted);
96 return inserted;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h29 handle_type Put(args_type args, bool *inserted = 0);
95 bool *inserted) {
96 if (inserted) *inserted = false;
128 if (inserted) *inserted = true;
94 Put(args_type args, bool *inserted) argument
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_file_system_helper.cc149 OriginInfoMap::iterator inserted = local
152 inserted->second.usage_map[type] = usage;
/external/chromium_org/chrome/browser/extensions/
H A Dextension_toolbar_model.cc96 bool inserted = false; local
106 inserted = true;
111 if (!inserted) {
/external/chromium_org/remoting/host/
H A Dipc_desktop_environment.cc136 bool inserted = active_connections_.insert( local
138 CHECK(inserted);
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_usage_cache.cc233 std::pair<CacheFiles::iterator, bool> inserted = local
235 if (!inserted.second)
236 return inserted.first->second;
243 cache_files_.erase(inserted.first);
248 inserted.first->second = new_file;
/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/llvm/lib/Target/AArch64/
H A DAArch64AddressTypePromotion.cpp386 bool inserted = false; local
394 inserted = true;
406 inserted = true;
409 if (!inserted)
/external/oprofile/libregex/
H A Dop_regex.cpp218 string inserted; local
227 inserted += '\\';
239 inserted += str.substr(matched.rm_so,
244 inserted += replace[i];
251 str.replace(first, count, inserted);
/external/stlport/test/eh/
H A Dnc_alloc.cpp195 bool inserted = alloc_set().insert(p).second; local
197 inserted;
198 EH_ASSERT(inserted);
/external/chromium_org/content/common/gpu/media/
H A Dvaapi_video_decode_accelerator.cc718 bool inserted = tfp_pictures_.insert(std::make_pair( local
720 DCHECK(inserted);

Completed in 5994 milliseconds

123