HomeSort by relevance Sort by last modified time
    Searched full:duplicate (Results 151 - 175 of 6812) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/autotest/client/site_tests/power_UiResume/
power_UiResume.py 15 reduces duplicate code, while cover all 3 cases: with ARC, with Chrome but
37 Run client side autotest power_Resume, to reduce duplicate code.
  /external/autotest/server/cros/ap_configurators/
belkinF7D1301_ap_configurator.py 34 xpath= '//h1[contains(text(), "Duplicate Administrator")]'
36 logging.debug('We got a \'Duplicate Administrator\' page '
  /external/clang/test/Parser/
pragma-loop-safety.cpp 28 /* expected-error {{duplicate directives 'vectorize(assume_safety)' and 'vectorize(enable)'}} */ #pragma clang loop vectorize(enable)
30 /* expected-error {{duplicate directives 'interleave(assume_safety)' and 'interleave(enable)'}} */ #pragma clang loop interleave(enable)
  /external/tpm2/
Duplicate_fp.h 21 TPM2B_PRIVATE duplicate; member in struct:__anon40348
25 // Executes Duplicate with request handles and parameters from
Import.c 27 // TPM_RC_BINDING duplicate and objectPublic are not cryptographically
35 // secret; or unmarshaling sensitive value from duplicate failed the
37 // TPM_RC_INTEGRITY duplicate integrity is broken
52 // type of parentHandle; or unmarshaling sensitive value from duplicate
61 // objectPublic and duplicate are of different types
122 result = CryptSecretDecrypt(in->parentHandle, NULL, "DUPLICATE",
143 result = DuplicateToSensitive(&in->duplicate, &name, in->parentHandle,
  /external/vboot_reference/tests/futility/
data_fmap2_expect_hh.txt 6 RW_ENVIRONMENT 003fc000 00400000 00004000 // DUPLICATE
8 SHARED_DATA 003f8000 003fc000 00004000 // DUPLICATE
data_fmap2_expect_hhH.txt 7 RW_ENVIRONMENT 003fc000 00400000 00004000 // DUPLICATE
9 SHARED_DATA 003f8000 003fc000 00004000 // DUPLICATE
  /hardware/intel/common/libmix/mix_video/src/
mixvideoconfigparamsdec_mp42.c 105 * @returns: a newly allocated duplicate of the object.
107 * Copy duplicate of the object.
115 MixVideoConfigParamsDecMP42 *duplicate = mix_videoconfigparamsdec_mp42_new(); local
116 LOG_V( "duplicate = 0x%x\n", duplicate);
117 if (mix_videoconfigparamsdec_mp42_copy(MIX_PARAMS(duplicate), MIX_PARAMS(
119 ret = MIX_PARAMS(duplicate);
121 mix_videoconfigparamsdec_mp42_unref(duplicate);
mixbuffer.c 89 * @returns: a newly allocated duplicate of the object.
91 * Copy duplicate of the object.
98 MixBuffer *duplicate = mix_buffer_new(); local
99 if (mix_buffer_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
100 ret = MIX_PARAMS(duplicate);
102 mix_buffer_unref(duplicate);
124 // Duplicate string
mixvideocaps.c 94 * @returns: a newly allocated duplicate of the object.
96 * Copy duplicate of the object.
105 MixVideoCaps *duplicate = mix_videocaps_new (); local
106 if (mix_videocaps_copy (MIX_PARAMS (duplicate), MIX_PARAMS (obj)))
108 ret = MIX_PARAMS (duplicate);
112 mix_videocaps_unref (duplicate);
141 // Duplicate string
mixvideoinitparams.c 88 * @returns: a newly allocated duplicate of the object.
90 * Copy duplicate of the object.
96 MixVideoInitParams *duplicate = mix_videoinitparams_new(); local
97 if (mix_videoinitparams_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
98 ret = MIX_PARAMS(duplicate);
100 mix_videoinitparams_unref(duplicate);
122 /* duplicate display */
  /libcore/support/src/test/java/tests/support/
Support_SetTest.java 38 assertTrue("Set Test - Adding a duplicate element changed the set",
43 "Set Test - Adding and removing a duplicate element failed to remove it",
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursorNoDuplicates.java 25 * and doesn't allow duplicate suggestions.
45 if (DBG) Log.d(TAG, "Rejecting duplicate " + key);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
reg-err.l 4 .*:5: (Error|Warning): Invalid duplicate use of `r1'
6 .*:7: (Error|Warning): Invalid duplicate use of `p1'
  /external/clang/test/Sema/
c89.c 96 const const int c_i; /* expected-warning {{duplicate 'const' declaration specifier}} */
98 volatile vol_int volvol_i; /* expected-warning {{duplicate 'volatile' declaration specifier}} */
99 typedef volatile vol_int volvol_int; /* expected-warning {{duplicate 'volatile' declaration specifier}} */
104 const CI mine1[5][5]; /* expected-warning {{duplicate 'const' declaration specifier}} */
107 const array_of_CI mine2; /* expected-warning {{duplicate 'const' declaration specifier}} */
switch.c 12 case 42: // expected-error {{duplicate case value '42'}}
18 case 43 ... 45: ; // expected-error {{duplicate case value}}
21 case 15000 ... 40000000:; // expected-error {{duplicate case value}}
334 case TEST19MACRO: // expected-error {{duplicate case value '5'}}
337 case kTest19Enum1: // expected-error {{duplicate case value: '7' and 'kTest19Enum1' both equal '7'}} \
339 case kTest19Enum1: // expected-error {{duplicate case value 'kTest19Enum1'}} \
341 case kTest19Enum2: // expected-error {{duplicate case value: 'kTest19Enum1' and 'kTest19Enum2' both equal '7'}} \
343 case (int)kTest19Enum2: //expected-error {{duplicate case value 'kTest19Enum2'}}
346 case a: // expected-error {{duplicate case value: '3' and 'a' both equal '3'}} \
348 case a: // expected-error {{duplicate case value 'a'}
    [all...]
  /external/clang/test/SemaObjC/
category-1.m 11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1' on interface 'MyClass1'}}
24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Category4' on interface 'MyClass1'}}
25 @interface MyClass1 (Category7) @end // expected-warning {{duplicate definition of category 'Category7' on interface 'MyClass1'}}
26 @interface MyClass1 (Category8) @end // expected-warning {{duplicate definition of category 'Category8' on interface 'MyClass1'}}
51 @interface XCRemoteComputerManager(x) // expected-warning {{duplicate definition of category 'x' on interface 'XCRemoteComputerManager'}}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DoubleBufferTest.java 216 // duplicate's contents should be the same as buf
217 DoubleBuffer duplicate = buf.duplicate();
218 assertNotSame(buf, duplicate);
219 assertEquals(buf.position(), duplicate.position());
220 assertEquals(buf.limit(), duplicate.limit());
221 assertEquals(buf.isReadOnly(), duplicate.isReadOnly());
222 assertEquals(buf.isDirect(), duplicate.isDirect());
223 assertEquals(buf.order(), duplicate.order());
224 assertContentEquals(buf, duplicate);
400 DoubleBuffer duplicate = buf.duplicate(); local
    [all...]
FloatBufferTest.java 207 // duplicate's contents should be the same as buf
208 FloatBuffer duplicate = buf.duplicate();
209 assertNotSame(buf, duplicate);
210 assertEquals(buf.position(), duplicate.position());
211 assertEquals(buf.limit(), duplicate.limit());
212 assertEquals(buf.isReadOnly(), duplicate.isReadOnly());
213 assertEquals(buf.isDirect(), duplicate.isDirect());
214 assertEquals(buf.order(), duplicate.order());
215 assertContentEquals(buf, duplicate);
398 FloatBuffer duplicate = buf.duplicate(); local
    [all...]
IntBufferTest.java 187 // duplicate's contents should be the same as buf
188 IntBuffer duplicate = buf.duplicate();
189 assertNotSame(buf, duplicate);
190 assertEquals(buf.position(), duplicate.position());
191 assertEquals(buf.limit(), duplicate.limit());
192 assertEquals(buf.isReadOnly(), duplicate.isReadOnly());
193 assertEquals(buf.isDirect(), duplicate.isDirect());
194 assertEquals(buf.order(), duplicate.order());
195 assertContentEquals(buf, duplicate);
376 IntBuffer duplicate = buf.duplicate(); local
    [all...]
LongBufferTest.java 187 // duplicate's contents should be the same as buf
188 LongBuffer duplicate = buf.duplicate();
189 assertNotSame(buf, duplicate);
190 assertEquals(buf.position(), duplicate.position());
191 assertEquals(buf.limit(), duplicate.limit());
192 assertEquals(buf.isReadOnly(), duplicate.isReadOnly());
193 assertEquals(buf.isDirect(), duplicate.isDirect());
194 assertEquals(buf.order(), duplicate.order());
195 assertContentEquals(buf, duplicate);
377 LongBuffer duplicate = buf.duplicate(); local
    [all...]
ShortBufferTest.java 186 // duplicate's contents should be the same as buf
187 ShortBuffer duplicate = buf.duplicate();
188 assertNotSame(buf, duplicate);
189 assertEquals(buf.position(), duplicate.position());
190 assertEquals(buf.limit(), duplicate.limit());
191 assertEquals(buf.isReadOnly(), duplicate.isReadOnly());
192 assertEquals(buf.isDirect(), duplicate.isDirect());
193 assertEquals(buf.order(), duplicate.order());
194 assertContentEquals(buf, duplicate);
363 ShortBuffer duplicate = buf.duplicate(); local
    [all...]
  /frameworks/base/tools/aapt2/tools/consumers/
duplicates.py 2 Looks for duplicate resource definitions and removes all but the last one.
25 # Extract the duplicate resource definitions, ignoring the last definition
40 print "{0}: removing duplicate resource '{1}'".format(xml_path, definition.name)
57 # and skipping the lines and characters until the end of this duplicate
79 class Duplicate:
80 """A small struct to maintain the positions of a Duplicate resource definition."""
112 self._current_resource = Duplicate(
  /external/libchrome/base/posix/
file_descriptor_shuffle.h 35 // Duplicate |fd|, an element of the domain, and write a fresh element of the
37 virtual bool Duplicate(int* result, int fd) = 0;
51 bool Duplicate(int* result, int fd) override;
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
3-2.c 24 int duplicate; member in struct:unique
121 if (tst->value == sym[i].value && tst->duplicate != sym[i].value && strcmp(tst->name, sym[i].name)) { //In case EAGAIN is not equal to EWOULDBLOCK,compare the name
122 printf("%s has a duplicate value with %s\n",

Completed in 1060 milliseconds

1 2 3 4 5 67 8 91011>>