/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/third_party/WebKit/Source/core/inspector/ |
InspectorLayerTreeAgent.cpp | 99 RefPtr<TypeBuilder::Array<double> > transformArray = TypeBuilder::Array<double>::create(); 111 void gatherGraphicsLayers(GraphicsLayer* root, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) 182 PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > InspectorLayerTreeAgent::buildLayerTree() 188 RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > layers = TypeBuilder::Array<TypeBuilder::LayerTree::Layer>::create(); 271 void InspectorLayerTreeAgent::compositingReasons(ErrorString* errorString, const String& layerId, RefPtr<TypeBuilder::Array<String> >& reasonStrings) 312 reasonStrings = TypeBuilder::Array<String>::create(); 369 void InspectorLayerTreeAgent::profileSnapshot(ErrorString* errorString, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >& outTimings [all...] |
CodeGeneratorInspectorStrings.py | 474 return getPropertyValueImpl<PassRefPtr<JSONArray>, RefPtr<JSONArray>, JSONArray*>(object, name, valueFound, protocolErrors, 0, AsMethodBridges::asArray, "Array"); 629 class Array : public JSONArrayBase { 631 Array() { } 634 COMPILE_ASSERT(sizeof(JSONArray) == sizeof(Array<T>), cannot_cast); 649 static PassRefPtr<Array<T> > create() 651 return adoptRef(new Array<T>()); 654 static PassRefPtr<Array<T> > runtimeCast(PassRefPtr<JSONValue> value) 656 RefPtr<JSONArray> array; 657 bool castRes = value->asArray(&array); 660 assertCorrectValue(array.get()) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
externs.js | 67 /** @type {!Array.<!Node>} */ this.addedNodes = []; 68 /** @type {!Array.<!Node>} */ this.removedNodes = []; 73 * @param {function(!Array.<!WebKitMutation>)} callback 93 * @this {Array.<T>} 96 Array.prototype.remove = function(value, onlyFirst) {} 99 * @this {Array.<T>} 102 Array.prototype.keySet = function() {} 105 * @return {!Array.<!T>} 106 * @this {Array.<T>} 109 Array.prototype.rotate = function(index) { [all...] |
/external/chromium_org/v8/src/ |
array-iterator.js | 32 // var $Array = global.Array; 46 function CreateArrayIterator(array, kind) { 47 var object = ToObject(array); 63 var array = GET_PRIVATE(iterator, iteratorObjectSymbol); 64 if (!array) { 66 ['Array Iterator.prototype.next']); 71 var length = TO_UINT32(array.length); 83 return CreateIteratorResultObject(array[index], false); 86 return CreateIteratorResultObject([index, array[index]], false) [all...] |
harmony-array.js | 32 // var $Array = global.Array; 40 ["Array.prototype.find"]); 43 var array = ToObject(this); 44 var length = ToInteger(array.length); 62 if (i in array) { 63 var element = array[i]; 64 if (%_CallFunction(thisArg, element, i, array, predicate)) { 78 ["Array.prototype.findIndex"]); 81 var array = ToObject(this) [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
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...] |
/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...] |
prototypes.js | 30 shouldBe("([]).__proto__", "Array.prototype"); 36 shouldBe("Array.prototype.__proto__", "Object.prototype"); 41 shouldBe("Array.__proto__", "Object.__proto__"); 48 shouldBe("Object.getPrototypeOf([])", "Array.prototype"); 54 shouldBe("Object.getPrototypeOf(Array.prototype)", "Object.prototype"); 59 shouldBe("Object.getPrototypeOf(Array)", "Object.__proto__"); 66 shouldBeTrue("Array.prototype.isPrototypeOf([])"); 72 shouldBeTrue("Object.prototype.isPrototypeOf(Array.prototype)"); 76 shouldBeTrue("Object.__proto__.isPrototypeOf(Array)");
|
/external/v8/test/mjsunit/regress/ |
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...] |
/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/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/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/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; }
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
array-iterator.js | 31 assertTrue(Array.prototype.hasOwnProperty('entries')); 32 assertTrue(Array.prototype.hasOwnProperty('values')); 33 assertTrue(Array.prototype.hasOwnProperty('keys')); 35 assertFalse(Array.prototype.propertyIsEnumerable('entries')); 36 assertFalse(Array.prototype.propertyIsEnumerable('values')); 37 assertFalse(Array.prototype.propertyIsEnumerable('keys')); 46 var array = ['a', 'b', 'c']; 47 var iterator = array.values(); 53 array.push('d'); 59 var array = ['a', 'b', 'c'] [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8Utilities.cpp | 53 // Use an array to hold dependents. It works like a ref-counted scheme. 59 cache = v8::Array::New(isolate); 63 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache); 77 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(value); local 78 length = array->Length(); 86 // Validate the passed array of transferrables. 148 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
array-feedback.js | 43 // support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6,7,8)); 91 // array calls (as long as the call is made through an IC, and not 95 return Array(); 109 return Array(arg); 126 return Array(arg1, arg2, arg3); 145 name = "Array"; 158 return Array(); 165 var oldArray = this.Array; 166 this.Array = function() { return ["hi"]; }; 169 this.Array = oldArray [all...] |
/external/llvm/lib/Support/ |
SmallPtrSet.cpp | 31 // Install the new array. Clear all the buckets to empty. 54 // If more than 3/4 of the array is full, grow. 57 // If fewer of 1/8 of the array is empty (meaning that many are filled with 105 const void *const *Array = CurArray; 109 if (Array[Bucket] == Ptr) 110 return Array+Bucket; 115 if (Array[Bucket] == getEmptyMarker()) 116 return Tombstone ? Tombstone : Array+Bucket; 120 if (Array[Bucket] == getTombstoneMarker() && !Tombstone) 121 Tombstone = Array+Bucket; // Remember the first tombstone found [all...] |