| /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);
|
| 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!"); 457 /// that end with an array. 460 StringRef Array) { 461 EmitRecordWithAbbrevImpl(Abbrev, makeArrayRef(Vals), Array, None) [all...] |
| /external/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/subzero/pnacl-llvm/ |
| NaClBitCodes.cpp | 25 false, // Array 33 "Array", 54 case Array: 107 // array operator. That is, apply the simplification: 108 // Op Array(Op) -> Array(Op) 120 // Verify that an array op appears can only appear if it is the
|
| NaClBitstreamReader.cpp | 101 case NaClBitCodeAbbrevOp::Array: 103 llvm_unreachable("Bad array abbreviation encoding!"); 134 case NaClBitCodeAbbrevOp::Array: { 135 // Array case. Read the number of elements as a vbr6. 157 case NaClBitCodeAbbrevOp::Array: 158 // Returns number of elements in the array. 184 case NaClBitCodeAbbrevOp::Array: 186 llvm_unreachable("Bad array abbreviation encoding!"); 218 // Array found, use to read all elements.
|
| /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/ |
| resolve_multiply_by_zero.cc | 40 void FillArrayWithZeros(Array* array) { 41 CHECK(array->data_type == Type); 42 std::vector<DataType<Type>>& data = array->GetMutableBuffer<Type>().data; 43 data.resize(RequiredBufferSizeForShape(array->shape())); 51 // Removes a multiplication by array of constant zeros by making the output 52 // array an array of constant zeros and removing the input arrays if they are no
|
| /external/v8/src/inspector/ |
| v8-console-message.h | 76 std::unique_ptr<protocol::Array<protocol::Runtime::RemoteObject>>
|
| v8-internal-value-type.cc | 46 v8::Local<v8::Array> array, 51 for (uint32_t i = 0; i < array->Length(); ++i) { 53 if (!array->Get(context, i).ToLocal(&entry) || !entry->IsObject())
|
| /frameworks/base/tools/aapt2/ |
| Resources.proto | 226 Array array = 4; 432 // A value that represents an array of resource values. 433 message Array { 434 // A single element of the array. 446 // The list of array elements.
|
| /frameworks/base/tools/aapt2/format/binary/ |
| BinaryResourceParser.h | 69 std::unique_ptr<Array> ParseArray(const ResourceNameRef& name, const ConfigDescription& config,
|
| /frameworks/base/tools/preload/ |
| 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...] |
| /libcore/ojluni/src/main/java/java/sql/ |
| Connection.java | [all...] |
| /prebuilts/clang/host/darwin-x86/clang-3289846/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...] |