HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 176 - 200 of 1581) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/v8/test/mjsunit/
array-shift3.js 7 Array.prototype[1] = "element 1";
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1447.js 28 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); });
29 [0].every(function(){ Object.seal(Array.prototype.every); });
33 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); });
34 [0].every(function(){ Object.seal(Array.prototype.every); });
regress-350884.js 5 var obj = new Array(1);
regress-351261.js 13 var __v_7 = new Array(4999990);
regress-357105.js 12 var x = new Array(3);
regress-369450.js 13 Array.prototype[0] = 5.5;
regress-builtinbust-3.js 9 var o = { __proto__:Array.prototype , 0:"x" };
regress-builtinbust-4.js 5 var o = { __proto__:Array.prototype, 0:"x" };
regress-observe-map-cache.js 8 var x = new Array(0);
regress-1790.js 29 // array functions is specification conform (i.e. [[HasProperty]] might return
33 var array = [1,2,3];
41 Object.defineProperty(array, '1', {
42 get: function () { delete array[1]; },
46 assertTrue(array.hasOwnProperty('1'));
47 builtin.apply(array, [callback_wrapper, 'argument']);
48 assertFalse(array.hasOwnProperty('1'));
52 CheckSequence(Array.prototype.every, function() { return true; });
53 CheckSequence(Array.prototype.filter, function() { return true; });
54 CheckSequence(Array.prototype.forEach, function() { return 0; })
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FloatArrayToSizeFilter.java 16 // Takes in an array, returns the size of the array
28 import java.lang.reflect.Array;
45 FrameType floatType = FrameType.array(float.class);
48 .addInputPort("array", Signature.PORT_REQUIRED, floatType)
58 FrameValue arrayFrame = getConnectedInputPort("array").pullFrame().asFrameValues();
59 Object array = arrayFrame.getValue(); local
60 int size = Array.getLength(array);
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 22 import org.apache.harmony.security.utils.Array;
113 sb.append(Array.toString(policyQualifier, " "));
  /libcore/luni/src/main/java/libcore/reflect/
InternalNames.java 19 import java.lang.reflect.Array;
31 return Array.newInstance(componentClass, 0).getClass();
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 30 public class Array {
33 private Array() {
46 * Represents <code>array</code> as <code>String</code>
47 * for printing. Array length can be up to 32767
49 * @param array to be represented as <code>String</code>
51 * @return <code>String</code> representation of the <code>array</code>
53 public static String toString(byte[] array, String prefix) {
66 for (i=0; i<array.length; i++) {
79 sb.append(Byte.toHexString(array[i], false));
81 int currentByte = (0xff & array[i])
    [all...]
  /external/chromium_org/v8/test/webkit/
array-every.js 25 "This test checks the behavior of the every() method on Array objects."
29 function isBigEnough(element, index, array) {
47 debug("3.0 Array Mutation Tests");
50 debug("3.1 Array Element Removal");
51 function isBigEnoughAndPop(element, index, array) {
52 array.pop();
59 debug("3.2 Array Element Changing");
60 function isBigEnoughAndChange(element, index, array) {
61 array[array.length-1-index]= 5
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InspectorFrontendHostCustom.cpp 60 static bool populateContextMenuItems(v8::Local<v8::Array>& itemArray, ContextMenu& menu, v8::Isolate* isolate)
80 v8::Local<v8::Array> subItemsArray = v8::Local<v8::Array>::Cast(subItems);
116 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(info[1]);
118 if (!populateContextMenuItems(array, menu, info.GetIsolate()))
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 76 static PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > buildScrollRectsForLayer(GraphicsLayer* graphicsLayer)
78 RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > scrollRects = TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect>::create();
118 RefPtr<TypeBuilder::Array<double> > transformArray = TypeBuilder::Array<double>::create();
134 RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > scrollRects = buildScrollRectsForLayer(graphicsLayer);
205 PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > InspectorLayerTreeAgent::buildLayerTree()
212 RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > layers = TypeBuilder::Array<TypeBuilder::LayerTree::Layer>::create();
237 void InspectorLayerTreeAgent::gatherGraphicsLayers(GraphicsLayer* root, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers
    [all...]
  /external/chromium_org/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...]
  /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/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/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_util.js 19 * @param {Array.<string>} tags List of tag names.
31 * @param {Array.<string>} tags List of tag names.
49 * @param {Array.<string>} tags List of tag names.
60 * Array of MathML Token Elements.
61 * @type {!Array.<string>}
84 * Array of MathML Layout Schemata.
85 * @type {!Array.<string>}
115 * Array of MathML Script Schemata.
116 * @type {!Array.<string>}
145 * Array of MathML Table and Matrix tokens
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
sync_file_system_custom_bindings.js 24 $Array.forEach(['getFileStatus'], bindFileEntryFunction);
26 // Functions which take in a FileEntry array.
32 $Array.push(fileSystemUrlArray, entries[i].toURL());
37 $Array.forEach(['getFileStatuses'], bindFileEntryArrayFunction);
47 $Array.forEach(['getUsageAndQuota'], bindFileSystemFunction);
62 // Functions which return an array of FileStatusInfo object
79 $Array.push(results, result);
  /external/chromium_org/v8/test/webkit/fast/js/kde/
prototype_length.js 27 shouldBe("Array.prototype.length","0");
36 Array.prototype.length = 6;
37 shouldBe("Array.prototype.length","6");
45 shouldBe("delete Array.prototype.length","false");
51 for (i in Array.prototype) { if (i == "length") foundArrayPrototypeLength = true; }
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsSerializer.java 46 import java.lang.reflect.Array;
134 for (int fi = 0; fi < Array.getLength(fmts); fi++) {
137 for (int si = 0; si < Array.getLength(sizes); si++) {
357 int arrayLen = Array.getLength(keyValue);
365 jsonArray.put(serializeRational((Rational)Array.get(keyValue,i)));
371 jsonArray.put(serializeSize((Size)Array.get(keyValue,i)));
377 jsonArray.put(serializeRect((Rect)Array.get(keyValue,i)));
383 jsonArray.put(serializeFace((Face)Array.get(keyValue, i)));
390 (StreamConfigurationMap)Array.get(keyValue,i)));
397 jsonArray.put(serializeRange((Range)Array.get(keyValue,i)))
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
mathml_store_util.js 29 * @return {Array.<Node>} The resulting node list.
43 * @return {Array.<Node>} The resulting node list.
59 * @return {Array.<Node>} The resulting node list.
73 * @return {Array.<Node>} The resulting node list.
83 * @return {Array.<Node>} The resulting node list.
93 * @return {Array.<Node>} The resulting node list.
103 * @return {Array.<Node>} The resulting node list.
147 * @param {Array.<Node>} nodes A node array.
162 * @param {Array.<Node>} nodes A node array
    [all...]

Completed in 718 milliseconds

1 2 3 4 5 6 78 91011>>