/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/tools/ |
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.
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUResourceBundleReader.java | 254 // Bundles with formatVersion 1.1 and later contain an indexes[] array. 257 // read the variable-length indexes[] array 307 // Read the array of 16-bit units. 370 return type == UResourceBundle.ARRAY || type == ICUResourceBundle.ARRAY16; 381 private static final Array EMPTY_ARRAY = new Array(); 658 // Not cached: The array would have to be cloned anyway because 720 // Not cached: The array would have to be cloned anyway because 731 Array getArray(int res) { 742 return (Array)value 744 Array array = (type == UResourceBundle.ARRAY) ? local 867 Array array = reader.getArray(res); local 890 Array array = reader.getArray(res); local 899 Array array = reader.getArray(res); local 916 Array array = reader.getArray(res); local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUResourceBundleReader.java | 252 // Bundles with formatVersion 1.1 and later contain an indexes[] array. 255 // read the variable-length indexes[] array 305 // Read the array of 16-bit units. 368 return type == UResourceBundle.ARRAY || type == ICUResourceBundle.ARRAY16; 379 private static final Array EMPTY_ARRAY = new Array(); 656 // Not cached: The array would have to be cloned anyway because 718 // Not cached: The array would have to be cloned anyway because 729 Array getArray(int res) { 740 return (Array)value 742 Array array = (type == UResourceBundle.ARRAY) ? local 865 Array array = reader.getArray(res); local 888 Array array = reader.getArray(res); local 897 Array array = reader.getArray(res); local 914 Array array = reader.getArray(res); local [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_exec_array.c | 46 * Check that element 'j' of the array has reasonable data. 54 const struct gl_array_attributes *array = &vao->VertexAttrib[attrib]; local 55 if (array->Enabled) { 57 &vao->BufferBinding[array->BufferBindingIndex]; 59 const void *data = array->Ptr; 67 data = ADD_POINTERS(_mesa_vertex_attrib_address(array, binding), 70 switch (array->Type) { 75 for (k = 0; k < array->Size; k++) { 77 printf("Bad array data:\n"); 79 printf(" Array %u at %p\n", attrib, (void *) array) 104 const struct gl_array_attributes *array = &vao->VertexAttrib[attrib]; local 250 const struct gl_array_attributes *array = &vao->VertexAttrib[i]; local 299 const struct gl_array_attributes *array = ctx->Array.VAO->VertexAttrib; local [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);
|
/developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/ |
AutofillFieldMetadata.kt | 34 val autofillOptions: Array<CharSequence>? = view.autofillOptions
|
/developers/build/prebuilts/gradle/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/ |
MainActivity.kt | 34 private lateinit var samples: Array<Sample>
|
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/ |
AutofillFieldMetadata.kt | 34 val autofillOptions: Array<CharSequence>? = view.autofillOptions
|
/developers/samples/android/ui/views/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/ |
MainActivity.kt | 34 private lateinit var samples: Array<Sample>
|
/development/tools/winscope/src/ |
transform.js | 28 throw 'Childs should be an array, but is: ' + (typeof childs) + '.' 39 if (Array.isArray(args)) { 100 } else if (Array.isArray(obj)) {
|
/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; 103 Object[] array = (Object[]) o; local 104 List<Object> list = new ArrayList<Object>(array.length); 105 for (Object entry : array) { 111 return list.toArray((Object[]) Array.newInstance(componentType, list.size()));
|
/external/deqp/framework/delibs/depool/ |
dePoolHashArray.h | 23 * \brief Memory pool hash-array class. 37 * \brief Declare a template pool hash-array (array with hash) class interface. 38 * \param TYPENAME Type name of the declared hash-array. 41 * \param KEYARRAYTYPE Type of the key array. 42 * \param VALUEARRAYTYPE Type of the value array. 61 DE_DECLARE_POOL_ARRAY(TYPENAME##Array, VALUETYPE); \ 67 TYPENAME##Array* array; \ 80 return TYPENAME##Array_getNumElements(hashArray->array); \ [all...] |
/external/deqp-deps/SPIRV-Tools/source/opt/ |
types.h | 45 class Array; 161 DeclareCastMethod(Array); 302 Image(Type* type, SpvDim dimen, uint32_t d, bool array, bool multisample, 357 class Array : public Type { 359 Array(Type* element_type, uint32_t length_id); 360 Array(const Array&) = default; 366 Array* AsArray() override { return this; } 367 const Array* AsArray() const override { return this; }
|
/external/eigen/bench/btl/libs/blitz/ |
blitz_interface.hh | 25 #include <blitz/array.h> 43 typedef blitz::Array<real, 2> gene_matrix; 44 typedef blitz::Array<real, 1> gene_vector;
|
/external/eigen/test/ |
rand.cpp | 27 Array<int,1,Dynamic> mask(y-x+1); 42 Array<int,1,Dynamic> hist(bins);
|
/external/grpc-grpc-java/examples/example-kotlin/src/main/kotlin/io/grpc/examples/helloworld/ |
HelloWorldClient.kt | 72 fun main(args: Array<String>) {
|
HelloWorldServer.kt | 83 fun main(args: Array<String>) {
|
/external/guava/guava/src/com/google/common/collect/ |
ObjectArrays.java | 24 import java.lang.reflect.Array; 42 * Returns a new array of the given length with the specified component type. 45 * @param length the length of the new array 47 @GwtIncompatible("Array.newInstance(Class, int)") 50 return (T[]) Array.newInstance(type, length); 54 * Returns a new array of the given length with the same type as a reference 55 * array. 57 * @param reference any array of the desired type 58 * @param length the length of the new array 65 * Returns a new array that contains the concatenated contents of two arrays [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTestCase.java | 24 import java.lang.reflect.Array; 117 return Array.newInstance(returnType.getComponentType(), 0);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 42 Ast.Call (id, Array.of_list (List.rev args)) 160 Ast.Prototype (id, Array.of_list (List.rev args)) 169 let args = Array.of_list (List.rev args) in 172 if Array.length args != kind
|
/external/llvm/lib/CodeGen/ |
LiveIntervalUnion.cpp | 184 void LiveIntervalUnion::Array::init(LiveIntervalUnion::Allocator &Alloc, 197 void LiveIntervalUnion::Array::clear() {
|
/external/pdfium/fxjs/ |
cjs_color.h | 17 static v8::Local<v8::Array> ConvertPWLColorToArray(CJS_Runtime* pRuntime, 20 v8::Local<v8::Array> array);
|
/external/python/cpython2/Lib/ctypes/test/ |
test_frombuffer.py | 2 import array 14 a = array.array("i", range(16)) 39 a = array.array("i", range(16)) 47 a = array.array("i", range(16)) 71 a = array.array("i", range(16)) 83 self.assertRaises(TypeError, Array.from_buffer, bytearray(10) [all...] |