HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 376 - 400 of 1268) sorted by null

<<11121314151617181920>>

  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
std_vector.i 61 T *array = new T[self->size() + 1];
63 array[i] = (*self)[i];
64 return array;
72 let array_to_vector v argcons array =
73 for i = 0 to (Array.length array) - 1 do
74 (invoke v) "set" (C_list [ C_int i ; (argcons array.(i)) ])
78 let vector_to_array v argcons array =
80 array.(i) <- argcons ((invoke v) "[]" (C_int i))
87 val array_to_vector : c_obj -> ('a -> c_obj) -> 'a array -> c_ob
    [all...]
  /art/runtime/entrypoints/quick/
quick_entrypoints.h 32 class Array;
  /external/autotest/client/cros/tendo/n_faced_peerd/
dbus_property_exposer.py 42 dbus.Array([], 's'))
101 ARRAY<STRING> invalidated_properties);
  /external/autotest/client/site_tests/security_EnableChromeTesting/
security_EnableChromeTesting.py 50 # Pass an empty dbus.Array with the correct signature, taken from
52 empty_string_array = dbus.Array(signature="as")
  /external/caliper/examples/src/main/java/examples/
ListModificationBenchmark.java 37 Array {
54 @Param({"Array", "Linked"})
  /external/chromium-trace/catapult/catapult_build/
node_bootstrap.js 59 * @return {Array} A list of search paths.
73 * @return {Array} A list of module filenames.
  /external/clang/test/Parser/
declarators.c 10 int f5(int [static]); /* expected-error {{'static' may not be used without an array size}} */
25 // Hard case for array decl, not Array[*].
26 int Array[*(int*)P+A];
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 39 Eigen::Array<unsigned char,Eigen::Dynamic,Eigen::Dynamic> bits = (x*255).cast<unsigned char>();
  /external/eigen/doc/
tutorial.cpp 1 #include <Eigen/Array>
  /external/eigen/lapack/
ilaclc.f 26 * .. Array Arguments ..
56 *> A is COMPLEX array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
ilaclr.f 26 * .. Array Arguments ..
56 *> A is array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
iladlc.f 26 * .. Array Arguments ..
56 *> A is DOUBLE PRECISION array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
iladlr.f 26 * .. Array Arguments ..
56 *> A is DOUBLE PRECISION array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
ilaslc.f 26 * .. Array Arguments ..
56 *> A is REAL array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
ilaslr.f 26 * .. Array Arguments ..
56 *> A is REAL array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
ilazlc.f 26 * .. Array Arguments ..
56 *> A is COMPLEX*16 array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
ilazlr.f 26 * .. Array Arguments ..
56 *> A is COMPLEX*16 array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
89 * .. Array Arguments ..
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 321 uint8_t Array[sizeof(word_t)] = {0};
324 BitStream->getBitcodeBytes().readBytes(Array, sizeof(Array), NextChar);
336 Array);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CollectionUtils.java 19 import java.lang.reflect.Array;
  /external/v8/test/mjsunit/compiler/
regress-serialized-slots.js 40 var args = Array.prototype.slice.call(arguments, 1);
46 args.concat(Array.prototype.slice.call(arguments, 0)));
  /external/v8/test/mjsunit/
elements-kind.js 28 // Flags: --allow-natives-syntax --expose-gc --nostress-opt --typed-array-max-size-in-heap=2048
99 var you = new Array();
115 var fast_double_array = new Array(0xDECAF);
140 // Crankshaft support for smi-only array elements.
141 function monomorphic(array) {
142 assertKind(elements_kind.fast_smi_only, array);
144 array[i] = i + 10;
146 assertKind(elements_kind.fast_smi_only, array);
148 var a = array[i];
152 var smi_only = new Array(1, 2, 3)
    [all...]
instanceof.js 31 assertFalse({} instanceof Array);
32 assertTrue([] instanceof Array);
  /external/v8/test/mjsunit/es6/
debug-stepin-collections-foreach.js 63 // Array.forEach calls a callback function, which by itself uses
64 // Array.forEach with another callback function.
  /external/v8/test/mjsunit/regress/
regress-1129.js 34 var source = Array(50000).join("(") + "a" + Array(50000).join(")");
regress-1548.js 37 delete Array.prototype.map.caller;
47 delete Array.prototype.map.arguments;

Completed in 2032 milliseconds

<<11121314151617181920>>