| /frameworks/base/tools/aapt2/ |
| ResourceValues.h | 26 #include <array> 305 struct Array : public BaseValue<Array> { 309 Array* clone(StringPool* newPool) const override; 324 std::array<std::unique_ptr<Item>, Count> values;
|
| /libcore/json/src/main/java/org/json/ |
| JSONArray.java | 19 import java.lang.reflect.Array; 65 * Unsupported values are not permitted and will yield an array in an 79 * Creates a new {@code JSONArray} with values from the next array in the 103 * @param json a JSON-encoded string containing an array. 112 * Creates a new {@code JSONArray} with values from the given primitive array. 114 public JSONArray(Object array) throws JSONException { 115 if (!array.getClass().isArray()) { 116 throw new JSONException("Not a primitive array: " + array.getClass()); 118 final int length = Array.getLength(array) [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| snmp.h | 223 #define DEFINE_SIZEOF(Array) (sizeof(Array)/sizeof((Array)[0]))
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
| FieldLUDecompositionImpl.java | 20 import java.lang.reflect.Array; 87 // Initialize permutation array and parity 275 final T[] bp = (T[]) Array.newInstance(field.getZero().getClass(), m); 321 final T[] bp = (T[]) Array.newInstance(field.getZero().getClass(), m); 380 final T[][] bp = (T[][]) Array.newInstance(field.getZero().getClass(), new int[] { m, nColB });
|
| /external/autotest/client/cros/tendo/n_faced_peerd/ |
| object_manager.py | 33 InterfacesRemoved (OBJPATH object_path, ARRAY<STRING> interfaces); 82 dbus.Array([dbus.String(interface_name)]))
|
| /external/clang/test/SemaCXX/ |
| c99-variable-length-array.cpp | 19 NonPOD array3[N]; // expected-error{{variable length array of non-POD element type 'NonPOD'}} 20 NonPOD2 array4[N][3]; // expected-error{{variable length array of non-POD element type 'NonPOD2'}} 50 int array[N]; // expected-warning{{variable length arrays are a C99 feature}} local 51 X0<__typeof__(array)> x0a; // expected-error{{variably modified type 'typeof (array)' (aka 'int [N]') cannot be used as a template argument}} 56 template<int (&Array)[T::value]> // expected-error{{non-type template parameter of variably modified type 'int (&)[HasNonConstantValue::value]'}} \ 69 void accept_array(T (&array)[N]); // expected-note{{candidate template ignored: could not match 'T [N]' against 'int [N]'}} 72 int array[N]; // expected-warning{{variable length arrays are a C99 feature}} local 73 accept_array(array); // expected-error{{no matching function for call to 'accept_array'}} 80 int array[N]; // expected-error{{fields must have a constant size: 'variable length array in structure' exte (…) member in struct:X 100 int array[value * i]; \/\/ expected-warning 2{{variable length arrays are a C99 feature}} local [all...] |
| warn-bool-conversion.cpp | 70 namespace Array { 85 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}} 87 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}} 89 // expected-warning@-1{{address of array 'c.x' will always evaluate to 'true'}} 91 // expected-warning@-1{{address of array 'str' will always evaluate to 'true'}} 126 int array[5]; member in namespace:macros 131 assert(array); 132 assert(array && "expecting null pointer"); 133 // expected-warning@-1{{address of array 'array' will always evaluate to 'true'} [all...] |
| /external/clang/tools/scan-build/share/scan-build/ |
| sorttable.js | 140 // build an array to sort. This is a Schwartzian transform thing, 447 // array-like enumeration 448 if (!Array.forEach) { // mozilla already supports this 449 Array.forEach = function(array, block, context) { 450 for (var i = 0; i < array.length; i++) { 451 block.call(context, array[i], i, array); 467 Array.forEach(string.split(""), function(chr, index) { 487 // the object is array-lik [all...] |
| /external/eigen/lapack/ |
| slarfg.f | 27 * .. Array Arguments .. 76 *> X is REAL array, dimension 118 * .. Array Arguments ..
|
| /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/bmfont/ |
| BitmapFontWriter.java | 26 import com.badlogic.gdx.utils.Array;
205 Array<Glyph> glyphs = new Array<Glyph>(256);
301 /** A utility method to write the given array of pixmaps to the given output directory, with the specified file name. If the
302 * pages array is of length 1, then the resulting file ref will look like: "fileName.png".
304 * If the pages array is greater than length 1, the resulting file refs will be appended with "_N", such as "fileName_0.png",
307 * The returned string array can then be passed to the <tt>writeFont</tt> method.
314 * @return the array of string references to be used with <tt>writeFont</tt> */
339 public static String[] writePixmaps (Array<Page> pages, FileHandle outputDir, String fileName) {
|
| /external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
| Predicate.java | 21 import com.badlogic.gdx.utils.Array.ArrayIterator;
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
| ImportTest.java | 34 import com.badlogic.gdx.utils.Array;
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
| ParticleControllerTest.java | 43 import com.badlogic.gdx.utils.Array; 75 Array<ParticleController> emitters; 89 emitters = new Array<ParticleController>(); 201 protected void render (ModelBatch batch, Array<ModelInstance> instances) {
|
| /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/superkoalio/ |
| SuperKoalio.java | 39 import com.badlogic.gdx.utils.Array;
82 private Array<Rectangle> tiles = new Array<Rectangle>();
273 private void getTiles (int startX, int startY, int endX, int endY, Array<Rectangle> tiles) {
|
| /external/libvncserver/webclients/novnc/include/ |
| base64.js | 11 /* Convert data (an array of integers) to a Base64 string. */ 77 result = new Array(result_length);
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
| parser.ml | 40 Ast.Call (id, Array.of_list (List.rev args)) 104 Ast.Prototype (id, Array.of_list (List.rev args))
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
| parser.ml | 40 Ast.Call (id, Array.of_list (List.rev args)) 104 Ast.Prototype (id, Array.of_list (List.rev args))
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
| parser.ml | 40 Ast.Call (id, Array.of_list (List.rev args)) 104 Ast.Prototype (id, Array.of_list (List.rev args))
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
| codegen.ml | 92 if Array.length params == Array.length args then () else 94 let args = Array.map codegen_expr args in 247 Array.iter (fun (var_name, init) -> 290 let doubles = Array.make (Array.length args) double_type in 310 Array.iteri (fun i a -> 323 Array.iteri (fun i ai ->
|
| /external/llvm/include/llvm/Bitcode/ |
| BitstreamWriter.h | 295 /// emission code. If BlobData is non-null, then it specifies an array of 296 /// data that should be emitted as part of the Blob or Array operand that is 319 assert(Op.getEncoding() != BitCodeAbbrevOp::Array && 333 } else if (Op.getEncoding() == BitCodeAbbrevOp::Array) { 334 // Array case. 335 assert(i + 2 == e && "array op not second to last?"); 342 "Blob data and record entries specified for array!"); 452 /// that end with an array. 455 StringRef Array) { 456 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), Array, None) [all...] |
| /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/ |
| Direct3DInterop.h | 49 void CreateTexture(const Platform::Array<int>^ buffer, int with, int height, OCVFilterType filter);
|
| /external/v8/include/ |
| v8-debug.h | 278 * Returns array of internal properties specific to the value type. Result has 279 * the following format: [<name>, <value>,...,<name>, <value>]. Result array 282 static MaybeLocal<Array> GetInternalProperties(Isolate* isolate,
|
| /external/v8/test/mjsunit/ |
| delete-non-configurable.js | 43 // Delete elements of an Array. 44 var arr = new Array(length);
|
| /external/v8/test/mjsunit/es6/ |
| reflect-get-prototype-of.js | 57 assertPrototypeOf([1, 2], Array.prototype); 100 Array,
|
| templates.js | 295 assertEquals(Array.prototype, Object.getPrototypeOf(cs.raw)); 296 assertTrue(Array.isArray(cs.raw)); 297 assertEquals(Array.prototype, Object.getPrototypeOf(cs)); 298 assertTrue(Array.isArray(cs)); 421 Object.defineProperty(Array.prototype, 0, { 429 delete Array.prototype[0]; 570 var args = Array.prototype.slice.call(arguments); 594 var args = Array.prototype.slice.call(arguments, 1); 702 // Since the first argument to the tag function is always an array, 703 // eval calls will always just return that array [all...] |