/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
_endian.py | 7 _array_type = type(Array) 18 # if typ is array
|
/external/eigen/test/ |
basicstuff.cpp | 203 Array<Scalar,4,1> a(raw); 207 VERIFY((a==(Array<Scalar,4,1>(raw[0],raw[1],raw[2],raw[3]))).all()); 211 Array<Scalar,3,1> a(raw); 215 VERIFY((a==Array<Scalar,3,1>(raw[0],raw[1],raw[2])).all()); 219 Array<Scalar,2,1> a(raw), a2( (DenseIndex(raw[0])), (DenseIndex(raw[1])) ); 223 VERIFY((a==Array<Scalar,2,1>(raw[0],raw[1])).all()); 232 Array<Scalar,1,2> a(raw), a2( (DenseIndex(raw[0])), (DenseIndex(raw[1])) ); 236 VERIFY((a==Array<Scalar,1,2>(raw[0],raw[1])).all()); 244 Array<Scalar,1,1> a(raw), a1(raw[0]), a2( (DenseIndex(raw[0])) ); 253 VERIFY((a==Array<Scalar,1,1>(raw[0])).all()) [all...] |
/art/runtime/native/ |
java_lang_System.cc | 22 #include "mirror/array.h" 34 * cause "word tearing". Accesses to 64-bit array elements may be two 32-bit operations. 39 ObjPtr<mirror::Object> array) 41 std::string actualType(mirror::Object::PrettyTypeOf(array)); 44 "%s of type %s is not an array", identifier, actualType.c_str()); 74 ObjPtr<mirror::Array> srcArray = srcObject->AsArray(); 75 ObjPtr<mirror::Array> dstArray = dstObject->AsArray(); 131 LOG(FATAL) << "Unknown array type: " << srcArray->PrettyTypeOf(); 135 // If one of the arrays holds a primitive type the other array must hold the exact same type. 160 // Template to convert general array to that of its specific primitive type [all...] |
/art/runtime/ |
transaction.h | 35 class Array; 95 // Record array change. 96 void RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) 187 void Undo(mirror::Array* obj) const REQUIRES_SHARED(Locks::mutator_lock_); 197 void UndoArrayWrite(mirror::Array* array, 287 std::map<mirror::Array*, ArrayLog> array_logs_ GUARDED_BY(log_lock_);
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
CommonTreeNodeStream.as | 38 * the tree using an array of Object pointers. The stream necessarily 70 protected var nodes:Array; 85 * to consume). If -1, nodes array not filled yet. 93 protected var calls:Array; 103 nodes = new Array(); 312 calls = new Array(); 331 calls = new Array();
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
HashList.cs | 257 public void CopyTo(Array array, int index) 259 _hashList.CopyKeysTo(array, index); 328 public void CopyTo(Array array, int index) 330 _hashList.CopyValuesTo(array, index); 456 public void CopyTo(Array array, int index) 462 array.SetValue(e, index++); 482 private void CopyKeysTo(Array array, int index [all...] |
/external/liblzf/cs/ |
CLZF.cs | 129 UInt32 FRST(byte[] Array,UInt32 ptr) 131 return (UInt32)(((Array[ptr]) << 8) | Array[ptr+1]); 134 UInt32 NEXT(UInt32 v,byte[] Array,UInt32 ptr) 136 return ((v) << 8) | Array[ptr+2];
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/ |
test_support.py | 51 if kind1.__class__ == mojom.Array: 113 struct.AddField('testfield2', mojom.Array(mojom.INT32), 42) 118 method.AddParameter('bar', mojom.Array(struct)) 136 errors += EXPECT_EQ(mojom.Array, module.structs[0].fields[1].kind.__class__) 149 mojom.Array,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/ |
ProcessOptions.c | 349 Return data element in an Array by its Index.
351 @param Array The data array.
352 @param Type Type of the data in this array.
353 @param Index Zero based index for data in this array.
360 IN VOID *Array,
367 ASSERT (Array != NULL);
372 Data = (UINT64) *(((UINT8 *) Array) + Index);
376 Data = (UINT64) *(((UINT16 *) Array) + Index);
380 Data = (UINT64) *(((UINT32 *) Array) + Index); [all...] |
/external/v8/tools/ |
logreader.js | 36 * @param {Array.<Object>} dispatchTable A table used for parsing and processing 45 * @type {Array.<Object>} 82 * @type {Array.<String>} 144 * @param {Array.<string>} stack String representation of a stack. 145 * @return {Array.<number>} Processed stack. 182 * @param {Array.<string>} fields Log record. 219 * @param {Array.<string>} lines Log lines.
|
consarray.js | 32 * sequentally. The internal Array implementation is horribly slow 47 * Concatenates another array for iterating. Empty arrays are ignored. 51 * @param {Array} arr Array to concatenate.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/ |
makeunicodedata.py | 288 Array("index1", index1).dump(fp, trace)
289 Array("index2", index2).dump(fp, trace)
295 Array("decomp_data", decomp_data).dump(fp, trace)
299 Array("decomp_index1", index1).dump(fp, trace)
300 Array("decomp_index2", index2).dump(fp, trace)
305 Array("comp_index", index).dump(fp, trace)
306 Array("comp_data", index2).dump(fp, trace)
325 Array("changes_%s_index" % cversion, index1).dump(fp, trace)
326 Array("changes_%s_data" % cversion, index2).dump(fp, trace)
462 Array("index1", index1).dump(fp, trace) [all...] |
/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/v8/src/inspector/ |
debugger-script.js | 59 * @return {?Array<!Scope>} 112 * @return {!Array<!{value: *}>|undefined} 170 * @return {!Array<!JavaScriptCallFrame>} 180 // Returns array in form: 188 * @return {!Array<*>} 276 /** @type {!Array<number>} */ 277 var scopeTypes = new Array(scopeMirrors.length); 278 /** @type {?Array<!Object>} */ 279 var scopeObjects = new Array(scopeMirrors.length); 280 /** @type {!Array<string|undefined>} * [all...] |
v8-debugger-agent-impl.cc | 31 using protocol::Array; 260 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) { 261 *locations = Array<protocol::Debugger::Location>::create(); 361 std::unique_ptr<protocol::Array<protocol::Debugger::Location>>* locations) { 388 *locations = protocol::Array<protocol::Debugger::Location>::create(); 459 // Ranges array contains positions in script where blackbox state is changed. 527 std::unique_ptr<Array<protocol::Debugger::SearchMatch>>* results) { 538 *results = protocol::Array<protocol::Debugger::SearchMatch>::create(); 546 Maybe<protocol::Array<protocol::Debugger::CallFrame>>* newCallFrames, 562 std::unique_ptr<Array<CallFrame>> callFrames [all...] |
v8-debugger.cc | 281 v8::Local<v8::Array> hitBreakpoints; 452 v8::Local<v8::Array> callFramesArray = currentCallFramesV8.As<v8::Array>(); 479 v8::Local<v8::Array> hitBreakpoints; 488 v8::Local<v8::Array> hitBreakpointNumbers, 609 exception, v8::Local<v8::Array>(), isPromiseRejection, 618 hitBreakpoints.As<v8::Array>()); 704 if (!markAsInternal(context, v8::Local<v8::Array>::Cast(copied), 707 if (!markArrayEntriesAsInternal(context, v8::Local<v8::Array>::Cast(copied), 713 v8::MaybeLocal<v8::Array> V8Debugger::internalProperties [all...] |
/frameworks/support/v7/recyclerview/src/android/support/v7/util/ |
SortedList.java | 19 import java.lang.reflect.Array; 94 mData = (T[]) Array.newInstance(klass, initialCapacity); 117 * reference to the old item and puts the new item into the backing array even if 143 * If allowed, may modify the input array and even take the ownership over it in order 146 * @param items Array of items to be added into the list. 158 T[] copy = (T[]) Array.newInstance(mTClass, items.length); 170 * @param items Array of items to be added into the list. 184 T[] copy = (T[]) Array.newInstance(mTClass, items.size()); 219 * Move the remaining items to the beginning of the array. 221 * @return Number of deduplicated items at the beginning of the array [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/pdfium/fxjs/ |
fxjs_v8.cpp | 590 v8::Local<v8::Array> val; 614 v8::Local<v8::Array> CFXJS_Engine::NewArray() { 615 return v8::Array::New(m_isolate); 618 unsigned CFXJS_Engine::PutArrayElement(v8::Local<v8::Array> pArray, 628 v8::Local<v8::Value> CFXJS_Engine::GetArrayElement(v8::Local<v8::Array> pArray, 638 unsigned CFXJS_Engine::GetArrayLength(v8::Local<v8::Array> pArray) { 725 v8::Local<v8::Array> CFXJS_Engine::ToArray(v8::Local<v8::Value> pValue) { 727 return v8::Local<v8::Array>(); 729 return v8::Local<v8::Array>::Cast(pValue->ToObject(context).ToLocalChecked()); 733 v8::Local<v8::Array> array) [all...] |
/art/test/944-transform-classloaders/src/art/ |
Test944.java | 205 throw new Exception("elementArrayValue is not an " + dexPathListElementClass + " array!"); 208 int array_length = Array.getLength(elementArrayValue); 211 Object curElement = Array.get(elementArrayValue, i);
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Connection1.java | 20 import java.sql.Array; 195 public Array createArrayOf(String typeName, Object[] elements)
|
/external/conscrypt/api-doclet/src/main/java/org/conscrypt/doclet/ |
FilterDoclet.java | 27 import java.lang.reflect.Array; 104 Object[] array = (Object[]) o; local 105 List<Object> list = new ArrayList<Object>(array.length); 106 for (Object entry : array) { 112 return list.toArray((Object[]) Array.newInstance(componentType, list.size()));
|