HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1351 - 1375 of 1692) sorted by null

<<51525354555657585960>>

  /libcore/luni/src/main/java/java/util/
ArrayList.java 25 import java.lang.reflect.Array;
29 * ArrayList is an implementation of {@link List}, backed by an array.
62 transient Object[] array; field in class:ArrayList
75 array = (capacity == 0 ? EmptyArray.OBJECT : new Object[capacity]);
82 array = EmptyArray.OBJECT;
103 array = a;
115 Object[] a = array;
122 array = a = newArray;
144 Object[] a = array;
157 array = a = newArray
    [all...]
Vector.java 23 import java.lang.reflect.Array;
26 * Vector is an implementation of {@link List}, backed by an array and synchronized.
300 * corresponding elements of the supplied {@code Object} array.
303 * the {@code Object} array into which the elements of this
966 * Returns a new array containing all elements contained in this vector.
968 * @return an array of the elements from this vector.
978 * Returns an array containing all elements contained in this vector. If the
979 * specified array is large enough to hold the elements, the specified array
980 * is used, otherwise an array of the same type is created. If the specifie
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extension.java 34 import org.apache.harmony.security.utils.Array;
347 sb.append(Array.toString(extnValue, prefix));
  /external/v8/test/mjsunit/regress/
regress-1200351.js 96 eval("with ({ eval(Array(x)) : 1.call('a').superConstructor }) { debugger.lastIndex.toLocaleString() }")
312 eval("for (~new Object().push(Array(null)) in new RegExp>>>=void.prototype.name) { goto break.lastIndex }")
332 eval("for (debugger==continue.toObject(), Array(NaN.className()), Math.max(new RegExp).prototype.value) { GetFunctionFor('a').prototype.value }")
336 eval("const x = new parseInt(break)==Array(x)")
400 eval("for (continue.isNull.filter(this.toText), function () { throw new 'a'(0.2) }, native?break:undef.prototype.return continue) { Array(void.toText) }")
412 eval("native false.length?new RegExp instanceof this:Array(undef)")
456 eval("for (Array(x.length) in 'a'.length().sort()) { goto (new Object()) }")
667 eval("SetValueOf(Array(1).toLocaleString(), null.name().exec(undef.filter(false)))")
699 eval("if (-1.push(new RegExp)[void.valueOf()]) { new RegExp.className().__lookupGetter__(Array(0)) }")
790 eval("export Array(null).add(NaN.valueOf())"
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.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...]
  /build/tools/droiddoc/templates-pdk/assets/
