HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 101 - 125 of 303) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/tools/common/m2/repository/com/android/tools/external/liblzf/1.0/
liblzf-1.0.jar 
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 11 // pointer arithmetic on locations other than array elements.
30 Array,
32 Reinterpreted // Single object interpreted as an array.
101 return AllocKind::Array;
115 /// Checks whether a region is the part of an array.
116 /// In case there is a dericed to base cast above the array element, the
135 if (*Kind == AllocKind::Array)
141 // assume that this is an array to avoid false positives.
199 "Pointer arithmetic on non-array "
239 State = State->set<RegionState>(Region, AllocKind::Array);
    [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/python/cpython2/Lib/multiprocessing/
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
83 Returns a ctypes array allocated from shared memory
113 def Array(typecode_or_type, size_or_initializer, **kwds):
139 elif isinstance(obj, ctypes.Array):
160 if isinstance(obj, ctypes.Array):
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
misc.c 394 // Insert in the tail of the array
537 UI_STRING_ENTRY *Array;
548 for (Index = UiDeviceString, Array = Ui->Entry; Index < StringType; Index++, Array++) {
549 while (Array->LangCode) {
550 Array++;
557 while (Array->LangCode) {
558 if (strcmpa (Array->LangCode, LangCode) == 0) {
559 return Array->UiString;
  /external/v8/tools/profviz/
composer.js 28 Array.prototype.top = function() {
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 24 import java.lang.reflect.Array;
29 * Marshal any array {@code T}.
37 * @param <T> the type of the array (e.g. T = int[], or T = Rational[])
62 int length = Array.getLength(value);
70 Object array; local
86 "Attempting to unpack array (count = %d, element size = %d, bytes "
91 array = Array.newInstance(mComponentClass, arraySize);
94 Array.set(array, i, elem)
    [all...]
  /frameworks/support/compat/java/android/support/v4/graphics/
TypefaceCompatApi24Impl.java 36 import java.lang.reflect.Array;
72 Object familyArray = Array.newInstance(fontFamilyClass, 1);
121 Object familyArray = Array.newInstance(sFontFamily, 1);
122 Array.set(familyArray, 0, family);
  /libcore/ojluni/src/main/java/java/lang/reflect/
Array.java 32 * The {@code Array} class provides static methods to dynamically create and
35 * <p>{@code Array} permits widening conversions to occur during a get or set
42 class Array {
45 * Constructor. Class Array is not instantiable.
47 private Array() {}
50 * Creates a new array with the specified component type and
52 * Invoking this method is equivalent to creating an array
57 * Array.newInstance(componentType, x);
60 * <p>The number of dimensions of the new array must not
64 * component type of the new array
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamArray.h 1 //===- BinaryStreamArray.h - Array backed by an arbitrary stream *- C++ -*-===//
21 /// provides two different array implementations.
29 /// elements of the array need not be laid out in contiguous memory.
51 /// VarStreamArray represents an array of variable length records backed by a
128 VarStreamArrayIterator(const ArrayType &Array, const Extractor &E,
130 : IterRef(Array.Stream), Array(&Array), HadError(HadError), Extract(E) {
146 if (Array && R.Array) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
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/gdb/linux-x86/lib/python2.7/multiprocessing/
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/
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):

Completed in 2703 milliseconds

1 2 3 45 6 7 8 91011>>