Home
last modified time | relevance | path

Searched full:duplicate (Results 1 – 25 of 8259) sorted by relevance

12345678910>>...331

/external/toolchain-utils/bestflags/
Dpipeline_worker.py8 This module defines the helper and the worker. If there are duplicate tasks, for
13 The worker invokes the work method of the tasks that are not duplicate.
22 """Helper that filters duplicate tasks.
24 This method Continuously pulls duplicate tasks from the helper_queue. The
25 duplicate tasks need not be compiled/tested. This method also pulls completed
26 tasks from the worker queue and let the results of the duplicate tasks be the
35 helper_queue: A queue of duplicate tasks whose results need to be resolved.
39 of these tasks are needed to resolve the results of the duplicate tasks.
42 result_queue: After the results of the duplicate tasks have been resolved,
43 the duplicate tasks will be sent to the next stage via this queue.
[all …]
/external/sdv/vsomeip/third_party/boost/spirit/test/karma/
Dduplicate.cpp20 using boost::spirit::karma::duplicate; in main()
24 BOOST_TEST(test("2.02.0", duplicate[double_ << double_], 2.0)); in main()
26 duplicate[double_ << double_], 2.0, space)); in main()
28 duplicate[double_ << double_ << double_], 2.0)); in main()
30 duplicate[double_ << double_ << double_], 2.0, space)); in main()
35 BOOST_TEST(test("2.02.0", duplicate["2.0" << double_], 2.0)); in main()
37 duplicate["2.0" << double_], 2.0, space)); in main()
42 BOOST_TEST(test("2.02.0", duplicate["2.0"] << double_, 2.0)); in main()
44 duplicate["2.0"] << double_, 2.0, space)); in main()
49 BOOST_TEST(test("bar", (duplicate["bar"] | "foo"))); in main()
[all …]
/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 \
21 DWOS: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c'{{$}}
22 1DWP: error: Duplicate DWO ID ({{.*}}) in 'c.c' (from '{{.*}}ac.dwp') and 'c.c'{{$}}
23 2DWP: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c' (from '{{.*}}bc.dwp'){{$}}
25 DWODWOS: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c'{{$}}
26 DWO1DWP: error: Duplicate DWO ID ({{.*}}) in 'c.c' (from 'c.dwo' in '{{.*}}ac.dwp') and 'c.c'{{$}}
27 DWO2DWP: error: Duplicate DWO ID ({{.*}}) in 'c.c' and 'c.c' (from 'c.dwo' in '{{.*}}bc.dwp'){{$}}
/external/rust/android-crates-io/crates/pin-project/tests/ui/pin_project/
Dinvalid.stderr25 error: duplicate #[pin] attribute
28 35 | #[pin] //~ ERROR duplicate #[pin] attribute
31 error: duplicate #[pin] attribute
37 error: duplicate #[pin] attribute
43 error: duplicate #[pin] attribute
46 61 | #[pin] //~ ERROR duplicate #[pin] attribute
97 error: duplicate `PinnedDrop` argument
100 111 | #[pin_project(PinnedDrop, PinnedDrop)] //~ ERROR duplicate `PinnedDrop` argument
103 error: duplicate `UnsafeUnpin` argument
106 114 | #[pin_project(UnsafeUnpin, UnsafeUnpin)] //~ ERROR duplicate `UnsafeUnpin` argument
[all …]
Dinvalid.rs35 #[pin] //~ ERROR duplicate #[pin] attribute
44 //~^^ ERROR duplicate #[pin] attribute
53 //~^^ ERROR duplicate #[pin] attribute
61 #[pin] //~ ERROR duplicate #[pin] attribute
111 #[pin_project(PinnedDrop, PinnedDrop)] //~ ERROR duplicate `PinnedDrop` argument
114 #[pin_project(UnsafeUnpin, UnsafeUnpin)] //~ ERROR duplicate `UnsafeUnpin` argument
117 #[pin_project(!Unpin, !Unpin)] //~ ERROR duplicate `!Unpin` argument
120 #[pin_project(PinnedDrop, UnsafeUnpin, UnsafeUnpin)] //~ ERROR duplicate `UnsafeUnpin` argument
123 …#[pin_project(PinnedDrop, UnsafeUnpin, PinnedDrop, UnsafeUnpin)] //~ ERROR duplicate `PinnedDrop` …
126 #[pin_project(project = A, project = B)] //~ ERROR duplicate `project` argument
[all …]
/external/cldr/common/testData/messageFormat/tests/
Ddata-model-errors.json76 "type": "duplicate-declaration"
84 "type": "duplicate-declaration"
92 "type": "duplicate-declaration"
100 "type": "duplicate-declaration"
108 "type": "duplicate-declaration"
116 "type": "duplicate-declaration"
124 "type": "duplicate-declaration"
132 "type": "duplicate-declaration"
140 "type": "duplicate-declaration"
148 "type": "duplicate-declaration"
[all …]
/external/javassist/sample/duplicate/
DMain.java1 package sample.duplicate;
21 First, run sample.duplicate.Viewer without a metaobject.
23 % java sample.duplicate.Viewer
28 of sample.duplicate.DuplicatedObject.
30 % java sample.duplicate.Main
33 sample.duplicate.Viewer is loaded by javassist.tools.reflect.Loader so that
39 cl.makeReflective("sample.duplicate.Ball", in main()
40 "sample.duplicate.DuplicatedObject", in main()
42 cl.run("sample.duplicate.Viewer", args); in main()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/testers/
DListRemoveTester.java43 E duplicate = arrayAndDuplicate.duplicate; in testRemove_duplicate() local
45 int firstIndex = getList().indexOf(duplicate); in testRemove_duplicate()
47 assertTrue("remove(present) should return true", getList().remove(duplicate)); in testRemove_duplicate()
49 "After remove(duplicate), a list should still contain the duplicate element", in testRemove_duplicate()
50 getList().contains(duplicate)); in testRemove_duplicate()
52 "remove(duplicate) should remove the first instance of the " in testRemove_duplicate()
53 + "duplicate element in the list", in testRemove_duplicate()
54 firstIndex == getList().indexOf(duplicate)); in testRemove_duplicate()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListRemoveTester.java43 E duplicate = arrayAndDuplicate.duplicate; in testRemove_duplicate() local
45 int firstIndex = getList().indexOf(duplicate); in testRemove_duplicate()
47 assertTrue("remove(present) should return true", getList().remove(duplicate)); in testRemove_duplicate()
49 "After remove(duplicate), a list should still contain the duplicate element", in testRemove_duplicate()
50 getList().contains(duplicate)); in testRemove_duplicate()
52 "remove(duplicate) should remove the first instance of the " in testRemove_duplicate()
53 + "duplicate element in the list", in testRemove_duplicate()
54 firstIndex == getList().indexOf(duplicate)); in testRemove_duplicate()
/external/rust/android-crates-io/crates/argh/
D.cargo-checksum.json1duplicate-name/duplicate-long-name.rs":"7318c28a50dc277fb8e6600cc39f881e24b204ea8721e08891939d9bc0…
D.android-checksum.json1duplicate-name/duplicate-long-name.rs":"e69498c81f3601dd137ff6ec23bac6ea74507a46043401757477abc6be…
/external/rust/android-crates-io/crates/argh/tests/ui/duplicate-name/
Dduplicate-long-name.stderr2 --> tests/ui/duplicate-name/duplicate-long-name.rs:4:5
10 --> tests/ui/duplicate-name/duplicate-long-name.rs:8:5
18 --> tests/ui/duplicate-name/duplicate-long-name.rs:12:5
26 --> tests/ui/duplicate-name/duplicate-long-name.rs:16:5
Dduplicate-short-name.stderr2 --> tests/ui/duplicate-name/duplicate-short-name.rs:4:5
10 --> tests/ui/duplicate-name/duplicate-short-name.rs:8:5
18 --> tests/ui/duplicate-name/duplicate-short-name.rs:12:5
26 --> tests/ui/duplicate-name/duplicate-short-name.rs:16:5
/external/boringssl/src/crypto/pool/
Dpool.cc96 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, &tmp); in crypto_buffer_new() local
97 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
98 // If the new |CRYPTO_BUFFER| would have static data, but the duplicate in crypto_buffer_new()
100 duplicate = NULL; in crypto_buffer_new()
102 if (duplicate != NULL) { in crypto_buffer_new()
103 CRYPTO_refcount_inc(&duplicate->references); in crypto_buffer_new()
107 if (duplicate != NULL) { in crypto_buffer_new()
108 return duplicate; in crypto_buffer_new()
139 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in crypto_buffer_new() local
140 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
[all …]
/external/cronet/stable/third_party/boringssl/src/crypto/pool/
Dpool.cc96 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, &tmp); in crypto_buffer_new() local
97 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
98 // If the new |CRYPTO_BUFFER| would have static data, but the duplicate in crypto_buffer_new()
100 duplicate = NULL; in crypto_buffer_new()
102 if (duplicate != NULL) { in crypto_buffer_new()
103 CRYPTO_refcount_inc(&duplicate->references); in crypto_buffer_new()
107 if (duplicate != NULL) { in crypto_buffer_new()
108 return duplicate; in crypto_buffer_new()
139 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in crypto_buffer_new() local
140 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
[all …]
/external/cronet/tot/third_party/boringssl/src/crypto/pool/
Dpool.cc96 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, &tmp); in crypto_buffer_new() local
97 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
98 // If the new |CRYPTO_BUFFER| would have static data, but the duplicate in crypto_buffer_new()
100 duplicate = NULL; in crypto_buffer_new()
102 if (duplicate != NULL) { in crypto_buffer_new()
103 CRYPTO_refcount_inc(&duplicate->references); in crypto_buffer_new()
107 if (duplicate != NULL) { in crypto_buffer_new()
108 return duplicate; in crypto_buffer_new()
139 CRYPTO_BUFFER *duplicate = lh_CRYPTO_BUFFER_retrieve(pool->bufs, buf); in crypto_buffer_new() local
140 if (data_is_static && duplicate != NULL && !duplicate->data_is_static) { in crypto_buffer_new()
[all …]
/external/e2fsprogs/tests/f_dup_de/
Dexpect.13 Duplicate entry 'mailcap.dpkg-old' found.
8 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
10 Duplicate entry 'localtime' in /etc (12) found. Clear? yes
12 Duplicate entry 'mailcap.dpkg-old' in /etc (12) found. Clear? yes
14 Duplicate entry 'modules.conf.old' in /etc (12) found. Clear? yes
19 Duplicate entry 'resolv.conf' in /etc (12) found. Clear? yes
21 Duplicate entry 'usb.permissions' in /etc (12) found. Clear? yes
Dexpect-nohtree.16 Duplicate entry 'mailcap.dpkg-old' found.
11 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
13 Duplicate entry 'localtime' in /etc (12) found. Clear? yes
15 Duplicate entry 'mailcap.dpkg-old' in /etc (12) found. Clear? yes
17 Duplicate entry 'modules.conf.old' in /etc (12) found. Clear? yes
22 Duplicate entry 'resolv.conf' in /etc (12) found. Clear? yes
24 Duplicate entry 'usb.permissions' in /etc (12) found. Clear? yes
/external/tensorflow/tensorflow/python/saved_model/registration/
Dregistration_test.py76 class Duplicate(base.Trackable): class
79 dup = Duplicate()
81 registration.get_registered_class_name(dup), "Custom.Duplicate")
83 registration.register_serializable(package="duplicate")(Duplicate)
86 registration.get_registered_class_name(dup), "duplicate.Duplicate")
89 registration.get_registered_class("Custom.Duplicate"), Duplicate)
91 registration.get_registered_class("duplicate.Duplicate"), Duplicate)
97 Duplicate)
/external/rust/android-crates-io/crates/tracing-subscriber/src/registry/
Dstack.rs6 duplicate: bool, field
21 let duplicate = self.stack.iter().any(|i| i.id == id); in push() localVariable
22 self.stack.push(ContextId { id, duplicate }); in push()
23 !duplicate in push()
35 let ContextId { id: _, duplicate } = self.stack.remove(idx); in pop()
36 return !duplicate; in pop()
46 .filter_map(|ContextId { id, duplicate }| if !*duplicate { Some(id) } else { None }) in iter()
/external/minigbm/cros_gralloc/gralloc0/tests/
Dgralloctest.c395 struct grallocinfo info, duplicate; in test_gralloc_order() local
399 grallocinfo_init(&duplicate, 512, 512, HAL_PIXEL_FORMAT_BGRA_8888, in test_gralloc_order()
405 * Duplicate the buffer handle to simulate an additional reference in test_gralloc_order()
409 duplicate.handle = native_handle; in test_gralloc_order()
411 CHECK(unregister_buffer(ctx->module, &duplicate) == 0); in test_gralloc_order()
412 CHECK(register_buffer(ctx->module, &duplicate)); in test_gralloc_order()
414 CHECK(unlock(ctx->module, &duplicate) == 0); in test_gralloc_order()
416 CHECK(lock(ctx->module, &duplicate)); in test_gralloc_order()
417 CHECK(duplicate.vaddr); in test_gralloc_order()
418 CHECK(unlock(ctx->module, &duplicate)); in test_gralloc_order()
[all …]
/external/slf4j/slf4j-jdk-platform-logging/src/test/java/org/slf4j/jdk/platform/logging/test/
DStringPrintStream.java36 boolean duplicate = false; field in StringPrintStream
40 public StringPrintStream(PrintStream ps, boolean duplicate) { in StringPrintStream() argument
43 this.duplicate = duplicate; in StringPrintStream()
51 if (duplicate) in print()
57 if (duplicate) in println()
63 if (duplicate) in println()
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
DStringPrintStream.java43 boolean duplicate = false; field in StringPrintStream
47 public StringPrintStream(PrintStream ps, boolean duplicate) { in StringPrintStream() argument
50 this.duplicate = duplicate; in StringPrintStream()
58 if (duplicate) in print()
64 if (duplicate) in println()
70 if (duplicate) in println()
/external/cronet/tot/third_party/icu/source/common/
Drbbitblb.h61 * Find duplicate (redundant) character classes. Begin looking with categories.first.
62 * Duplicate, if found are returned in the categories parameter.
67 * @return true if duplicate char classes were found, false otherwise.
77 * Check for, and remove duplicate states (table rows).
118 * Find duplicate (redundant) states, beginning at the specified pair,
123 * @return true if duplicate states were found, false otherwise.
127 /** Remove a duplicate state.
128 * @param duplStates The duplicate states. The first is kept, the second is removed.
134 /** Find the next duplicate state in the safe reverse table. An iterator function.
137 * @return true if a duplicate pair of states was found.
[all …]
/external/icu/icu4c/source/common/
Drbbitblb.h61 * Find duplicate (redundant) character classes. Begin looking with categories.first.
62 * Duplicate, if found are returned in the categories parameter.
67 * @return true if duplicate char classes were found, false otherwise.
77 * Check for, and remove duplicate states (table rows).
118 * Find duplicate (redundant) states, beginning at the specified pair,
123 * @return true if duplicate states were found, false otherwise.
127 /** Remove a duplicate state.
128 * @param duplStates The duplicate states. The first is kept, the second is removed.
134 /** Find the next duplicate state in the safe reverse table. An iterator function.
137 * @return true if a duplicate pair of states was found.
[all …]

12345678910>>...331