/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | [all...] |
/frameworks/base/services/java/com/android/server/ |
NotificationManagerService.java | 87 import java.lang.reflect.Array; [all...] |
/libcore/luni/src/main/java/java/util/ |
Collections.java | 25 import java.lang.reflect.Array; 456 @Override public <T> T[] toArray(T[] array) { 458 return c.toArray(array); 549 final Object[] array; 552 array = new Object[size]; 553 list.toArray(array); 557 if (object.equals(array[i])) { 563 if (array[i] == null) { 573 final Object[] array; 576 array = new Object[size] [all...] |
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
main.js | [all...] |
/external/llvm/test/Bindings/Ocaml/ |
vmcore.ml | 155 group "array"; 564 insist (0 = Array.length (basic_blocks fn)); 584 insist (1 = Array.length (basic_blocks fn)); 592 insist (2 = Array.length params); [all...] |
/external/chromium/chrome/common/extensions/docs/js/ |
api_page_generator.js | 64 Array.prototype.select = function(f) { 366 return type.type == 'array'; 527 if (schema.type == "array") 528 return "array of " + getTypeName(schema.items);
|
/external/clang/lib/CodeGen/ |
CGObjCMac.cpp | [all...] |
CGExpr.cpp | 643 /// Determine whether this expression refers to a flexible array member in a 644 /// struct. We disable array bounds checks for such members. 647 // 1 as flexible array members. 657 // A flexible array member must be the last member in the class. 660 // this should not be treated as a flexible array member access. 671 /// If Base is known to point to the start of an array, return the length of 672 /// that array. Return 0 if the length cannot be determined. [all...] |
/external/doclava/src/com/google/doclava/ |
Doclava.java | 33 import java.lang.reflect.Array; 1323 Object[] array = (Object[]) o; local [all...] |
/external/eigen/blas/testing/ |
cblat3.f | 347 9991 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM', 390 * .. Array Arguments .. 675 * .. Array Arguments .. [all...] |
zblat3.f | 348 9991 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM', 391 * .. Array Arguments .. 676 * .. Array Arguments .. [all...] |
dblat1.f | 654 * .. Array Arguments .. 698 * REQUIREMENT THAT WHEN A DUMMY ARGUMENT IS AN ARRAY, THE 699 * ACTUAL ARGUMENT MUST ALSO BE AN ARRAY OR AN ARRAY ELEMENT. 705 * .. Array Arguments ..
|
sblat1.f | 654 * .. Array Arguments .. 698 * REQUIREMENT THAT WHEN A DUMMY ARGUMENT IS AN ARRAY, THE 699 * ACTUAL ARGUMENT MUST ALSO BE AN ARRAY OR AN ARRAY ELEMENT. 705 * .. Array Arguments ..
|
/external/v8/benchmarks/spinning-balls/ |
v.js | 121 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], 216 this.pauses = new Array(this.size);
|
/external/v8/benchmarks/ |
splay.js | 52 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], 272 * @return {Array<*>} An array containing all the keys of tree's nodes.
|
/external/v8/src/ |
d8.cc | 302 ThrowException(String::New("Array length must not be negative.")); 312 String::New("Array length exceeds maximum length.")); 335 String::New("Array constructor must have at least one " 349 String::New("Array constructor from ArrayBuffer must " 364 Handle<Object> array = Object::New(); local 421 array->Set(String::New(kArrayBufferReferencePropName), args[0], ReadOnly); 425 array->Set(String::New(kArrayBufferMarkerPropName), True(), ReadOnly); 428 Persistent<Object> persistent_array = Persistent<Object>::New(array); 438 array->SetIndexedPropertiesToExternalArrayData( 441 array->Set(String::New("length") [all...] |
/external/webkit/LayoutTests/fast/js/resources/ |
JSON-stringify.js | 6 var complexObject = {a:"1", b:"2", c:"3", d:undefined, e:null, "":12, get f(){ return simpleArray; }, array: complexArray}; 144 var array = []; 145 return jsonObject.stringify({a:"1", b:"2", c:"3", 5:4, 4:5, 2:6, 1:7}, array); 149 var array = ["a"]; 150 return jsonObject.stringify({get a(){return 1;array[1]="b";array[2]="c"}, b:"2", c:"3"}, array); 154 var array = [{toString:function(){array[0]='a'; array[1]='c'; array[2]='b'; return 'a'}}] [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-splay.js | 47 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], 251 * @return {Array<*>} An array containing all the keys of tree's nodes.
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-splay.js | 47 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], 251 * @return {Array<*>} An array containing all the keys of tree's nodes.
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-splay.js | 47 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], 267 * @return {Array<*>} An array containing all the keys of tree's nodes.
|
/frameworks/native/opengl/libagl/ |
array.cpp | 133 #pragma mark Array fetchers 430 void enableDisableClientState(ogles_context_t* c, GLenum array, bool enable) 434 switch (array) { 663 // batch is culled. We also need 2 extra vertices in the array, because 944 #pragma mark Array compilers [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
wizard.rb | 57 token_names = Array.new(4, '') + %w(VAR NUMBER EQ PLUS MINUS MULT DIV)
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 210 than one children -- functions like an array of 312 class BaseTree < ::Array 424 stack.push( Array[ *cursor ] ) unless cursor.empty? 1240 class RewriteRuleElementStream # < Array 1251 if elements.instance_of?( Array ) [all...] |
/external/clang/lib/Sema/ |
DeclSpec.cpp | 201 // new[] an argument array if needed. 223 // new[] an exception array if needed 250 case DeclaratorChunk::Array: [all...] |
SemaTemplateVariadic.cpp | 752 case DeclaratorChunk::Array:
|