/external/chromium_org/third_party/WebKit/Source/wtf/ |
Uint16Array.h | 39 static inline PassRefPtr<Uint16Array> create(const unsigned short* array, unsigned length); 42 // Should only be used when it is known the entire array will be filled. Do 70 PassRefPtr<Uint16Array> Uint16Array::create(const unsigned short* array, unsigned length) 72 return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length);
|
Uint32Array.h | 39 static inline PassRefPtr<Uint32Array> create(const unsigned int* array, unsigned length); 42 // Should only be used when it is known the entire array will be filled. Do 70 PassRefPtr<Uint32Array> Uint32Array::create(const unsigned int* array, unsigned length) 72 return TypedArrayBase<unsigned int>::create<Uint32Array>(array, length);
|
Uint8Array.h | 39 static inline PassRefPtr<Uint8Array> create(const unsigned char* array, unsigned length); 42 // Should only be used when it is known the entire array will be filled. Do 70 PassRefPtr<Uint8Array> Uint8Array::create(const unsigned char* array, unsigned length) 72 return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
polygon.h | 35 struct array; 68 struct array *array; member in struct:polygon_array
|
/external/chromium_org/third_party/skia/src/core/ |
SkPtrRecorder.cpp | 65 void SkPtrSet::copyToArray(void* array[]) const { 68 SkASSERT(array); 74 array[index] = p[i].fPtr;
|
SkPtrRecorder.h | 47 * Copy the ptrs in the set into the specified array (allocated by the 48 * caller). The ptrs are assgined to the array based on their corresponding 49 * ID. e.g. array[ptr.ID - 1] = ptr. 53 void copyToArray(void* array[]) const; 73 // ptr and its ID/fIndex explicitly, since the ptr's position in the array 95 void copyToArray(T* array) const { 96 this->INHERITED::copyToArray((void**)array);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkBitSet.h | 44 /** Export indices of set bits to T array. 47 void exportTo(SkTDArray<T>* array) const { 48 SkASSERT(array); 56 array->push(index + j);
|
/external/clang/test/CodeGen/ |
blockstret.c | 15 int array[512]; member in struct:bigbig 27 result->array[23] = param; 89 result->array[23] = argc;
|
/external/clang/test/Sema/ |
offsetof.c | 56 int test2[__builtin_offsetof(struct incomplete[10], [4].foo)]; // expected-error {{array has incomplete element type 'struct incomplete'}} 66 typedef struct Array { int array[1]; } Array; member in struct:Array 67 int test4 = __builtin_offsetof(Array, array); 70 return __builtin_offsetof(Array, array[*(int*)0]); // expected-warning{{indirection of non-volatile null pointer}} expected-note{{__builtin_trap}}
|
/external/clang/test/SemaCXX/ |
offsetof.cpp | 23 int array[17]; member in struct:HasArray 28 int array0[__builtin_offsetof(HasArray, array[5])]; 29 int array1[__builtin_offsetof(HasArray, array[i])];
|
/external/clang/test/SemaTemplate/ |
canonical-expr-type.cpp | 29 // Test dependently-sized array canonicalization 31 void f1(T (&array)[N + M]) { } // expected-note{{previous}} 34 void f1(T (&array)[M + N]) { } 37 void f1(T (&array)[M + N]) { } // expected-error{{redefinition}}
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestEnumMapGenerator.java | 47 Entry<AnEnum, String>[] array = new Entry[entries.length]; local 52 array[i++] = e; 54 return create(array);
|
TestStringMapGenerator.java | 50 Entry<String, String>[] array = new Entry[entries.length]; local 55 array[i++] = e; 57 return create(array);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
TestEnumMultisetGenerator.java | 44 AnEnum[] array = new AnEnum[elements.length]; local 47 array[i++] = (AnEnum) e; 49 return create(array);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListIndexOfTester.java | 47 E[] array = createSamplesArray(); local 48 array[getNumElements() / 2] = samples.e0; 49 collection = getSubjectGenerator().create(array);
|
ListLastIndexOfTester.java | 47 E[] array = createSamplesArray(); local 48 array[getNumElements() / 2] = samples.e0; 49 collection = getSubjectGenerator().create(array);
|
SetAddTester.java | 48 E[] array = createArrayWithNullElement(); local 49 collection = getSubjectGenerator().create(array); 51 expectContents(array);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
AbstractSetMultimapTest.java | 96 Map.Entry<?, ?>[] array = new Map.Entry<?, ?>[3]; local 97 array[1] = Maps.immutableEntry("another", "entry"); 98 assertSame(array, set.toArray(array)); 99 assertEquals(entry, array[0]); 100 assertNull(array[1]); 110 Collection<?>[] array = new Collection<?>[3]; local 111 array[1] = Collections.emptyList(); 112 assertSame(array, asMapValues.toArray(array)); [all...] |
/external/guava/guava-tests/test/com/google/common/primitives/ |
BytesTest.java | 170 byte[] array = {(byte) 0, (byte) 1, (byte) 0x55}; 173 assertTrue(Arrays.equals(array, Bytes.toArray(three))); 175 assertTrue(Arrays.equals(array, Bytes.toArray(Bytes.asList(array)))); 204 byte[] array = {(byte) 0, (byte) 1}; 205 List<Byte> list = Bytes.asList(array); 207 assertTrue(Arrays.equals(new byte[] {(byte) 2, (byte) 1}, array)); 208 array[1] = (byte) 3; 213 byte[] array = { (byte) 0, (byte) 1, (byte) 2 }; 214 List<Byte> list = Bytes.asList(array); [all...] |
/external/libvpx/libvpx/examples/includes/ |
vp8_doc_tools.php | 48 * @PARAM mtch_arr array - Array of ASCIIMath expressions 64 $math_attr_arr = array('displaystyle' => 'true'); 89 $tags_bad = array('/(<math.*?>)\n*\s*/' 107 $tags_good = array( '$1'
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
polygon.h | 35 struct array; 68 struct array *array; member in struct:polygon_array
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
ByteBufferHelper.java | 31 if (lastIndex >= 0 && buffer.hasArray() && nuSamples.get(lastIndex).hasArray() && buffer.array() == nuSamples.get(lastIndex).array() && 34 ByteBuffer nu = ByteBuffer.wrap(buffer.array(), oldBuffer.arrayOffset(), oldBuffer.limit() + buffer.limit()).slice();
|
/external/skia/src/core/ |
SkPtrRecorder.cpp | 65 void SkPtrSet::copyToArray(void* array[]) const { 68 SkASSERT(array); 74 array[index] = p[i].fPtr;
|
SkPtrRecorder.h | 47 * Copy the ptrs in the set into the specified array (allocated by the 48 * caller). The ptrs are assgined to the array based on their corresponding 49 * ID. e.g. array[ptr.ID - 1] = ptr. 53 void copyToArray(void* array[]) const; 73 // ptr and its ID/fIndex explicitly, since the ptr's position in the array 95 void copyToArray(T* array) const { 96 this->INHERITED::copyToArray((void**)array);
|
/external/skia/src/utils/ |
SkBitSet.h | 44 /** Export indices of set bits to T array. 47 void exportTo(SkTDArray<T>* array) const { 48 SkASSERT(array); 56 array->push(index + j);
|