/external/clang/lib/AST/ |
APValue.cpp | 39 /// Path - The sequence of base classes, fields and array indices to follow to 159 case Array: 202 else if (Kind == Array) 222 case Array: 300 case Array: 301 OS << "Array: "; 458 // The lvalue must refer to an array. 474 case APValue::Array: { 639 Kind = Array;
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
RegAllocBasic.cpp | 224 Array = 227 new(Array + r) LiveIntervalUnion(r, allocator); 247 if (!Array) 250 Array[r].~LiveIntervalUnion(); 251 free(Array); 253 Array = 0;
|
/external/v8/benchmarks/ |
navier-stokes.js | 365 dens = new Array(size); 366 dens_prev = new Array(size); 367 u = new Array(size); 368 u_prev = new Array(size); 369 v = new Array(size); 370 v_prev = new Array(size);
|
/external/clang/lib/Tooling/ |
JSONCompilationDatabase.cpp | 250 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root); 251 if (!Array) { 252 ErrorMessage = "Expected array."; 255 for (auto& NextObject : *Array) {
|
/external/junit-params/src/main/java/junitparams/internal/ |
InvokeParameterisedMethod.java | 4 import java.lang.reflect.Array; 72 resultParam = Array.newInstance(typesOfParameters[0], paramset.length); 115 Object[] varArgsParameters = (Object[]) Array.newInstance(varArgType, columns.length - expectedParameterTypes.length + 1);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
codegen.ml | 62 if Array.length params == Array.length args then () else 64 let args = Array.map codegen_expr args in 192 let doubles = Array.make (Array.length args) double_type in 212 Array.iteri (fun i a ->
|
/external/llvm/unittests/Support/ |
YAMLParserTest.cpp | 48 ExpectParseSuccess("Empty array", "[]"); 52 ExpectParseError("Not closing array", "["); 53 ExpectParseError("Not closing array", " [ "); 54 ExpectParseError("Not closing array", " [x"); 58 ExpectParseSuccess("Array with spaces", " [ ] "); 101 "Multiple objects in array", 129 ExpectParseSuccess("Array of arrays", "[[]]"); 175 ExpectParseError("In array starting with EOF", "["); 176 ExpectParseError("In array element starting with EOF", "[[], "); 177 ExpectParseError("In array hitting EOF", "[[] ") [all...] |
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/ |
codegen.ml | 62 if Array.length params == Array.length args then () else 64 let args = Array.map codegen_expr args in 192 let doubles = Array.make (Array.length args) double_type in 212 Array.iteri (fun i a ->
|
/frameworks/base/tools/aapt2/ |
ResourceValues.h | 20 #include <array> 294 struct Array : public BaseValue<Array> { 298 Array* Clone(StringPool* new_pool) const override; 305 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 | 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' extension will never be supported}} \ 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/clang/tools/scan-build-py/libscanbuild/resources/ |
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/eigen/test/ |
vectorwiseop.cpp | 20 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType; 21 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType; 118 Array<bool,Dynamic,Dynamic> mb(rows,cols); 245 CALL_SUBTEST_2( vectorwiseop_array(Array<double, 3, 2>()) );
|
/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/ |
BitstreamReader.h | 242 uint8_t Array[sizeof(word_t)] = {0}; 245 R->getBitcodeBytes().readBytes(Array, sizeof(Array), NextChar); 257 Array);
|