| /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
| NaClBitCodes.h | 118 Array = 3, // A sequence of fields, next field species elt encoding. 145 bool isArrayOp() const { return Enc == Array; }
|
| NaClBitstreamReader.h | 664 uint8_t Array[sizeof(word_t)] = {0}; 666 uint64_t BytesRead = fillBuffer(Array, sizeof(Array), NextChar); 676 Array); 850 // if Op is an array (and sets Value to the number of elements in the 851 // array). 856 // assuming Op appears after an array abbreviation. 859 // Reads the array abbreviation Op, NumArrayElements times, putting
|
| /libcore/ojluni/src/main/java/sun/invoke/util/ |
| Wrapper.java | 399 * All non-primitives, including array types, report as 'L', the signature character for references. 580 // primitive array support 582 return java.lang.reflect.Array.newInstance(primitiveType, len); 593 java.lang.reflect.Array.set(a, i+apos, value); 600 Object value = java.lang.reflect.Array.get(a, i+apos);
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
| managers.py | 46 import array 65 return array.array, (a.typecode, a.tostring()) 66 ForkingPickler.register(array.array, reduce_array) 959 def Array(typecode, sequence, lock=True): 960 return array.array(typecode, sequence) [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
| managers.py | 46 import array 65 return array.array, (a.typecode, a.tostring()) 66 ForkingPickler.register(array.array, reduce_array) 959 def Array(typecode, sequence, lock=True): 960 return array.array(typecode, sequence) [all...] |
| /prebuilts/go/darwin-x86/src/go/types/ |
| type.go | 93 // An Array represents an array type. 94 type Array struct { 99 // NewArray returns a new array type for the given element type and length. 100 func NewArray(elem Type, len int64) *Array { return &Array{len, elem} } 102 // Len returns the length of array a. 103 func (a *Array) Len() int64 { return a.len } 105 // Elem returns element type of array a. 106 func (a *Array) Elem() Type { return a.elem [all...] |
| /prebuilts/go/linux-x86/src/go/types/ |
| type.go | 93 // An Array represents an array type. 94 type Array struct { 99 // NewArray returns a new array type for the given element type and length. 100 func NewArray(elem Type, len int64) *Array { return &Array{len, elem} } 102 // Len returns the length of array a. 103 func (a *Array) Len() int64 { return a.len } 105 // Elem returns element type of array a. 106 func (a *Array) Elem() Type { return a.elem [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
| managers.py | 46 import array 65 return array.array, (a.typecode, a.tostring()) 66 ForkingPickler.register(array.array, reduce_array) 959 def Array(typecode, sequence, lock=True): 960 return array.array(typecode, sequence) [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
| managers.py | 46 import array 65 return array.array, (a.typecode, a.tostring()) 66 ForkingPickler.register(array.array, reduce_array) 959 def Array(typecode, sequence, lock=True): 960 return array.array(typecode, sequence) [all...] |
| /external/deqp/modules/glshared/ |
| glsVertexArrayTests.hpp | 23 * \brief Vertex array and buffer tests 53 class Array 151 virtual ~Array (void) {} 169 class ContextArray : public Array 177 virtual void bindIndexArray (Array::Target storage); 182 virtual Array::Target getTarget (void) const { return m_target; } 183 virtual Array::InputType getInputType (void) const { return m_inputType; } 184 virtual Array::OutputType getOutputType (void) const { return m_outputType; } 185 virtual Array::Storage getStorageType (void) const { return m_storage; } 192 static deUint32 targetToGL (Array::Target target) [all...] |
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
| CameraMetadataTest.java | 52 import java.lang.reflect.Array; 218 // android.colorCorrection.colorCorrectionGains (float x 4 array) 246 * Format an array into a string with the {@code badIndex} highlighted with {@code **}. 253 private static <T> String formatArray(T array, int badIndex) { 258 int len = Array.getLength(array); 261 Object elem = Array.get(array, i); 292 assertEquals("Array lengths must be equal", 293 Array.getLength(expected), Array.getLength(actual)) [all...] |
| /device/linaro/bootloader/edk2/MdePkg/Include/Guid/ |
| StatusCodeDataTypeId.h | 545 /// A definition to describe that the operation is performed on multiple devices within the array.
546 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
551 /// A definition to describe that the operation is performed on all devices within the array.
552 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
558 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
564 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
573 /// overall memory scheme. The Array and Device numbers may indicate a specific DIMM, or they
585 /// The memory array number.
587 UINT16 Array;
589 /// The device number within that Array. [all...] |
| /external/clang/test/CodeGenCXX/ |
| const-init-cxx11.cpp | 99 namespace Array {
|
| /external/llvm/lib/ExecutionEngine/ |
| ExecutionEngine.cpp | 327 std::unique_ptr<char[]> Array; 330 /// Turn a vector of strings into a nice argv style array of pointers to null 341 Array = make_unique<char[]>((InputArgv.size()+1)*PtrSize); 343 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array.get() << "\n"); 354 // Endian safe: Array[i] = (PointerTy)Dest; 356 (GenericValue*)(&Array[i*PtrSize]), SBytePtr); 362 (GenericValue*)(&Array[InputArgv.size()*PtrSize]), 364 return Array.get(); 378 // Should be an array of '{ i32, void ()* }' structs. The first value is [all...] |
| /external/swiftshader/third_party/LLVM/lib/Analysis/ |
| ValueTracking.cpp | 571 // Handle array index arithmetic. [all...] |
| /external/v8/src/ast/ |
| ast-types.h | 42 // Array < Object 50 // Array(T) < Array 54 // Both structural Array and Function types are invariant in all parameters; 56 // There is no subtyping relation between Array, Function, or Context types 543 // Array types. 724 static AstType* Array(AstType* element, Zone* zone) { [all...] |
| /external/clang/include/clang/Analysis/Analyses/ |
| ThreadSafetyTIL.h | 1092 /// If p is a reference to an array, then p[i] is a reference to the i'th 1093 /// element of the array. 1098 ArrayIndex(SExpr *A, SExpr *N) : SExpr(COP_ArrayIndex), Array(A), Index(N) {} 1100 : SExpr(E), Array(A), Index(N) {} 1102 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayIndex 1103 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayIndex 1110 auto Na = Vs.traverse(Array, Vs.subExprCtx(Ctx)); 1117 typename C::CType Ct = Cmp.compare(array(), E->array()) 1140 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayAdd 1141 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayAdd [all...] |
| /external/clang/lib/CodeGen/ |
| CGExprAgg.cpp | 317 // Emit an array containing the elements. The array is externally destructed 320 LValue Array = CGF.EmitLValue(E->getSubExpr()); 321 assert(Array.isSimple() && "initializer_list array not a simple lvalue"); 322 Address ArrayPtr = Array.getAddress(); 326 assert(ArrayType && "std::initializer_list constructed from non-array"); 378 /// \brief Determine if E is a trivial array filler, that is, one that is 401 /// \brief Emit initialization of an array from an initializer list. 409 // DestPtr is an array*. Construct an elementType* by drillin [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/impl/ |
| ICUResourceBundleReader.java | 253 // Bundles with formatVersion 1.1 and later contain an indexes[] array. 256 // read the variable-length indexes[] array 306 // Read the array of 16-bit units. 369 return type == UResourceBundle.ARRAY || type == ICUResourceBundle.ARRAY16; 380 private static final Array EMPTY_ARRAY = new Array(); 657 // Not cached: The array would have to be cloned anyway because 719 // Not cached: The array would have to be cloned anyway because 730 Array getArray(int res) { 741 return (Array)value 743 Array array = (type == UResourceBundle.ARRAY) ? local 866 Array array = reader.getArray(res); local 889 Array array = reader.getArray(res); local 898 Array array = reader.getArray(res); local 915 Array array = reader.getArray(res); local [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| ICUResourceBundleReader.java | 251 // Bundles with formatVersion 1.1 and later contain an indexes[] array. 254 // read the variable-length indexes[] array 304 // Read the array of 16-bit units. 367 return type == UResourceBundle.ARRAY || type == ICUResourceBundle.ARRAY16; 378 private static final Array EMPTY_ARRAY = new Array(); 655 // Not cached: The array would have to be cloned anyway because 717 // Not cached: The array would have to be cloned anyway because 728 Array getArray(int res) { 739 return (Array)value 741 Array array = (type == UResourceBundle.ARRAY) ? local 864 Array array = reader.getArray(res); local 887 Array array = reader.getArray(res); local 896 Array array = reader.getArray(res); local 913 Array array = reader.getArray(res); local [all...] |
| /external/llvm/bindings/ocaml/llvm/ |
| llvm.ml | 34 | Array 304 external parse_command_line_options : ?overview:string -> string array -> unit 378 external function_type : lltype -> lltype array -> lltype = "llvm_function_type" 379 external var_arg_function_type : lltype -> lltype array -> lltype 383 external param_types : lltype -> lltype array = "llvm_param_types" 386 external struct_type : llcontext -> lltype array -> lltype = "llvm_struct_type" 387 external packed_struct_type : llcontext -> lltype array -> lltype 392 external struct_set_body : lltype -> lltype array -> bool -> unit = 394 external struct_element_types : lltype -> lltype array 399 (*--... Operations on pointer, vector, and array types .....................--* [all...] |
| /frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
| PackageParserTest.java | 34 import java.lang.reflect.Array; 544 // Sanity check for array fields: Assume they're non-null and contain precisely 546 Object array = f.get(pkg); local 547 assertNotNull(Array.get(array, 0));
|
| /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
| document.h | 96 \tparam Allocator Allocator type for allocating memory of object, array and string.
262 //! Create string reference from \c const character array
265 a \c const character array. It has better performance than
267 from the array length, and also supports strings containing null
272 \param str Constant character array, lifetime assumed to be longer
330 //! Disallow construction from non-const array
418 \tparam Allocator Allocator type for allocating memory of object, array and string.
431 typedef GenericValue* ValueIterator; //!< Value iterator for iterating in array.
432 typedef const GenericValue* ConstValueIterator; //!< Constant value iterator for iterating in array.
571 /*! Need to destruct elements of array, members of object, or copy-string. [all...] |
| /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
| ThreadSafetyTIL.h | 1092 /// If p is a reference to an array, then p[i] is a reference to the i'th 1093 /// element of the array. 1098 ArrayIndex(SExpr *A, SExpr *N) : SExpr(COP_ArrayIndex), Array(A), Index(N) {} 1100 : SExpr(E), Array(A), Index(N) {} 1102 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayIndex 1103 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayIndex 1110 auto Na = Vs.traverse(Array, Vs.subExprCtx(Ctx)); 1117 typename C::CType Ct = Cmp.compare(array(), E->array()) 1140 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayAdd 1141 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayAdd [all...] |
| /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
| ThreadSafetyTIL.h | 1092 /// If p is a reference to an array, then p[i] is a reference to the i'th 1093 /// element of the array. 1098 ArrayIndex(SExpr *A, SExpr *N) : SExpr(COP_ArrayIndex), Array(A), Index(N) {} 1100 : SExpr(E), Array(A), Index(N) {} 1102 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayIndex 1103 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayIndex 1110 auto Na = Vs.traverse(Array, Vs.subExprCtx(Ctx)); 1117 typename C::CType Ct = Cmp.compare(array(), E->array()) 1140 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayAdd 1141 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayAdd [all...] |