/external/v8/src/ |
d8.h | 34 #include "smart-array-pointer.h" 280 static Handle<Array> GetCompletions(Handle<String> text,
|
string.js | 210 // This has the same size as the lastMatchInfo array, and can be used for 401 // TODO(lrn): This array will survive indefinitely if replace is never 414 // of another replace) or we have failed to set the reusable array 416 // array to use in the future, or until the original is written back. 459 // elem must be an Array. 590 // be an array of size 1 containing the entire string. 940 $Array("elements", "special_string"), $Array( 974 InstallFunctions($String, DONT_ENUM, $Array( 980 InstallFunctions($String.prototype, DONT_ENUM, $Array( [all...] |
date.js | 274 var parse_buffer = $Array(8); 812 InstallFunctions($Date, DONT_ENUM, $Array( 823 InstallFunctions($Date.prototype, DONT_ENUM, $Array(
|
/external/v8/test/mjsunit/ |
switch.js | 355 } else if (Array.isArray(feedback)) { 388 if (Array.isArray(test_type)) {
|
/external/v8/tools/ |
splaytree.js | 194 * @return {Array<*>} An array containing all the values of tree's nodes paired 205 * @return {Array<*>} An array containing all the values of tree's nodes.
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.2-1.js | 104 var array = new Array(); 110 array[item++] = new TestCase( SECTION, "parseInt.length", 2, parseInt.length ); 111 array[item++] = new TestCase( SECTION, "parseInt.length = 0; parseInt.length", 2, eval("parseInt.length = 0; parseInt.length") ); 112 array[item++] = new TestCase( SECTION, "var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS", "", eval("var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS") ); 113 array[item++] = new TestCase( SECTION, "delete parseInt.length", false, delete parseInt.length ); 114 array[item++] = new TestCase( SECTION, "delete parseInt.length; parseInt.length", 2, eval("delete parseInt.length; parseInt.length") ); 115 array[item++] = new TestCase( SECTION, "parseInt.length = null; parseInt.length", 2, eval("parseInt.length = null; parseInt.length") ); 117 array[item++] = new TestCase( SECTION, "parseInt()", NaN, parseInt() ); 118 array[item++] = new TestCase( SECTION, "parseInt('')", NaN, parseInt("") ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.13.js | 43 var array = new Array(); 46 array[item++] = new TestCase( SECTION, "Math.pow.length", 2, Math.pow.length ); 48 array[item++] = new TestCase( SECTION, "Math.pow()", Number.NaN, Math.pow() ); 49 array[item++] = new TestCase( SECTION, "Math.pow(null, null)", 1, Math.pow(null,null) ); 50 array[item++] = new TestCase( SECTION, "Math.pow(void 0, void 0)", Number.NaN, Math.pow(void 0, void 0)); 51 array[item++] = new TestCase( SECTION, "Math.pow(true, false)", 1, Math.pow(true, false) ); 52 array[item++] = new TestCase( SECTION, "Math.pow(false,true)", 0, Math.pow(false,true) ); 53 array[item++] = new TestCase( SECTION, "Math.pow('2','32')", 4294967296, Math.pow('2','32') ); 55 array[item++] = new TestCase( SECTION, "Math.pow(1,NaN)", Number.NaN, (…) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/ |
shell.js | 48 var callStack = new Array();
|
/frameworks/base/core/java/android/text/ |
SpannableStringBuilder.java | 25 import java.lang.reflect.Array; 315 // A for loop will not work because the array is being modified 318 // further in the span array. 328 continue; // do not increment i, spans will be shifted left in the array 765 * Return an array of the spans of the specified type that overlap 819 ret = (T[]) Array.newInstance(kind, spanCount - i + 1); 851 ret = (T[]) Array.newInstance(kind, 1); 860 T[] nret = (T[]) Array.newInstance(kind, count); 910 * specified array, beginning at the specified offset. [all...] |
TextUtils.java | 55 import java.lang.reflect.Array; 283 * @param tokens an array objects to be joined. Strings will be formed from 302 * @param tokens an array objects to be joined. Strings will be formed from 325 * @return an array of strings. The array will be empty if text is empty 342 * @return an array of strings. The array will be empty if text is empty 357 * allocates an array to hold the results. [all...] |
/libcore/luni/src/main/java/java/util/ |
Arrays.java | 21 import java.lang.reflect.Array; 129 contents = (T[]) Array.newInstance(ct, size); 144 * Returns a {@code List} of the objects in the specified array. The size of the 147 * array. 149 * @param array 150 * the array. 151 * @return a {@code List} of the elements of the specified array. 153 public static <T> List<T> asList(T... array) { 154 return new ArrayList<T>(array); 158 * Performs a binary search for {@code value} in the ascending sorted array {@code array} [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCPreparedStatement.java | 459 public void setArray(int i, Array x) throws SQLException { 739 public Array getArray(String parameterName) throws SQLException { 743 public Array getArray(int parameterIndex) throws SQLException {
|
JDBCConnection.java | 501 public Array createArrayOf(String type, Object[] elems)
|
/external/llvm/bindings/ocaml/llvm/ |
llvm.ml | 33 | Array 290 external function_type : lltype -> lltype array -> lltype = "llvm_function_type" 291 external var_arg_function_type : lltype -> lltype array -> lltype 295 external param_types : lltype -> lltype array = "llvm_param_types" 298 external struct_type : llcontext -> lltype array -> lltype = "llvm_struct_type" 299 external packed_struct_type : llcontext -> lltype array -> lltype 304 external struct_set_body : lltype -> lltype array -> bool -> unit = 306 external struct_element_types : lltype -> lltype array 311 (*--... Operations on pointer, vector, and array types .....................--*) 392 external mdnode : llcontext -> llvalue array -> llvalue = "llvm_mdnode [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
jquery-1.3.2.js | 55 // HANDLE: $(html) -> $(array) 108 // Get the whole matched element set as a clean array 112 // Return a 'clean' array 113 Array.prototype.slice.call( this ) : 119 // Take an array of elements and push it onto the stack 140 // the specified array of elements (destroying the stack in the process) 143 // Resetting the length to 0, then using the native Array push 144 // is a super-fast way to populate an object with array-like properties 146 Array.prototype.push.apply( this, elems ); 152 // (You can seed the arguments with an array of args, but this i [all...] |
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 36 import java.lang.reflect.Array; 571 T[] result = (T[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length); [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 36 import java.lang.reflect.Array; 551 T[] result = (T[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length); [all...] |
/external/clang/lib/CodeGen/ |
CGClass.cpp | 439 // If we have an array index variable, load it and use it as an offset. 474 // Now, outside of the initializer cleanup scope, destroy the backing array 481 const ConstantArrayType *Array = CGF.getContext().getAsConstantArrayType(T); 482 assert(Array && "Array initialization without the array type?"); 485 assert(IndexVar && "Array index variable not loaded"); 502 uint64_t NumElements = Array->getSize().getZExtValue(); 521 Array->getElementType(), ArrayIndexes, Index + 1); 570 // an array of PODs or classes with trivial copy constructors, ignore th [all...] |
/external/clang/lib/Sema/ |
SemaType.cpp | 330 case DeclaratorChunk::Array: 343 case DeclaratorChunk::Array: 398 case DeclaratorChunk::Array: 447 case DeclaratorChunk::Array: 506 case DeclaratorChunk::Array: [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | [all...] |
/build/tools/droiddoc/templates-sdk/assets/js/ |
docs.js | [all...] |
/dalvik/vm/ |
CheckJni.cpp | 53 * returns a byte array, things will fail in strange ways later on. 100 * of an array, generated). However, the current class loader may 734 * Verify that "array" is non-NULL and points to an Array object. 740 ALOGW("JNI WARNING: received null array"); 755 ALOGW("JNI WARNING: jarray arg has wrong type (expected array, got %s)", 814 * Verify that the "mode" argument passed to a primitive array Release [all...] |
/external/eigen/Eigen/src/Core/util/ |
ForwardDeclarations.h | 193 // Array module 210 int _MaxRows = _Rows, int _MaxCols = _Cols> class Array;
|
/external/eigen/test/eigen2/ |
main.h | 127 #include <Eigen/Array>
|
/external/eigen/test/ |
redux.cpp | 138 CALL_SUBTEST_1( matrixRedux(Array<float, 1, 1>()) );
|