search_autocomplete.js 3 var gMatches = new Array();
137 gMatches = new Array();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 167 public function displayRecognitionError(tokenNames:Array,
197 public function getErrorMessage(e:RecognitionException, tokenNames:Array):String {
684 public function get tokenNames():Array {
702 public function toStrings(tokens:Array):Array {
704 var strings:Array = new Array();
723 state.ruleMemo[ruleIndex] = new Array();
766 trace("!!!!!!!!! memo array is null for "+ grammarFileName);
Lexer.as 242 public override function getErrorMessage(e:RecognitionException, tokenNames:Array):String {
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
upload_page.js 105 * @param {Array.<picasa.LocalFile>} files The files to add.
220 * @param {Array.<picasa.Album>} albums Albums list.
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 129 virtual SVal ArrayToPointer(Loc Array) = 0;
  /external/doclava/res/assets/templates/assets/
search_autocomplete.js 3 var gMatches = new Array();
137 gMatches = new Array();
  /external/eigen/Eigen/src/Core/
ArrayBase.h 20 * \brief Base class for all 1D and 2D array, and related expressions
22 * An array is similar to a dense vector or matrix. While matrices are mathematical
23 * objects with well defined linear algebra operators, an array is just a collection
25 * all operations applied to an array are performed coefficient wise. Furthermore,
30 * This class is the base that is inherited by all array expression types.
32 * \tparam Derived is the derived type, e.g., an array or an expression type.
93 typedef Array<typename internal::traits<Derived>::Scalar,
143 ArrayBase<Derived>& array() { return *this; } function in class:Eigen::ArrayBase
144 const ArrayBase<Derived>& array() const { return *this; } function in class:Eigen::ArrayBase
146 /** \returns an \link MatrixBase Matrix \endlink expression of this array
    [all...]
  /external/eigen/test/eigen2/
eigen2_array.cpp 11 #include <Eigen/Array>
13 template<typename MatrixType> void array(const MatrixType& m) function
16 Array.cpp
120 CALL_SUBTEST_1( array(Matrix<float, 1, 1>()) );
121 CALL_SUBTEST_2( array(Matrix2f()) );
122 CALL_SUBTEST_3( array(Matrix4d()) );
123 CALL_SUBTEST_4( array(MatrixXcf(3, 3)) );
124 CALL_SUBTEST_5( array(MatrixXf(8, 12)) );
125 CALL_SUBTEST_6( array(MatrixXi(8, 12)) );
product.h 11 #include <Eigen/Array>
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SafeArrayList.java 40 * direct access to the current array. This List allows modification of the
43 * array is only presenting a snap shot and so can be safely iterated while
56 * as the array can be accessed directly.</p>
102 return (T[])java.lang.reflect.Array.newInstance(type, size);
110 * Returns a current snapshot of this List's backing array that
112 * Changes to this array may or may not be reflected in the list and
122 // Only keep the array or the buffer but never both at
138 // Only keep the array or the buffer but never both at
169 E[] array = getArray(); local
170 if (a.length < array.length)
249 E[] array = getArray(); local
281 E[] array = getArray(); local
295 E[] array = getArray(); local
325 E[] array = getArray(); local
343 private E[] array; field in class:SafeArrayList.ArrayIterator
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
ruby.php 39 $language_data = array (
41 'COMMENT_SINGLE' => array(1 => "#"),
42 'COMMENT_MULTI' => array("=begin" => "=end"),
44 'QUOTEMARKS' => array('"', '`','\''),
46 'KEYWORDS' => array(
47 1 => array(
55 2 => array(
59 3 => array(
60 'Array', 'Float', 'Integer', 'String', 'at_exit',
70 4 => array(
    [all...]
  /external/v8/test/mjsunit/
double-equals.js 212 testNotEqual(new Array(42), new Array(42));
object-freeze.js 33 var non_objects = new Array(undefined, null, 1, -1, 0, 42.43);
126 var arr = new Array(42,43);
object-seal.js 33 var non_objects = new Array(undefined, null, 1, -1, 0, 42.43);
132 var arr = new Array(42,43);
149 // Since the values in the array is still writable this object
stack-traces.js 237 testTrace("testArrayNative", testArrayNative, ["Array.map (native)"]);
251 testTrace("testAnonymousMethod", testAnonymousMethod, ["Array.<anonymous>"]);
  /external/v8/tools/
profile_view.js 122 * functions. Must comply with Array.sort sorting function requirements.
214 * functions. Must comply with Array.sort sorting function requirements.
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-nbody.js 158 var bodies = new NBodySystem( Array(
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 158 var bodies = new NBodySystem( Array(
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.2.js 51 var array = new Array();
54 array[item++] = new TestCase( SECTION, "typeof (new Boolean(1))", "object", typeof (new Boolean(1)) );
55 array[item++] = new TestCase( SECTION, "(new Boolean(1)).constructor", Boolean.prototype.constructor, (new Boolean(1)).constructor );
56 array[item++] = new TestCase( SECTION,
60 array[item++] = new TestCase( SECTION, "(new Boolean(1)).valueOf()", true, (new Boolean(1)).valueOf() );
61 array[item++] = new TestCase( SECTION, "typeof new Boolean(1)", "object", typeof new Boolean(1) );
62 array[item++] = new TestCase( SECTION, "(new Boolean(0)).constructor", Boolean.prototype.constructor, (new Boolean(0)).constructor );
63 array[item++] = new TestCase( SECTION,
67 array[item++] = new TestCase( SECTION, "(new Boolean(0)).valueOf()", false, (new Boolean(0)).v (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.3.1-1.js 82 var testcases = new Array();

Completed in 871 milliseconds

<<51525354555657585960>>