Searched refs:existing (Results 1 - 25 of 107) sorted by relevance

12345

/external/toybox/tests/
H A Dmkfifo.test10 touch existing
11 testing "mkfifo existing" \
12 "mkfifo existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" ""
13 rm existing
H A Dmkdir.test10 touch existing
11 testing "mkdir existing" \
12 "mkdir existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" ""
13 rm existing
26 mkdir existing
27 testing "mkdir -p existing" "mkdir -p existing && echo yes" "yes\n" "" ""
28 rmdir existing
/external/mockito/src/org/mockito/internal/util/collections/
H A DIdentitySet.java15 for(Object existing:list) {
16 if (existing == o) {
/external/mesa3d/src/glsl/
H A Dglsl_symbol_table.cpp87 symbol_table_entry *existing = get_entry(v->name); local
89 /* If there's already an existing function (not a constructor!) in
90 * the current scope, just update the existing entry to include 'v'.
92 if (existing->v == NULL && existing->t == NULL) {
93 existing->v = v;
97 /* If not declared at this scope, add a new entry. But if an existing
102 if (existing != NULL)
103 entry->f = existing->f;
127 symbol_table_entry *existing local
[all...]
H A Dlinker.cpp420 ir_variable *const existing = variables.get_variable(var->name); local
421 if (existing != NULL) {
422 if (var->type != existing->type) {
429 && existing->type->is_array()
430 && (var->type->fields.array == existing->type->fields.array)
432 || (existing->type->length == 0))) {
434 existing->type = var->type;
441 existing->type->name);
447 if (existing->explicit_location
448 && (var->location != existing
814 ir_variable *const existing = local
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DInterferenceRegisterMapper.java88 IntSet existing = newRegInterference.get(newReg);
90 if (existing == null) {
93 return existing.has(oldReg);
95 return existing.has(oldReg)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DGraph.java63 Node existing = nodes.get(a);
64 if ( existing!=null ) return existing;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DStriped.java360 L existing = existingRef == null ? null : existingRef.get();
361 if (existing != null) {
362 return existing;
369 existing = existingRef == null ? null : existingRef.get();
370 if (existing != null) {
371 return existing;
427 L existing = locks.get(index);
428 if (existing != null) {
429 return existing;
432 existing
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableMap.java63 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex];
65 ImmutableMapEntry<K, V> newEntry = (existing == null)
67 : new NonTerminalMapEntry<K, V>(entry, existing);
70 checkNoConflictInBucket(key, newEntry, existing);
90 @Nullable ImmutableMapEntry<K, V> existing = table[tableIndex];
92 ImmutableMapEntry<K, V> newEntry = (existing == null)
94 : new NonTerminalMapEntry<K, V>(key, value, existing);
97 checkNoConflictInBucket(key, newEntry, existing);
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_implicit.c395 x86_oplist_t * existing; local
397 for ( existing = insn->operands; existing; existing = existing->next ) {
398 if (existing->op.type == op_register &&
399 existing->op.data.reg.id == list->operand) {
400 op = &existing->op;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java491 public static byte[] clone(byte[] data, byte[] existing) argument
497 if ((existing == null) || (existing.length != data.length))
501 System.arraycopy(data, 0, existing, 0, existing.length);
502 return existing;
565 public static long[] clone(long[] data, long[] existing) argument
571 if ((existing == null) || (existing.length != data.length))
575 System.arraycopy(data, 0, existing,
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c151 boolean existing = debug_serial((void*)p, &serial); local
164 if(!existing)
/external/skia/src/animator/
H A DSkAnimateActive.h31 void pickUp(SkActive* existing);
H A DSkAnimateActive.cpp298 void SkActive::pickUp(SkActive* existing) { argument
307 existing->fInterpolators[index]->timeToValues(
308 existing->fState[index].fTicks - existing->fState[index].fStartTime, existingValues.begin());
320 existing->fState[index].fDuration = (SkMSec) SkScalarMulDiv(fState[index].fDuration,
474 // of the existing animate object then remove it from the list
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
H A Dextras_appengine_auth_models_test.py176 success, existing = models.Unique.create_multi(uniques)
183 if unique_username in existing:
186 if unique_auth_id in existing:
189 if unique_email in existing:
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DClassEmitter.java180 FieldInfo existing = (FieldInfo)fieldInfo.get(name);
182 if (existing != null) {
183 if (!info.equals(existing)) {
/external/boringssl/src/crypto/err/
H A Derr_data_generate.go105 for _, existing := range st.entries {
106 if existing>>15 == key>>15 {
/external/clang/test/Misc/
H A Dwarning-flags.c6 (1) It documents all existing warnings that currently have no associated -W flag,
9 If take an existing warning and add a flag, this test will fail. To
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DSmallSortedMap.java240 // Replace existing array entry.
491 final V existing = get(entry.getKey());
493 return existing == value ||
494 (existing != null && existing.equals(value));
574 * any existing iterators.
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAssignTokenTypesBehavior.java134 int existing = grammar.getTokenType(t.getText());
135 if ( existing==Label.INVALID ) {
/external/bison/tests/
H A DMakefile.am51 torture.at existing.at regression.at \
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/auth/
H A Dmodels.py51 success, existing = Unique.create_multi(uniques)
101 # existing = [entity.key.id() for entity in entities if entity]
102 # if existing:
103 # return False, existing
168 Optionally an existing token may be provided.
192 The existing token needing verified.
410 ok, existing = cls.unique_model.create_multi(k for k, v in uniques)
415 properties = [v for k, v in uniques if k in existing]
/external/guava/guava-tests/test/com/google/common/collect/
H A DConcurrentHashMultisetTest.java166 AtomicInteger existing = new AtomicInteger(12);
177 expect(backingMap.putIfAbsent(eq(KEY), isA(AtomicInteger.class))).andReturn(existing);
184 expect(backingMap.putIfAbsent(eq(KEY), isA(AtomicInteger.class))).andReturn(existing);
187 expect(backingMap.get(KEY)).andReturn(existing);
193 assertEquals(15, existing.get());
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs573 RewriteOperation existing;
574 if (m.TryGetValue(op.index, out existing) && existing != null) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
H A DPKCS12KeyStoreSpi.java897 ASN1Encodable existing = bagAttr.getBagAttribute(aOid);
898 if (existing != null)
901 if (!existing.toASN1Primitive().equals(attr))
904 "attempt to add existing attribute with different value");
994 ASN1Encodable existing = bagAttr.getBagAttribute(aOid);
995 if (existing != null)
998 if (!existing.toASN1Primitive().equals(attr))
1001 "attempt to add existing attribute with different value");
1056 ASN1Encodable existing = bagAttr.getBagAttribute(aOid);
1057 if (existing !
[all...]

Completed in 2925 milliseconds

12345