/frameworks/base/tools/aapt2/ |
ValueVisitor.h | 44 virtual void Visit(Array* value) { VisitAny(value); } 82 void VisitSubValues(Array* array) { 83 for (std::unique_ptr<Item>& item : array->items) { 104 DECL_VISIT_COMPOUND_VALUE(Array);
|
/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/go/darwin-x86/test/ |
named.go | 12 type Array [10]byte 23 func asArray(Array) {} 38 func isArray(x interface{}) { _ = x.(Array) } 49 a Array 63 asArray(Array{}) 64 isArray(Array{})
|
/prebuilts/go/linux-x86/test/ |
named.go | 12 type Array [10]byte 23 func asArray(Array) {} 38 func isArray(x interface{}) { _ = x.(Array) } 49 a Array 63 asArray(Array{}) 64 isArray(Array{})
|
/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/libmojo/mojo/public/cpp/bindings/tests/ |
map_unittest.cc | 11 #include "mojo/public/cpp/bindings/array.h" 33 Array<String> keys(kStringIntDataSize); 34 Array<int> values(kStringIntDataSize); 49 Array<String> keys(kStringIntDataSize); 50 Array<int> values(kStringIntDataSize); 59 Array<String> keys2; 60 Array<int> values2;
|
/art/runtime/mirror/ |
object_array.h | 20 #include "array.h" 27 class MANAGED ObjectArray: public Array { 31 return Array::ClassSize(pointer_size); 49 // Returns true if the object can be stored into the array. If not, throws 79 // Copy src into this array (dealing with overlaps as memmove does) without assignability checks. 86 // Copy src into this array assuming no overlap and without assignability checks. 93 // Copy src into this array with assignability checks.
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRStringStream.as | 54 protected var markers:Array; 63 /** Copy data in string to a local char array */ 73 * when the object was created *except* the data array is not 129 markers = new Array();
|
/external/autotest/client/cros/bluetooth/ |
advertisement.py | 86 properties['ServiceUUIDs'] = dbus.Array(self.service_uuids, 89 properties['SolicitUUIDs'] = dbus.Array(self.solicit_uuids,
|
/external/autotest/client/cros/tendo/n_faced_peerd/ |
service.py | 83 @return dbus.Array of dbus.Struct objects containing an array of bytes 88 dbus_ip = dbus.Array([dbus.Byte(int(octet)) 91 return dbus.Array([ip_info], signature='(ayq)')
|
/external/guava/guava/src/com/google/common/collect/ |
Platform.java | 24 import java.lang.reflect.Array; 41 * Returns a new array of the given length with the same type as a reference 42 * array. 44 * @param reference any array of the desired type 45 * @param length the length of the new array 53 T[] result = (T[]) Array.newInstance(type, length);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSpannableString.java | 3 import java.lang.reflect.Array; 51 T[] array = (T[]) Array.newInstance(kind, retVal.size()); local 52 return retVal.toArray(array);
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
SmaliCompositeElement.java | 42 import java.lang.reflect.Array; 75 return result.toArray((T[]) Array.newInstance(aClass, result.size()));
|
/external/v8/src/inspector/ |
debugger_script_externs.js | 40 scopeChain: !Array<!Scope>, 66 /** @return {!Array<!Script>} */ 81 * @return {!Array<!SourceLocation>} 186 /** @return {!Array<!BreakPoint>|undefined} */ 326 /** @return {!Array<!PropertyMirror>} */ 378 * @return {!Array<!{key: *, value: *}>} 391 * @return {!Array<*>} 404 * @return {!Array<*>} 448 * @return {!Array<!ScopeMirror>}
|
v8-regex.cc | 70 // Array of strings with the first being the whole match string and others 71 // being subgroups. The Array also has some random properties tacked on like 79 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
|
/external/webrtc/webrtc/common_audio/ |
lapped_transform.cc | 41 parent_->block_processor_->ProcessAudioBlock(parent_->cplx_pre_.Array(), 45 parent_->cplx_post_.Array());
|
/libcore/benchmarks/src/benchmarks/ |
DeepArrayOpsBenchmark.java | 20 import java.lang.reflect.Array; 27 private Object[] array; field in class:DeepArrayOpsBenchmark 34 array = new Object[arrayLength * 13]; 37 array[i] = new IntWrapper(i); 40 array[i + 1] = new16ElementObjectarray(); 43 array[i + 2] = new boolean[16]; 46 array[i + 3] = new byte[16]; 49 array[i + 4] = new char[16]; 52 array[i + 5] = new short[16]; 55 array[i + 6] = new float[16] 93 Object[] array = new Object[16]; local 104 T[] array = (T []) Array.newInstance(type, 16); local [all...] |
/libcore/luni/src/main/java/libcore/reflect/ |
AnnotatedElements.java | 40 * {@code element}, or an empty array if none were found. 67 return unfoldedAnnotations.toArray((T[])Array.newInstance(annotationClass, 0)); 90 (Class<T[]>)((T[])Array.newInstance(annotationClass, 0)).getClass(); 107 "annotation element class = " + annotationClass + "; value() doesn't return array");
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
apiset.h | 75 API_SET_VALUE_ENTRY Array[1]; 91 API_SET_NAMESPACE_ENTRY Array[1];
|
/prebuilts/misc/common/swig/include/2.0.11/java/ |
arrays_java.i | 5 * as there is a lot of copying of the array values whenever the array is passed to C/C++ 6 * from Java and vice versa. The Java array is expected to be the same size as the C array. 24 /* Primitive array support is a combination of SWIG macros and functions in order to reduce 28 /* Array support functions declarations macro */ 31 static int SWIG_JavaArrayIn##JFUNCNAME (JNIEnv *jenv, JNITYPE **jarr, CTYPE **carr, JNITYPE##Array input); 32 static void SWIG_JavaArrayArgout##JFUNCNAME (JNIEnv *jenv, JNITYPE *jarr, CTYPE *carr, JNITYPE##Array input); 33 static JNITYPE##Array SWIG_JavaArrayOut##JFUNCNAME (JNIEnv *jenv, CTYPE *result, jsize sz); 37 /* Array support functions macro * [all...] |
/external/protobuf/js/binary/ |
writer.js | 81 * @private {!Array<!Uint8Array|!Array<number>>} 86 * Total number of bytes in the blocks_ array. Does _not_ include bytes in 96 * added to the block array above and the encoder will be reset. 105 * @private {!Array.<!Array.<number>>} 112 * Append a typed array of bytes onto the buffer. 114 * @param {!Uint8Array} arr The byte array to append. 129 * @return {!Array.<number>} 146 * @param {!Array.<number>} bookmar [all...] |