/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/ |
D | control | 18 * non-existing Service, existing Attribute 19 * existing Service, non-existing Attribute 20 * non-existing Service, non-existing Attribute 21 * existing Service, existing Attribute
|
/external/mesa3d/src/compiler/glsl/ |
D | glsl_symbol_table.cpp | 139 symbol_table_entry *existing = get_entry(v->name); in add_variable() local 144 if (existing->v == NULL && existing->t == NULL) { in add_variable() 145 existing->v = v; in add_variable() 154 if (existing != NULL) in add_variable() 155 entry->f = existing->f; in add_variable() 196 symbol_table_entry *existing = get_entry(f->name); in add_function() local 197 if ((existing->f == NULL) && (existing->t == NULL)) { in add_function() 198 existing->f = f; in add_function()
|
D | linker.cpp | 815 ir_variable *const existing) in validate_intrastage_arrays() argument 822 if (var->type->is_array() && existing->type->is_array()) { in validate_intrastage_arrays() 823 if ((var->type->fields.array == existing->type->fields.array) && in validate_intrastage_arrays() 824 ((var->type->length == 0)|| (existing->type->length == 0))) { in validate_intrastage_arrays() 826 if ((int)var->type->length <= existing->data.max_array_access) { in validate_intrastage_arrays() 832 existing->data.max_array_access); in validate_intrastage_arrays() 834 existing->type = var->type; in validate_intrastage_arrays() 836 } else if (existing->type->length != 0) { in validate_intrastage_arrays() 837 if((int)existing->type->length <= var->data.max_array_access && in validate_intrastage_arrays() 838 !existing->data.from_ssbo_unsized_array) { in validate_intrastage_arrays() [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | bitfield-insert.ll | 26 define void @test_whole32(i32* %existing, i32* %new) { 31 %oldval = load volatile i32, i32* %existing 39 store volatile i32 %combined, i32* %existing 44 define void @test_whole64(i64* %existing, i64* %new) { 50 %oldval = load volatile i64, i64* %existing 58 store volatile i64 %combined, i64* %existing 63 define void @test_whole32_from64(i64* %existing, i64* %new) { 71 %oldval = load volatile i64, i64* %existing 78 store volatile i64 %combined, i64* %existing 83 define void @test_32bit_masked(i32 *%existing, i32 *%new) { [all …]
|
D | bitfield-insert-0.ll | 6 define void @test_bfi0(i32* %existing, i32* %new) { 9 %oldval = load volatile i32, i32* %existing 16 store volatile i32 %combined, i32* %existing
|
/external/guava/guava/src/com/google/common/collect/ |
D | RegularImmutableMap.java | 63 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex]; in RegularImmutableMap() local 65 ImmutableMapEntry<K, V> newEntry = (existing == null) in RegularImmutableMap() 67 : new NonTerminalMapEntry<K, V>(entry, existing); in RegularImmutableMap() 70 checkNoConflictInBucket(key, newEntry, existing); in RegularImmutableMap() 90 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex]; in RegularImmutableMap() local 92 ImmutableMapEntry<K, V> newEntry = (existing == null) in RegularImmutableMap() 94 : new NonTerminalMapEntry<K, V>(key, value, existing); in RegularImmutableMap() 97 checkNoConflictInBucket(key, newEntry, existing); in RegularImmutableMap()
|
/external/toybox/tests/ |
D | mkdir.test | 10 touch existing 13 rm existing 26 mkdir existing 28 rmdir existing
|
D | mkfifo.test | 10 touch existing 13 rm existing
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | Striped.java | 359 L existing = existingRef == null ? null : existingRef.get(); 360 if (existing != null) { 361 return existing; 368 existing = existingRef == null ? null : existingRef.get(); 369 if (existing != null) { 370 return existing; 426 L existing = locks.get(index); 427 if (existing != null) { 428 return existing; 431 existing = locks.putIfAbsent(index, created); [all …]
|
/external/guice/core/src/com/google/inject/internal/ |
D | ScopeBindingProcessor.java | 52 ScopeBinding existing = injector.state.getScopeBinding(annotationType); in visit() local 53 if (existing != null) { in visit() 54 if (!scope.equals(existing.getScope())) { in visit() 55 errors.duplicateScopes(existing, annotationType, scope); in visit()
|
/external/curl/tests/data/ |
D | test534 | 8 non-existing host 32 FTP RETR twice using multi: non-existing host and non-existing file 35 ftp://non-existing-host.haxx.se/path/534 ftp://%HOSTIP:%FTPPORT/path/534
|
D | test20 | 6 non-existing host 25 attempt connect to non-existing host name 28 non-existing-host.haxx.se.
|
D | test507 | 7 non-existing host 21 multi interface get with non-existing host name 27 http://non-existing-host.haxx.se/
|
/external/libchrome/base/metrics/ |
D | persistent_histogram_allocator.cc | 411 HistogramBase* existing = GetOrCreateStatisticsRecorderHistogram(histogram); in MergeHistogramDeltaToStatisticsRecorder() local 412 if (!existing) { in MergeHistogramDeltaToStatisticsRecorder() 423 existing->AddSamples(*histogram->SnapshotDelta()); in MergeHistogramDeltaToStatisticsRecorder() 430 HistogramBase* existing = GetOrCreateStatisticsRecorderHistogram(histogram); in MergeHistogramFinalDeltaToStatisticsRecorder() local 431 if (!existing) { in MergeHistogramFinalDeltaToStatisticsRecorder() 439 existing->AddSamples(*histogram->SnapshotFinalDelta()); in MergeHistogramFinalDeltaToStatisticsRecorder() 634 HistogramBase* existing = in GetOrCreateStatisticsRecorderHistogram() local 636 if (existing) in GetOrCreateStatisticsRecorderHistogram() 637 return existing; in GetOrCreateStatisticsRecorderHistogram() 646 existing = DeserializeHistogramInfo(&iter); in GetOrCreateStatisticsRecorderHistogram() [all …]
|
/external/google-breakpad/src/third_party/libdisasm/ |
D | ia32_implicit.c | 395 x86_oplist_t * existing; in ia32_insn_implicit_ops() local 397 for ( existing = insn->operands; existing; existing = existing->next ) { in ia32_insn_implicit_ops() 398 if (existing->op.type == op_register && in ia32_insn_implicit_ops() 399 existing->op.data.reg.id == list->operand) { in ia32_insn_implicit_ops() 400 op = &existing->op; in ia32_insn_implicit_ops()
|
/external/python/cpython2/Lib/logging/ |
D | config.py | 216 existing = list(root.manager.loggerDict.keys()) 221 existing.sort() 235 if qn in existing: 236 i = existing.index(qn) + 1 # start with the entry after qn 239 num_existing = len(existing) 241 if existing[i][:pflen] == prefixed: 242 child_loggers.append(existing[i]) 244 existing.remove(qn) 264 for log in existing: 599 existing = root.manager.loggerDict.keys() [all …]
|
/external/clang/test/SemaObjC/ |
D | arc-property.m | 5 …id __weak myString; // expected-error {{existing instance variable 'myString' for strong property … 7 …id __weak myString2; // expected-error {{existing instance variable 'myString2' for strong propert… 9 …id StrongIvar5; // expected-error {{existing instance variable 'StrongIvar5' for __weak property '… 34 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for __weak property '… 35 …id __strong y; // expected-error {{existing instance variable 'y' for __weak property 'y' must be…
|
D | arc-property-lifetime.m | 6 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '… 7 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be… 23 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '… 24 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be… 40 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '… 41 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be… 73 …id y; // expected-error {{existing instance variable 'y' for property 'y' with assign attribute mu… 88 …id y; // expected-error {{existing instance variable 'y' for property 'y' with unsafe_unretained a… 183 …id _prop; // expected-error {{existing instance variable '_prop' for property 'prop' with assign a…
|
D | error-property-gc-attr.m | 22 @synthesize pweak=IVAR; // expected-error {{existing instance variable 'IVAR' for __weak property … 23 @synthesize NOT=II; // expected-error {{existing instance variable 'II' for strong property 'NOT' m… 26 @synthesize AWEAK; // expected-error {{existing instance variable 'AWEAK' for strong property 'AWEA…
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Arrays.java | 616 public static byte[] clone(byte[] data, byte[] existing) in clone() argument 622 if ((existing == null) || (existing.length != data.length)) in clone() 626 System.arraycopy(data, 0, existing, 0, existing.length); in clone() 627 return existing; in clone() 690 public static long[] clone(long[] data, long[] existing) in clone() argument 696 if ((existing == null) || (existing.length != data.length)) in clone() 700 System.arraycopy(data, 0, existing, 0, existing.length); in clone() 701 return existing; in clone()
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | type_info.cc | 140 const StringPiece* existing = InsertOrReturnExisting( in PopulateNameLookupTable() local 142 if (existing && *existing != name) { in PopulateNameLookupTable() 143 GOOGLE_LOG(WARNING) << "Field '" << name << "' and '" << *existing in PopulateNameLookupTable()
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
D | Graph.java | 63 Node existing = nodes.get(a); in getNode() local 64 if ( existing!=null ) return existing; in getNode()
|
/external/mockito/src/main/java/org/mockito/internal/util/collections/ |
D | IdentitySet.java | 15 for(Object existing:list) { in contains() 16 if (existing == o) { in contains()
|
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/ |
D | ClassProcessor.java | 83 DexEncodedMethod[] existing = clazz.virtualMethods; in process() local 84 clazz.virtualMethods = new DexEncodedMethod[existing.length + methodsToImplement.size()]; in process() 85 System.arraycopy(existing, 0, clazz.virtualMethods, 0, existing.length); in process() 91 clazz.virtualMethods[existing.length + i] = newMethod; in process()
|
/external/r8/src/main/java/com/android/tools/r8/shaking/ |
D | SimpleClassMerger.java | 313 Set<Wrapper<T>> existing, in mergeItems() argument 321 addNonShadowed(fromItems, methods, equivalence, existing, onConflict); in mergeItems() 329 Set<Wrapper<T>> existing, in addNonShadowed() argument 338 if (existing.contains(wrapped)) { in addNonShadowed() 353 private DexEncodedMethod abortOnNonAbstract(DexEncodedMethod existing, in abortOnNonAbstract() argument 355 if (existing == null) { in abortOnNonAbstract() 365 deferredRenamings.put(method, existing); in abortOnNonAbstract() 366 return existing; in abortOnNonAbstract() 367 } else if (existing.accessFlags.isBridge()) { in abortOnNonAbstract() 369 existing.getCode().registerReachableDefinitions(extractor); in abortOnNonAbstract() [all …]
|