Searched refs:array (Results 226 - 250 of 2467) sorted by relevance

1234567891011>>

/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_l_o_c_a.py5 import array namespace
18 locations = array.array(format)
23 l = array.array("I")
38 locations = array.array("H")
43 locations = array.array("I", self.locations)
50 self.locations = array
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_var_array_thunk.cc23 PP_Var Get(PP_Var array, uint32_t index) { argument
26 ArrayVar* array_var = ArrayVar::FromPPVar(array);
32 PP_Bool Set(PP_Var array, uint32_t index, PP_Var value) { argument
35 ArrayVar* array_var = ArrayVar::FromPPVar(array);
41 uint32_t GetLength(PP_Var array) { argument
44 ArrayVar* array_var = ArrayVar::FromPPVar(array);
50 PP_Bool SetLength(PP_Var array, uint32_t length) { argument
53 ArrayVar* array_var = ArrayVar::FromPPVar(array);
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DCrypto.idl38 [Custom, RaisesException] ArrayBufferView getRandomValues(ArrayBufferView array);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAnalyserNode.h65 void getFloatFrequencyData(Float32Array* array) { m_analyser.getFloatFrequencyData(array); } argument
66 void getByteFrequencyData(Uint8Array* array) { m_analyser.getByteFrequencyData(array); } argument
67 void getFloatTimeDomainData(Float32Array* array) { m_analyser.getFloatTimeDomainData(array); } argument
68 void getByteTimeDomainData(Uint8Array* array) { m_analyser.getByteTimeDomainData(array); } argument
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTerminatedArrayBuilder.h17 explicit HeapTerminatedArrayBuilder(HeapTerminatedArray<T>* array) : TerminatedArrayBuilder<T, HeapTerminatedArray>(array) { } argument
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dtga_utils.h12 #include <array>
15 typedef std::array<unsigned char, 4> Byte4;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dnearest_neighbor.c22 * Find index in array such that the array element with said
23 * index is the element of said array closest to "value"
28 int16_t *index, /* (o) index of array element closest to value */
29 int16_t *array, /* (i) data array (Q2) */
31 int16_t arlength /* (i) dimension of data array (==8) */
40 diff=array[i]-value;
27 WebRtcIlbcfix_NearestNeighbor( int16_t *index, int16_t *array, int16_t value, int16_t arlength ) argument
/external/chromium_org/v8/test/mjsunit/
H A Darray-push6.js7 function push_wrapper(array, value) {
8 array.push(value);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-331444.js36 var array = boom();
41 f0 = array;
H A Dregress-crbug-122271.js38 function foo(array) {
39 array.foo = "bar";
H A Dregress-load-field-by-index.js20 var array = f(o);
22 assertEquals(1.5, array[0]);
/external/chromium_org/v8/test/webkit/
H A Darray-reduce.js28 function toObject(array) {
30 for (var i in array)
31 o[i] = array[i];
32 o.length = array.length;
36 function toUnorderedObject(array) {
39 for (var i in array)
42 o[props[i]] = array[props[i]];
43 o.length = array.length;
H A Darray-reduceRight.js28 function toObject(array) {
30 for (var i in array)
31 o[i] = array[i];
32 o.length = array.length;
36 function toUnorderedObject(array) {
39 for (var i in array)
42 o[props[i]] = array[props[i]];
43 o.length = array.length;
H A Ddfg-putbyval-cfa-clobber.js41 array = [];
42 array.__defineSetter__("-1", function(v) { theBar(); });
45 shouldBe("foo(array, -1)", "57");
/external/chromium_org/v8/test/webkit/fast/js/
H A Dfunction-apply.js24 description('Tests to ensure that Function.apply works correctly for Arrays, arguments and array-like objects.');
78 function arrayApply1(array)
84 return t.apply(null, array);
87 function arrayApply2(array)
93 return t.apply(null, array);
96 function arrayApply3(array)
102 return t.apply(null, array);
105 function arrayApplyLength(array)
111 return t.apply(null, array);
166 function arrayApplyDelete1(array)
[all...]
/external/clang/test/CodeGen/
H A D2007-04-05-PadBeforeZeroLengthField.c8 void foo(union A * objects, struct B *array, unsigned long k) argument
9 { array->objects[k] = objects[k]; }
/external/clang/test/CodeGenCXX/
H A Dvla.cpp18 void test0(void *array, int n) { argument
38 array_t &ref = *(array_t*) array;
H A Dvolatile.cpp12 volatile A *array; member in namespace:test0
20 array[0] = t;
/external/libcxx/test/containers/sequences/array/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/array/Android.mk
19 test_name := containers/sequences/array/begin
23 test_name := containers/sequences/array/at
27 test_name := containers/sequences/array/front_back
31 test_name := containers/sequences/array/version
35 test_name := containers/sequences/array/iterators
39 test_name := containers/sequences/array/types
43 test_name := containers/sequences/array/indexing
H A Dbegin.pass.cpp10 // <array>
14 #include <array>
21 typedef std::array<T, 3> C;
/external/libcxx/test/containers/sequences/array/array.tuple/
H A Dget_rv.pass.cpp10 // <array>
12 // template <size_t I, class T, size_t N> T&& get(array<T, N>&& a);
14 #include <array>
23 typedef std::array<T, 1> C;
/external/replicaisland/src/com/replica/replicaisland/
H A DStandardSorter.java25 public void sort(Object[] array, int count, Comparator comparator) { argument
26 Arrays.sort(array, 0, count, comparator);
/external/stlport/test/unit/
H A Dptr2_test.cpp71 int array [3] = { 1, 2, 3 }; local
73 int* p = find_if((int*)array, (int*)array + 3, pointer_to_unary_function<int, bool>(even));
74 CPPUNIT_ASSERT(p != array+3);
79 int array [3] = { 1, 2, 3 }; local
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
82 CPPUNIT_ASSERT(p != array+3);
/external/chromium_org/third_party/skia/src/effects/
H A DSkColorMatrixFilter.cpp16 static int32_t rowmul4(const int32_t array[], unsigned r, unsigned g, argument
18 return array[0] * r + array[1] * g + array[2] * b + array[3] * a + array[4];
21 static int32_t rowmul3(const int32_t array[], unsigned r, unsigned g, argument
23 return array[0] * r + array[1] * g + array[
29 const int32_t* SK_RESTRICT array = state.fArray; local
41 const int32_t* SK_RESTRICT array = state.fArray; local
52 const int32_t* SK_RESTRICT array = state.fArray; local
64 const int32_t* SK_RESTRICT array = state.fArray; local
75 const int32_t* SK_RESTRICT array = state.fArray; local
88 const int32_t* SK_RESTRICT array = state.fArray; local
100 const int32_t* SK_RESTRICT array = state.fArray; local
112 const int32_t* SK_RESTRICT array = state.fArray; local
126 int32_t* array = fState.fArray; local
214 SkColorMatrixFilter(const SkScalar array[20]) argument
[all...]
/external/skia/src/effects/
H A DSkColorMatrixFilter.cpp16 static int32_t rowmul4(const int32_t array[], unsigned r, unsigned g, argument
18 return array[0] * r + array[1] * g + array[2] * b + array[3] * a + array[4];
21 static int32_t rowmul3(const int32_t array[], unsigned r, unsigned g, argument
23 return array[0] * r + array[1] * g + array[
29 const int32_t* SK_RESTRICT array = state.fArray; local
41 const int32_t* SK_RESTRICT array = state.fArray; local
52 const int32_t* SK_RESTRICT array = state.fArray; local
64 const int32_t* SK_RESTRICT array = state.fArray; local
75 const int32_t* SK_RESTRICT array = state.fArray; local
88 const int32_t* SK_RESTRICT array = state.fArray; local
100 const int32_t* SK_RESTRICT array = state.fArray; local
112 const int32_t* SK_RESTRICT array = state.fArray; local
126 int32_t* array = fState.fArray; local
214 SkColorMatrixFilter(const SkScalar array[20]) argument
[all...]

Completed in 455 milliseconds

1234567891011>>