HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 126 - 150 of 233) sorted by null

1 2 3 4 56 7 8 910

  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 180 // Array of LiveIntervalUnions.
181 class Array {
185 Array() : Size(0), LIUs(nullptr) {}
186 ~Array() { clear(); }
188 // Initialize the array to have Size entries.
  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /external/chromium_org/v8/test/mjsunit/
stack-traces.js 249 testTrace("testArrayNative", testArrayNative, ["Array.map (native)"]);
263 testTrace("testAnonymousMethod", testAnonymousMethod, ["Array.<anonymous>"]);
303 Array.prototype.push = function(x) { assertUnreachable(); };
304 Array.prototype.join = function(x) { assertUnreachable(); };
array-tostring.js 28 // Array's toString should call the object's own join method, if one exists and
40 // On an Array object.
56 assertEquals("[object Array]", a3.toString());
60 a4.__proto__ = { toString: Array.prototype.toString };
61 // No join on Array.
62 assertEquals("[object Array]", a4.toString());
65 // On a non-Array object.
67 // Default looks-like-an-array case.
69 toString: Array.prototype.toString,
70 join: Array.prototype.join}
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 116 class Array(Kind):
  /external/chromium_org/third_party/skia/include/utils/
SkJSON.h 27 class Array;
48 * parameter is copied, but ownership of the Array parameter is
49 * transferred. The Array parameter may be null, but the name must
52 void addArray(const char name[], Array* value);
90 bool findArray(const char name[], Array** = NULL) const;
146 Array* arrayValue() const;
184 friend class Array;
187 class Array {
190 * Creates an array with the specified Type and element count. All
193 Array(Type, int count)
    [all...]
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 9 int Array[12];
111 int SumArray(int Array[], int Num) {
114 Result += Array[i];
  /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/eigen/Eigen/src/Core/
Map.h 19 * \brief A matrix or vector expression mapping an existing array of data.
25 * of an ordinary, contiguous array. This can be overridden by specifying strides.
28 * This class represents a matrix or vector expression mapping an existing array of data.
34 * Here's an example of simply mapping a contiguous array as a \ref TopicStorageOrders "column-major" matrix:
40 * Here's an example of mapping an array as a vector, specifying an inner stride, that is, the pointer
46 * Here's an example of mapping an array while specifying an outer stride. Here, since we're mapping
56 * \b Tip: to change the array of data mapped by a Map object, you can use the C++
136 * \param dataPtr pointer to the array to map
147 * \param dataPtr pointer to the array to map
159 * \param dataPtr pointer to the array to ma
    [all...]
  /external/skia/include/utils/
SkJSON.h 27 class Array;
48 * parameter is copied, but ownership of the Array parameter is
49 * transferred. The Array parameter may be null, but the name must
52 void addArray(const char name[], Array* value);
90 bool findArray(const char name[], Array** = NULL) const;
146 Array* arrayValue() const;
184 friend class Array;
187 class Array {
190 * Creates an array with the specified Type and element count. All
193 Array(Type, int count)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 24 import java.lang.reflect.Array;
32 * Marshal any array {@code T}.
40 * @param <T> the type of the array (e.g. T = int[], or T = Rational[])
65 int length = Array.getLength(value);
73 Object array; local
89 "Attempting to unpack array (count = %d, element size = %d, bytes "
94 array = Array.newInstance(mComponentClass, arraySize);
97 Array.set(array, i, elem)
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 38 public final class Array {
39 private Array() {
43 throw new IllegalArgumentException("Not an array: " + o.getClass());
47 throw new IllegalArgumentException("Array has incompatible type: " + o.getClass());
50 private static RuntimeException badArray(Object array) {
51 if (array == null) {
52 throw new NullPointerException("array == null");
53 } else if (!array.getClass().isArray()) {
54 throw notAnArray(array);
56 throw incompatibleType(array);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
78 Returns a ctypes array allocated from shared memory
108 def Array(typecode_or_type, size_or_initializer, **kwds):
134 elif isinstance(obj, ctypes.Array):
155 if isinstance(obj, ctypes.Array):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array namespace
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
78 Returns a ctypes array allocated from shared memory
108 def Array(typecode_or_type, size_or_initializer, **kwds):
134 elif isinstance(obj, ctypes.Array):
155 if isinstance(obj, ctypes.Array):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array namespace
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /external/chromium_org/chrome/browser/resources/inspect/
inspect.js 25 chrome.send(command, Array.prototype.slice.call(arguments, 1));
218 Array.prototype.forEach.call(
271 Array.prototype.forEach.call(
417 Array.prototype.forEach.call(guests, function(guest) {
649 dialog.deactivatedNodes = Array.prototype.filter.call(
942 Array.prototype.forEach.call(
  /external/chromium_org/v8/test/webkit/fast/js/
arguments.js 59 Array.prototype.push.call(arguments, a);
64 Array.prototype.push.call(arguments, a);
69 Array.prototype.push.apply(arguments, arguments);
74 Array.prototype.push.apply(arguments, arguments);
  /external/deqp/framework/common/
tcuMatrix.hpp 33 class Array
36 Array (void) {}
37 ~Array (void) {}
87 Array<T, Rows*Cols> getRowMajorData (void) const;
88 Array<T, Rows*Cols> getColumnMajorData (void) const;
344 // Initialize from data array.
429 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getColumnMajorData (void) const
431 Array<T, Rows*Cols> a;
440 Array<T, Rows*Cols> Matrix<T, Rows, Cols>::getRowMajorData (void) const
442 Array<T, Rows*Cols> a
    [all...]
  /art/test/003-omnibus-opcodes/src/
Main.java 46 Array.run();
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 127 class Array(Node,Parser):
298 node = Array()
302 self.parse_error(lexer ,"array of functions" )
311 self.parse_error(lexer ,"function returns an array" )
genpyx.py 180 elif isinstance(node,Array):
185 class Array(object):
316 #elif self.array:
317 #pointer = self.array
354 if type(child)==Array and not child.has_size():
355 # mutate this mystery array into a pointer XX method: Array.to_pointer()
  /external/chromium_org/v8/src/
runtime.js 22 var $Array = global.Array;
409 // array. This is the fast case. If this fails, we do the slow case
649 // NOTE: Setting the prototype for Array must take place as early as
650 // possible due to code generation for array literals. When
651 // generating code for a array literal a boilerplate array is created
654 %FunctionSetPrototype($Array, new $Array(0));

Completed in 976 milliseconds

1 2 3 4 56 7 8 910