Home
last modified time | relevance | path

Searched refs:duplicate (Results 1 – 25 of 448) sorted by relevance

12345678910>>...18

/external/autotest/client/site_tests/graphics_Gralloc/src/
Dgralloctest.c391 struct grallocinfo info, duplicate; in test_gralloc_order() local
396 grallocinfo_init(&duplicate, 512, 512, HAL_PIXEL_FORMAT_BGRA_8888, in test_gralloc_order()
406 duplicate.handle = native_handle; in test_gralloc_order()
408 CHECK(unregister_buffer(ctx->module, &duplicate) == 0); in test_gralloc_order()
409 CHECK(register_buffer(ctx->module, &duplicate)); in test_gralloc_order()
411 CHECK(unlock(ctx->module, &duplicate) == 0); in test_gralloc_order()
413 CHECK(lock(ctx->module, &duplicate)); in test_gralloc_order()
414 CHECK(duplicate.vaddr); in test_gralloc_order()
415 CHECK(unlock(ctx->module, &duplicate)); in test_gralloc_order()
417 CHECK(unregister_buffer(ctx->module, &duplicate)); in test_gralloc_order()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListRemoveTester.java41 E duplicate = arrayAndDuplicate.duplicate; in testRemove_duplicate() local
43 int firstIndex = getList().indexOf(duplicate); in testRemove_duplicate()
46 getList().remove(duplicate)); in testRemove_duplicate()
48 + "the duplicate element", getList().contains(duplicate)); in testRemove_duplicate()
51 firstIndex == getList().indexOf(duplicate)); in testRemove_duplicate()
DListRemoveAllTester.java43 E duplicate = arrayAndDuplicate.duplicate; in testRemoveAll_duplicate() local
46 getList().removeAll(MinimalCollection.of(duplicate))); in testRemoveAll_duplicate()
49 getList().contains(duplicate)); in testRemoveAll_duplicate()
/external/boringssl/src/crypto/pool/
Dpool.c82 CRYPTO_BUFFER *const duplicate = in CRYPTO_BUFFER_new() local
84 if (duplicate != NULL) { in CRYPTO_BUFFER_new()
85 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
89 if (duplicate != NULL) { in CRYPTO_BUFFER_new()
90 return duplicate; in CRYPTO_BUFFER_new()
116 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in CRYPTO_BUFFER_new() local
118 if (duplicate == NULL) { in CRYPTO_BUFFER_new()
123 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
132 return duplicate; in CRYPTO_BUFFER_new()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java716 return duplicate(eras); in getEras()
724 eras = duplicate(newEras); in setEras()
732 return duplicate(eraNames); in getEraNames()
740 eraNames = duplicate(newEraNames); in setEraNames()
752 return duplicate(narrowEras); in getNarrowEras()
761 return duplicate(months); in getMonths()
806 return duplicate(returnValue); in getMonths()
814 months = duplicate(newMonths); in setMonths()
829 months = duplicate(newMonths); in setMonths()
832 shortMonths = duplicate(newMonths); in setMonths()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java728 return duplicate(eras); in getEras()
737 eras = duplicate(newEras); in setEras()
746 return duplicate(eraNames); in getEraNames()
755 eraNames = duplicate(newEraNames); in setEraNames()
767 return duplicate(narrowEras); in getNarrowEras()
777 return duplicate(months); in getMonths()
823 return duplicate(returnValue); in getMonths()
832 months = duplicate(newMonths); in setMonths()
848 months = duplicate(newMonths); in setMonths()
851 shortMonths = duplicate(newMonths); in setMonths()
[all …]
/external/llvm/test/MC/ARM/
Deh-directive-movsp.s7 .section .duplicate
9 .global duplicate symbol
10 .type duplicate,%function
11 duplicate: label
20 @ CHECK: Name: .ARM.exidx.duplicate
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractContainerTester.java182 public final E duplicate; field in AbstractContainerTester.ArrayWithDuplicate
184 private ArrayWithDuplicate(E[] elements, E duplicate) { in ArrayWithDuplicate() argument
186 this.duplicate = duplicate; in ArrayWithDuplicate()
196 E duplicate = elements[(elements.length / 2) - 1]; in createArrayWithDuplicateElement() local
197 elements[(elements.length / 2) + 1] = duplicate; in createArrayWithDuplicateElement()
198 return new ArrayWithDuplicate<E>(elements, duplicate); in createArrayWithDuplicateElement()
/external/llvm/test/tools/llvm-dwp/X86/
Dduplicate.test1 RUN: not llvm-dwp %p/../Inputs/duplicate/c.dwo %p/../Inputs/duplicate/c.dwo -o %t 2>&1 \
4 RUN: not llvm-dwp %p/../Inputs/duplicate/c.dwo %p/../Inputs/duplicate/bc.dwp -o %t 2>&1 \
7 RUN: not llvm-dwp %p/../Inputs/duplicate/ac.dwp %p/../Inputs/duplicate/c.dwo -o %t 2>&1 \
/external/clang/test/SemaObjC/
Dduplicate-ivar-in-class-extension.m12 int ivar; // expected-error {{duplicate member 'ivar'}}
13 int another_ivar; // expected-error {{duplicate member 'another_ivar'}}
14 int iSuper; // expected-error {{duplicate member 'iSuper'}}
30 return self->ivar; // would be ambiguous if the duplicate ivar were allowed
Dcheck-dup-decl-methods-1.m12 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
21 - (int) catm : (char*)ch1; // expected-error {{duplicate declaration of method 'catm:'}}
29 + (int) catm1 : (char)ch : (int*)i; // expected-error {{duplicate declaration of method 'catm1::'}}
30 + (T**) meth1; // expected-error {{duplicate declaration of method 'meth1'}}
36 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
Dclass-extension-dup-methods.m11 - (void) garf; // expected-error {{duplicate declaration of method 'garf'}}
12 + (void) cgarf; // expected-error {{duplicate declaration of method 'cgarf'}}
27 + (void)someMethodWithArgument:(float)argument : (float)argument2; // expected-error {{duplicate de…
Dcategory-1.m11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'…
24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Catego…
25 @interface MyClass1 (Category7) @end // expected-warning {{duplicate definition of category 'Catego…
26 @interface MyClass1 (Category8) @end // expected-warning {{duplicate definition of category 'Catego…
51 @interface XCRemoteComputerManager(x) // expected-warning {{duplicate definition of category 'x' on…
Dduplicate-ivar-check.m13 int one; // expected-error {{duplicate member 'one'}}
20 int fill_B; // expected-error {{duplicate member 'fill_B'}}
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
DUnknownEntry.java37 this.content = (ByteBuffer) content.duplicate().rewind(); in setContent()
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind(); in parse()
47 return content.duplicate(); in get()
52 ByteBuffer bb = content.duplicate(); in toString()
/external/swiftshader/third_party/subzero/tests_lit/parse_errs/
Dduplicate-fcn-name.test1 ; Test if we detect duplicate names in a symbol table.
5 ; RUN: not %pnacl_sz -bitcode-as-text %p/Inputs/duplicate-fcn-name.tbc \
9 ; CHECK: Module valuesymtab defines duplicate value name: 'f'
11 ; RUN: pnacl-bcfuzz -bitcode-as-text %p/Inputs/duplicate-fcn-name.tbc -output - \
/external/clang/test/SemaObjCXX/
Dobjc-extern-c.mm16 @protocol P // expected-warning {{duplicate protocol definition of 'P' is ignored}}
20 @interface I // expected-error {{duplicate}}
23 @interface I2(C) // expected-warning {{duplicate}}
/external/skia/include/core/
DSkStream.h107 virtual SkStreamRewindable* duplicate() const { return NULL; } in duplicate() function
148 SkStreamRewindable* duplicate() const override = 0;
154 SkStreamSeekable* duplicate() const override = 0;
166 SkStreamAsset* duplicate() const override = 0;
176 SkStreamMemory* duplicate() const override = 0;
276 SkStreamAsset* duplicate() const override;
335 SkMemoryStream* duplicate() const override;
/external/snakeyaml/src/test/resources/pyyaml/
Dduplicate-mapping-key.former-loader-error.data4 *anchor: duplicate key
6 *anchor: duplicate key
/external/llvm/test/YAMLParser/
Dduplicate-mapping-key.former-loader-error.test6 *anchor: duplicate key
8 *anchor: duplicate key
/external/wycheproof/
Dbuild_defs.bzl21 # So, we simply duplicate the test.
48 # So, we simply duplicate the test.
78 # So, we simply duplicate the test.
109 # So, we simply duplicate the test.
/external/swiftshader/third_party/LLVM/lib/Analysis/
DPathProfileVerifier.cpp93 unsigned duplicate = 0; in runOnModule() local
98 duplicate++; in runOnModule()
99 else duplicate = 0; in runOnModule()
101 arrayMap[BB][TI->getSuccessor(s)][duplicate] = i++; in runOnModule()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
Ddebug.rb61 duplicate = super
62 @debug_listener.create_node duplicate
63 return duplicate
/external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
DSharedBufferHandleImpl.java42 public SharedBufferHandle duplicate(DuplicateOptions options) { in duplicate() method in SharedBufferHandleImpl
43 return mCore.duplicate(this, options); in duplicate()
/external/smali/baksmali/src/test/resources/DuplicateTest/
DDuplicateStaticInstanceFields.smali8 # duplicate field ignored
19 # duplicate field ignored

12345678910>>...18