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

<<11121314151617181920>>

  /external/chromium_org/v8/test/webkit/fast/js/
array-slow-put.js 25 "Tests that defining a setter on the Array prototype works."
29 Array.prototype.__defineSetter__("3", function() { ouches++; });
  /external/chromium_org/v8/test/webkit/
isPrototypeOf.js 29 shouldBeTrue("Array.prototype.isPrototypeOf(new Array())");
array-enumerators-functions.js 25 "This test checks the behavior of the various array enumeration functions in certain edge case scenarios"
30 function(elem, index, array) { return currentFunc.call(this, elem, index, array); },
31 function(elem, index, array) { return currentFunc.call(this, elem, index, array); },
32 function(elem, index, array) { return currentFunc.call(this, elem, index, array); },
33 function(elem, index, array) { return currentFunc.call(this, elem, index, array); },
34 function(prev, elem, index, array) { return currentFunc.call(this, elem, index, array); }
    [all...]
  /external/easymock/src/org/easymock/internal/
Invocation.java 22 import java.lang.reflect.Array;
65 private static Object[] createObjectArray(Object array) {
66 if (array instanceof Object[]) {
67 return (Object[]) array;
69 Object[] result = new Object[Array.getLength(array)];
70 for (int i = 0; i < Array.getLength(array); i++) {
71 result[i] = Array.get(array, i);
    [all...]
  /external/eigen/lapack/
clacgv.f 26 * .. Array Arguments ..
50 *> X is COMPLEX array, dimension
85 * .. Array Arguments ..
zlacgv.f 26 * .. Array Arguments ..
50 *> X is COMPLEX*16 array, dimension
85 * .. Array Arguments ..
  /external/javassist/src/main/javassist/bytecode/annotation/
MemberValue.java 23 import java.lang.reflect.Array;
  /external/llvm/unittests/ADT/
MakeUniqueTest.cpp 70 TEST(MakeUniqueTest, Array) {
  /external/skia/src/animator/
SkDisplayTypes.h 89 DECLARE_DISPLAY_MEMBER_INFO(Array);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
FloatArrayToStrFilter.java 16 // Takes in an array, returns the size of the array
28 import java.lang.reflect.Array;
46 FrameType floatType = FrameType.array(float.class);
49 .addInputPort("array", Signature.PORT_REQUIRED, floatType)
59 FrameValue arrayFrame = getConnectedInputPort("array").pullFrame().asFrameValues();
60 float[] array = (float[]) arrayFrame.getValue(); local
61 String outstr = Arrays.toString(array);
  /frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
VMRuntime_Delegate.java 33 // Dalvik has 32bit pointers, the array header is 16bytes plus 4bytes for dlmalloc,
34 // allocations are 8byte aligned so having 4bytes of array data avoids padding.
37 return java.lang.reflect.Array.newInstance(componentType, size);
74 throw new IllegalArgumentException("Can't allocate an array of void");
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 142 * Returns the next attribute in the stream in the form of a byte array.
144 * @return the attribute as a byte array. {@code null} if the read returns
282 * java.sql.Array}.
284 * @return the next attribute as an {@code Array}. {@code null} if the value
288 * @see Array
290 public Array readArray() throws SQLException;
SQLOutput.java 134 * Write an array of bytes into the output stream.
137 * the array of bytes to write.
273 * Write an SQL {@code Array} value into the output stream.
276 * the {@code java.sql.Array} object to write.
279 * @see Array
281 public void writeArray(Array theArray) throws SQLException;
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationMember.java 26 import java.lang.reflect.Array;
40 * <li> one-dimensional array of the above
62 * Tag description of an array value type.
64 protected static final char ARRAY = '[';
114 tag = ARRAY;
168 if (tag == ARRAY) {
171 int len = Array.getLength(value);
174 sb.append(Array.get(value, i));
201 if (tag == ARRAY) {
219 * @return true if the value is array and is equal to specified object
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
proto.h 104 extern Array *makesymtab(int);
107 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *);
109 extern void rehash(Array *);
110 extern Cell *lookup(const char *, Array *);
159 extern Cell *array(Node **, int);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 7 _array_type = type(Array)
18 # if typ is array
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 7 _array_type = type(Array)
18 # if typ is array
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 594 void InspectorCSSAgent::getMediaQueries(ErrorString* errorString, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> >& medias)
596 medias = TypeBuilder::Array<TypeBuilder::CSS::CSSMedia>::create();
609 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries)
644 RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> > pseudoElements = TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches>::create();
660 RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> > entries = TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry>::create();
696 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >& style
    [all...]
  /external/pdfium/fpdfsdk/include/jsapi/
fxjs_v8.h 97 v8::Handle<v8::Array> JS_GetObjectElementNames(v8::Handle<v8::Object> pObj);
105 unsigned JS_PutArrayElement(v8::Handle<v8::Array> pArray,unsigned index,v8::Handle<v8::Value> pValue,FXJSVALUETYPE eType);
106 v8::Handle<v8::Value> JS_GetArrayElemnet(v8::Handle<v8::Array> pArray,unsigned index);
107 unsigned JS_GetArrayLength(v8::Handle<v8::Array> pArray);
111 v8::Handle<v8::Array> JS_NewArray(IJS_Runtime* pJSRuntime);
117 v8::Handle<v8::Value> JS_NewObject2(IJS_Runtime* pJSRuntime,v8::Handle<v8::Array> pObj);
130 v8::Handle<v8::Array> JS_ToArray(v8::Handle<v8::Value> pValue);
  /art/runtime/
transaction.cc 84 void Transaction::RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) {
85 DCHECK(array != nullptr);
86 DCHECK(array->IsArrayInstance());
87 DCHECK(!array->IsObjectArray());
89 ArrayLog& array_log = array_logs_[array];
140 // TODO we may not need to restore array allocated during this transaction. Or we could directly
195 typedef std::pair<mirror::Array*, mirror::Array*> ArrayPair;
199 mirror::Array* old_root = it.first
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_tasks.js 26 * @type {Array.<Object>}
86 * @param {Array.<Entry>} entries List of file entries.
87 * @param {Array.<string>=} opt_mimeTypes List of MIME types for each
114 * @param {Array.<Object>} tasks The tasks.
133 * @type {Array.<string>}
149 * @type {Array.<string>}
158 * @type {Array.<string>}
168 * @param {Array.<Entry>} entries The entries to be opened.
207 * @param {Array.<Object>} tasks The tasks.
300 * @param {function(boolean, Array.<string>)=} opt_callback Called when th
    [all...]
  /external/chromium_org/ui/webui/resources/js/
webui_resource_test.js 76 * @param {!Array} expected The expected result.
77 * @param {!Array} observed The actual result.
80 var v1 = Array.prototype.slice.call(expected);
81 var v2 = Array.prototype.slice.call(observed);
124 * @type {Array.<string>} List of function names for tests to run.
  /external/chromium_org/v8/src/
json.js 9 // var $Array = global.Array;
52 throw MakeTypeError('circular_structure', $Array());
82 throw MakeTypeError('circular_structure', $Array());
193 // Deduplicate replacer array items.
224 InstallFunctions($JSON, DONT_ENUM, $Array(
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 57 extern "C" mirror::Array* artAllocArrayFromCode##suffix##suffix2( \
65 extern "C" mirror::Array* artAllocArrayFromCodeResolved##suffix##suffix2( \
73 extern "C" mirror::Array* artAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
81 extern "C" mirror::Array* artCheckAndAllocArrayFromCode##suffix##suffix2( \
92 extern "C" mirror::Array* artCheckAndAllocArrayFromCodeWithAccessCheck##suffix##suffix2( \
  /art/runtime/native/
java_lang_System.cc 20 #include "mirror/array.h"
32 * cause "word tearing". Accesses to 64-bit array elements may be two 32-bit operations.
36 static void ThrowArrayStoreException_NotAnArray(const char* identifier, mirror::Object* array)
38 std::string actualType(PrettyTypeOf(array));
42 "%s of type %s is not an array", identifier, actualType.c_str());
72 mirror::Array* srcArray = srcObject->AsArray();
73 mirror::Array* dstArray = dstObject->AsArray();
124 LOG(FATAL) << "Unknown array type: " << PrettyTypeOf(srcArray);
128 // If one of the arrays holds a primitive type the other array must hold the exact same type.
150 // Template to convert general array to that of its specific primitive type
    [all...]

Completed in 1282 milliseconds

<<11121314151617181920>>