/external/v8/test/mjsunit/ |
generated-transition-stub.js | 66 // Large array should deopt to runtimea 68 a5 = new Array(); 100 // Large array should deopt to runtime 130 transition3(c3, 0, new Array()); 136 // Large array under the deopt threshold should be able to trigger GC without 145 transition3(c4, 0, new Array(5)); 151 // Large array should deopt to runtime 159 transition3(c5, 0, new Array(5)); 184 transition4(d3, 0, new Array()); 190 // Large array under the deopt threshold should be able to trigger GC withou [all...] |
sparse-array-reverse.js | 39 // Simple test of reverse on sparse array. 44 Array.prototype[30] = 'B'; // Should be hidden by a[30]. 52 delete Array.prototype[30]; 59 // CONG pseudo random number generator. Used for fuzzing the sparse array 70 // Fuzzing test of reverse on sparse array. 78 // Make sure we test both array-backed and hash-table backed 81 a = new Array(size); 83 a = new Array(); 98 Array.prototype[pos] = letter; 114 Array.prototype[pos] = letter [all...] |
array-elements-from-array-prototype-chain.js | 29 // Tests below verify that elements set on Array.prototype's proto propagate 30 // for various Array.prototype functions (like unshift, shift, etc.) 32 // array-elements-from-array-prototype.js 33 // array-elements-from-array-prototype-chain.js 34 // array-elements-from-object-prototype.js 46 Array.prototype.__proto__ = {3: at3}; 47 Array.prototype.__proto__.__proto__ = {7: at7}; 49 var a = new Array(13 [all...] |
array-elements-from-array-prototype.js | 29 // Tests below verify that elements set on Array.prototype propagate 30 // for various Array.prototype functions (like unshift, shift, etc.) 32 // array-elements-from-array-prototype.js 33 // array-elements-from-array-prototype-chain.js 34 // array-elements-from-object-prototype.js 46 Array.prototype[3] = at3 47 Array.prototype[7] = at7 49 var a = new Array(13 [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
tran.c | 37 Array *symtab; /* main symbol table */ 58 Array *ARGVtab; /* symbol table containing ARGV[...] */ 59 Array *ENVtab; /* symbol table containing ENVIRON[...] */ 142 Array *makesymtab(int n) /* make a new symbol table */ 144 Array *ap; 147 ap = (Array *) malloc(sizeof(Array)); 160 Array *tp; 165 tp = (Array *) ap->sval; 187 Array *tp [all...] |
awk.h | 88 typedef struct Array { /* symbol table array */ 92 } Array; 95 extern Array *symtab; 108 #define ARR 020 /* this is an array */
|
/external/pdfium/fpdfsdk/include/jsapi/ |
fxjs_v8.h | 183 v8::Local<v8::Array> FXJS_GetObjectElementNames(v8::Isolate* pIsolate, 187 v8::Local<v8::Array> pArray, 189 unsigned FXJS_GetArrayLength(v8::Local<v8::Array> pArray); 219 v8::Local<v8::Array> pArray, 223 v8::Local<v8::Array> FXJS_NewArray(v8::Isolate* pIsolate); 231 v8::Local<v8::Array> pObj); 244 v8::Local<v8::Array> FXJS_ToArray(v8::Isolate* pIsolate,
|
/art/runtime/ |
asm_support.h | 244 // Array offsets. 246 ADD_TEST_EQ(MIRROR_ARRAY_LENGTH_OFFSET, art::mirror::Array::LengthOffset().Int32Value()) 250 art::mirror::Array::DataOffset(sizeof(uint16_t)).Int32Value()) 254 art::mirror::Array::DataOffset(sizeof(uint8_t)).Int32Value()) 258 art::mirror::Array::DataOffset(sizeof(int8_t)).Int32Value()) 262 art::mirror::Array::DataOffset(sizeof(int16_t)).Int32Value()) 266 art::mirror::Array::DataOffset(sizeof(int32_t)).Int32Value()) 270 art::mirror::Array::DataOffset(sizeof(uint64_t)).Int32Value()) 274 art::mirror::Array::DataOffset( 283 art::mirror::Array::DataOffset(sizeof(uint64_t)).Int32Value() [all...] |
transaction.h | 34 class Array; 79 // Record array change. 80 void RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) 154 void Undo(mirror::Array* obj) SHARED_REQUIRES(Locks::mutator_lock_); 161 void UndoArrayWrite(mirror::Array* array, Primitive::Type array_type, size_t index, 224 std::map<mirror::Array*, ArrayLog> array_logs_ GUARDED_BY(log_lock_);
|
/art/runtime/entrypoints/ |
entrypoint_utils.h | 34 class Array; 90 // Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If 91 // it cannot be resolved, throw an error. If it can, use it to create an array. 95 ALWAYS_INLINE inline mirror::Array* AllocArrayFromCode(uint32_t type_idx, 103 ALWAYS_INLINE inline mirror::Array* AllocArrayFromCodeResolved(mirror::Class* klass, 110 extern mirror::Array* CheckAndAllocArrayFromCode(uint32_t type_idx, int32_t component_count, 116 extern mirror::Array* CheckAndAllocArrayFromCodeInstrumented(uint32_t type_idx,
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
ObjCContainersChecker.cpp | 47 void addSizeInfo(const Expr *Array, const Expr *Size, 63 // ProgramState trait - a map from array symbol to its state. 66 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size, 75 SVal ArrayRef = State->getSVal(Array, C.getLocationContext()); 91 // Add array size information to the state. 114 // Check the array access. 118 // Find out if we saw this array symbol before and have information about 163 // When a symbol for a mutable array escapes, we can't reason precisely
|
/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/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/junit/src/org/junit/experimental/theories/internal/ |
AllMembersSupplier.java | 6 import java.lang.reflect.Array; 111 private void addArrayValues(String name, List<PotentialAssignment> list, Object array) { 112 for (int i= 0; i < Array.getLength(array); i++) 113 list.add(PotentialAssignment.forValue(name + "[" + i + "]", Array.get(array, i)));
|
/external/llvm/include/llvm/CodeGen/ |
LiveIntervalUnion.h | 186 // Array of LiveIntervalUnions. 187 class Array { 191 Array() : Size(0), LIUs(nullptr) {} 192 ~Array() { clear(); } 194 // Initialize the array to have Size entries.
|
/external/llvm/lib/Transforms/Utils/ |
ModuleUtils.cpp | 24 static void appendToGlobalArray(const char *Array, 33 if (GlobalVariable *GVCtor = M.getNamedGlobal(Array)) { 34 // If there is a global_ctors array, use the existing struct type, which can 70 GlobalValue::AppendingLinkage, NewInit, Array);
|
/external/mesa3d/src/mesa/vbo/ |
vbo_rebase.c | 132 const struct gl_client_array **saved_arrays = ctx->Array._DrawArrays; 212 /* Just need to adjust the pointer values on each incoming array. 230 ctx->Array._DrawArrays = tmp_array_pointers; 242 ctx->Array._DrawArrays = saved_arrays;
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
MessageNanoPrinter.java | 33 import java.lang.reflect.Array; 82 * @param object the value to print. May in fact be a primitive value or byte array and not a 126 // bytes is special since it's not repeated, but is represented by an array 130 int len = value == null ? 0 : Array.getLength(value); 132 Object elem = Array.get(value, i); 240 * Appends a quoted byte array to the provided {@code StringBuffer}.
|
/frameworks/support/v7/appcompat/src/android/support/v7/content/res/ |
GrowingArrayUtils.java | 19 import java.lang.reflect.Array; 23 * arrays. Common array operations are implemented for efficient use in dynamic containers. 25 * All methods in this class assume that the length of an array is equivalent to its capacity and 26 * NOT the number of elements in the array. The current size of the array is always passed in as a 32 * Appends an element to the end of the array, growing the array if there is no more room. 33 * @param array The array to which to append the element. This must NOT be null. 34 * @param currentSize The number of elements in the array. Must be less than or equal t [all...] |
/libcore/luni/src/test/java/dalvik/system/ |
VMRuntimeTest.java | 19 import java.lang.reflect.Array; 30 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, -1); local 36 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, Integer.MIN_VALUE); local 43 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, i); local 44 assertTrue(array.getClass().isArray()); 45 assertEquals(array.getClass().getComponentType(), componentType); 46 assertEquals(Array.getLength(array), i); 53 Object array = VMRuntime.getRuntime().newNonMovableArray(null, 0); local 60 Object array = VMRuntime.getRuntime().newNonMovableArray(void.class, 0) local 84 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, -1); local 90 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, Integer.MIN_VALUE); local 97 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, i); local 107 Object array = VMRuntime.getRuntime().newUnpaddedArray(null, 0); local 114 Object array = VMRuntime.getRuntime().newUnpaddedArray(void.class, 0); local [all...] |
/prebuilts/gdb/darwin-x86/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)
|
/prebuilts/gdb/linux-x86/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)
|
/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)
|
/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)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/ |
json.js | 147 * @param {Array} sb Array used as a string builder. 170 this.serializeArray_((/** @type {!Array} */ object), sb); 223 * @param {Array} sb Array used as a string builder. 252 * @param {Array} sb Array used as a string builder. 260 * Serializes an array to a JSON string 262 * @param {Array} arr The array to serialize [all...] |