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

<<11121314151617181920>>

  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
CompactArray.java 34 import java.lang.reflect.Array;
47 protected float[] array; field in class:CompactArray
51 * Creates a compact array
57 * create array using serialized data
62 this.array = compressedArray;
136 * return a float array of serialized data
141 return array;
145 * serialize this compact array
150 if (array == null || Array.getLength(array) < newSize) {
    [all...]
  /external/liblzf/src/org/liblzf/
CLZF.java 129 static int FRST(byte[] Array,int ptr)
131 return (int)((((Array[ptr]) << 8) & 0xff00) | (Array[ptr+1] & 0xff));
134 static int NEXT(int v,byte[] Array,int ptr)
136 return ((v) << 8) | (Array[ptr+2] & 0xff);
  /external/v8/test/mjsunit/compiler/
assignment.js 35 a = new Array(10);
56 var a = new Array(10);
78 a = new Array(10);
100 var a = new Array(10);
124 a = new Array(10);
151 a = new Array(10);
174 var a = new Array(10);
198 a = new Array(10);
222 var a = new Array(10);
248 a = new Array(10)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 19 import java.lang.reflect.Array;
23 // and the array size eats another 4 bytes
76 * @param array1 the first byte array
77 * @param array2 the second byte array
101 * Returns an empty array of the specified type. The intent is that
102 * it will return the same empty array every time to avoid reallocation,
114 cache = Array.newInstance(kind, 0);
124 * Checks that value is present as at least one of the elements of the array.
125 * @param array the array to check i
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 36 protected var _children:Array;
55 public function get children():Array {
80 * t.children = child.children; i.e., without copying the array.
113 _children = new Array(); // create children list on demand
122 public function addChildren(kids:Array):void {
137 _children = new Array();
166 var newChildren:Array = null;
172 newChildren = new Array();
282 public function get ancestors():Array {
284 var ancestors:Array = new Array()
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-290592.js 40 var summary = 'Array extras: forEach, indexOf, filter, map';
49 function identity(v, index, array)
51 reportCompare(v, array[index], 'identity: check callback argument consistency');
55 function mutate(v, index, array)
57 reportCompare(v, array[index], 'mutate: check callback argument consistency');
60 array[1] = 'mutated';
61 delete array[2];
62 array.push('not visited');
67 function mutateForEach(v, index, array)
69 reportCompare(v, array[index], 'mutateForEach: check callback argument consistency')
    [all...]
  /external/llvm/lib/Support/
SmallPtrSet.cpp 31 // Install the new array. Clear all the buckets to empty.
58 // If more than 3/4 of the array is full, grow.
61 // If fewer of 1/8 of the array is empty (meaning that many are filled with
109 const void *const *Array = CurArray;
113 if (Array[Bucket] == Ptr)
114 return Array+Bucket;
119 if (Array[Bucket] == getEmptyMarker())
120 return Tombstone ? Tombstone : Array+Bucket;
124 if (Array[Bucket] == getTombstoneMarker() && !Tombstone)
125 Tombstone = Array+Bucket; // Remember the first tombstone found
    [all...]
  /external/bison/src/
system.h 44 #define ARRAY_CARDINALITY(Array) (sizeof (Array) / sizeof *(Array))
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 44 if Array.length params == Array.length args then () else
46 let args = Array.map codegen_expr args in
52 let doubles = Array.make (Array.length args) double_type in
72 Array.iteri (fun i a ->
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 44 if Array.length params == Array.length args then () else
46 let args = Array.map codegen_expr args in
52 let doubles = Array.make (Array.length args) double_type in
72 Array.iteri (fun i a ->
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 180 // Array of LiveIntervalUnions.
181 class Array {
185 Array() : Size(0), LIUs(0) {}
186 ~Array() { clear(); }
188 // Initialize the array to have Size entries.
LiveRegMatrix.h 51 LiveIntervalUnion::Array Matrix;
142 /// This returns an array indexed by the regunit number.
  /external/v8/test/mjsunit/
array-length.js 46 var a = new Array();
61 var a = new Array();
76 var a = new Array();
82 var a = new Array();
104 var a = new Array();
110 Array.prototype.pop.apply(o);
array-pop.js 64 Array.prototype[1] = 1;
65 Array.prototype[3] = 3;
66 Array.prototype[5] = 5;
67 Array.prototype[7] = 7;
68 Array.prototype[9] = 9;
75 var inherited = Array.prototype.hasOwnProperty(j);
79 assertEquals(inherited, Array.prototype.hasOwnProperty(j),
82 Array.prototype.length = 0; // Clean-up.
86 // arrays with array prototype.
111 // arrays with array prototype
    [all...]
polymorph-arrays.js 51 var js_array = new Array(10);
52 var sparse_js_array = new Array(5000001);
69 var js_array = new Array(10);
70 var sparse_js_array = new Array(5000001);
116 var js_array = new Array(10);
117 var sparse_js_array = new Array(5000001);
134 var js_array = new Array(10);
135 var sparse_js_array = new Array(5000001);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.9.js 42 var testcases = new Array();
68 testcases[tc++] = new TestCase( SECTION, "!(new Array())", false, !(new Array()) );
69 testcases[tc++] = new TestCase( SECTION, "!(new Array(1,2,3)", false, !(new Array(1,2,3)) );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.8-3.js 27 Returns an Array object into which substrings of the result of converting
30 occurrences are not part of any substring in the returned array, but serve
34 up into individual characters; the length of the result array equals the
37 If the separator is not supplied, then the result array contains just one
43 2. Create a new Array object of length 0 and call it A.
90 var array = new Array();
94 var EXPECT = new Array();
98 array[item++] = new TestCase( SECTION,
103 array[item++] = new TestCase( SECTION
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 62 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 61 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 290 if ((this._parameters[pName]) instanceof Array)
322 if (!(result[keyToken[0]] instanceof Array))
324 result[keyToken[0]] = Array(result[keyToken[0]],value);
343 if (string instanceof Array)
345 throw('Array passed to _oauthEscape');
402 var elements = new Array();
421 if (this._parameters[paramName] instanceof Array)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 290 if ((this._parameters[pName]) instanceof Array)
322 if (!(result[keyToken[0]] instanceof Array))
324 result[keyToken[0]] = Array(result[keyToken[0]],value);
343 if (string instanceof Array)
345 throw('Array passed to _oauthEscape');
402 var elements = new Array();
421 if (this._parameters[paramName] instanceof Array)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauthsimple.js 290 if ((this._parameters[pName]) instanceof Array)
322 if (!(result[keyToken[0]] instanceof Array))
324 result[keyToken[0]] = Array(result[keyToken[0]],value);
343 if (string instanceof Array)
345 throw('Array passed to _oauthEscape');
402 var elements = new Array();
421 if (this._parameters[paramName] instanceof Array)
  /external/webkit/PerformanceTests/SunSpider/resources/
sunspider-standalone-driver.js 26 var results = new Array();
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-fasta.js 61 var line = new Array(60);
64 if (n<line.length) line = new Array(n);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-fasta.js 61 var line = new Array(60);
64 if (n<line.length) line = new Array(n);

Completed in 1476 milliseconds

<<11121314151617181920>>