/external/chromium_org/tools/gyp/test/same-target-name/ |
gyptest-same-target-name.py | 8 Check that duplicate targets in a directory gives an error. 15 # Require that gyp files with duplicate targets spit out an error.
|
/external/clang/test/SemaTemplate/ |
ms-class-specialization-duplicate.cpp | 9 template class A<TInt>; // expected-warning {{duplicate explicit instantiation of 'A<int>' ignored as a Microsoft extension}}
|
/external/smali/baksmali/src/test/resources/DuplicateTest/ |
DuplicateStaticFields.smali | 10 # duplicate field ignored
|
DuplicateDirectVirtualMethods.smali | 12 # duplicate method ignored 36 # duplicate method ignored
|
DuplicateDirectMethods.smali | 18 # duplicate method ignored
|
DuplicateVirtualMethods.smali | 18 # duplicate method ignored
|
/libcore/luni/src/main/java/java/util/ |
DuplicateFormatFlagsException.java | 20 * The unchecked exception will be thrown out if there are duplicate flags given 36 * the format flags that contain a duplicate flag. 46 * Returns the format flags that contain a duplicate flag. 48 * @return the format flags that contain a duplicate flag.
|
/external/chromium_org/third_party/skia/src/opts/ |
SkBitmapProcState_filter_neon.h | 34 vy = vdup_n_u8(y); // duplicate y into vy 38 va0 = vdup_n_u32(a00); // duplicate a00 39 va1 = vdup_n_u32(a10); // duplicate a10 46 vx = vdup_n_u16(x); // duplicate x into vx 69 vy = vdup_n_u8(y); // duplicate y into vy 73 va0 = vdup_n_u32(a00); // duplicate a00 74 va1 = vdup_n_u32(a10); // duplicate a10 81 vx = vdup_n_u16(x); // duplicate x into vx 90 vscale = vdup_n_u16(scale); // duplicate scale
|
/external/skia/src/opts/ |
SkBitmapProcState_filter_neon.h | 34 vy = vdup_n_u8(y); // duplicate y into vy 38 va0 = vdup_n_u32(a00); // duplicate a00 39 va1 = vdup_n_u32(a10); // duplicate a10 46 vx = vdup_n_u16(x); // duplicate x into vx 69 vy = vdup_n_u8(y); // duplicate y into vy 73 va0 = vdup_n_u32(a00); // duplicate a00 74 va1 = vdup_n_u32(a10); // duplicate a10 81 vx = vdup_n_u16(x); // duplicate x into vx 90 vscale = vdup_n_u16(scale); // duplicate scale
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/tab_shortcuts/ |
tab_shortcuts.js | 15 else if (command == 'duplicate-tab') 16 chrome.tabs.duplicate(tab.id);
|
/external/clang/test/Parser/ |
cxx0x-decl.cpp | 29 int *const const p = 0; // expected-error {{duplicate 'const' declaration specifier}} 30 const const int *q = 0; // expected-error {{duplicate 'const' declaration specifier}} 33 void f() const const; // expected-error {{duplicate 'const' declaration specifier}} 109 constexpr constexpr int f(); // expected-warning {{duplicate 'constexpr' declaration specifier}} 110 constexpr int constexpr a = 0; // expected-warning {{duplicate 'constexpr' declaration specifier}} 113 friend constexpr int constexpr friend f(); // expected-warning {{duplicate 'friend' declaration specifier}} \ 114 // expected-warning {{duplicate 'constexpr' declaration specifier}} 115 friend struct A friend; // expected-warning {{duplicate 'friend'}} expected-error {{'friend' must appear first}}
|
c1x-generic-selection.c | 9 default: 0); // expected-error {{duplicate default generic association}}
|
/external/clang/test/SemaObjC/ |
class-conforming-protocol-1.m | 9 - (INTF<P1>*) METH1; // expected-error {{duplicate declaration of method 'METH1'}} 12 - (INTF<P2,P1,P3>*) METH2; // expected-error {{duplicate declaration of method 'METH2'}}
|
check-dup-objc-decls-1.m | 33 @interface A<Q> @end // expected-error {{duplicate interface definition for class 'A'}} 36 @protocol PP<Q> @end // expected-warning {{duplicate protocol definition of 'PP'}} 39 @interface A(Cat)<Q> @end // expected-warning {{duplicate definition of category 'Cat' on interface 'A'}}
|
/external/e2fsprogs/e2fsck/ |
mtrace.awk | 6 print "+", $2, "Alloc", NR, "duplicate:", allocated[$2]; 23 print "+", $2, "Realloc", NR, "duplicate:", allocated[$2];
|
/external/e2fsprogs/tests/f_dupdot/ |
expect.1 | 3 Entry '.' in <14>/<12> (12) is duplicate '.' entry. 6 Entry '..' in <14>/<12> (12) is duplicate '..' entry.
|
/external/chromium_org/third_party/icu/source/common/ |
mutex.h | 98 * created yet. In a race condition, the duplicate may not be NULL. 99 * The caller must delete the duplicate. 100 * The caller need not initialize the duplicate before the call. 103 void *&duplicate, 118 * Takes care of the duplicate deletion and type casting. 130 void *duplicate; local 131 T *instance=(T *)singleton.getInstance(instantiator, context, duplicate, errorCode); 132 delete (T *)duplicate; 153 * created yet. In a race condition, the duplicate may not be NULL. 154 * The caller must delete the duplicate 187 void *duplicate; local [all...] |
/external/clang/test/Sema/ |
ext_vector_components.c | 29 vec4_2.xyzx = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}} 30 vec4_2.xyzz = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}} 31 vec4_2.xyyw = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}} 33 vec2.xx = vec2_2.xy; // expected-error {{vector is not assignable (contains duplicate components)}}
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
UnknownEntry.java | 37 this.content = (ByteBuffer) content.duplicate().rewind(); 42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind(); 47 return content.duplicate(); 52 ByteBuffer bb = content.duplicate();
|
/external/chromium_org/base/win/ |
scoped_process_information_unittest.cc | 122 TEST_F(ScopedProcessInformationTest, Duplicate) { 128 base::win::ScopedProcessInformation duplicate; local 129 duplicate.DuplicateFrom(process_info); 133 ASSERT_EQ(duplicate.process_id(), process_info.process_id()); 135 ASSERT_EQ(duplicate.thread_id(), process_info.thread_id()); 144 ASSERT_TRUE(base::WaitForExitCode(duplicate.TakeProcessHandle(), 149 ASSERT_TRUE(::CloseHandle(duplicate.TakeThreadHandle()));
|
/external/chromium_org/media/cast/framer/ |
framer.h | 36 // complete frame. If a duplicate packet for an already complete frame is 37 // received, the function returns false but sets |duplicate| to true. 41 bool* duplicate);
|
/external/chromium_org/tools/gyp/test/errors/ |
gyptest-errors.py | 20 stderr = ('gyp: Duplicate target definitions for ' 29 stderr = ('gyp: rule bar exists in duplicate, target ' 39 stderr = 'gyp: Duplicate basenames in sources section, see list above\n'
|
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/ |
ts_parser.cpp | 213 timestamp *element = NULL,*duplicate = NULL; local 229 duplicate = NULL; 231 duplicate = &phead->input_timestamps[i]; 242 if(is_interlaced && duplicate) { 244 duplicate->in_use = false; 250 if (!duplicate) 251 duplicate = &phead->input_timestamps[i]; 253 if (duplicate->timestamps > phead->input_timestamps[i].timestamps) 254 duplicate = &phead->input_timestamps[i]; 258 if (duplicate) { [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
CharBufferTest.java | 220 // duplicate's contents should be the same as buf 221 CharBuffer duplicate = buf.duplicate(); 222 assertNotSame(buf, duplicate); 223 assertEquals(buf.position(), duplicate.position()); 224 assertEquals(buf.limit(), duplicate.limit()); 225 assertEquals(buf.isReadOnly(), duplicate.isReadOnly()); 226 assertEquals(buf.isDirect(), duplicate.isDirect()); 227 assertEquals(buf.order(), duplicate.order()); 228 assertEquals(buf.capacity(), duplicate.capacity()) 429 CharBuffer duplicate = buf.duplicate(); local [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/applescript/examples/ |
tab_navigation.applescript | 9 -- Duplicate a tab.
|