HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 1076 - 1100 of 1268) sorted by null

<<41424344454647484950>>

  /external/doclava/src/com/google/doclava/
Doclava.java 33 import java.lang.reflect.Array;
1474 Object[] array = (Object[]) o; local
    [all...]
  /external/eigen/blas/testing/
cblat3.f 347 9991 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
390 * .. Array Arguments ..
675 * .. Array Arguments ..
    [all...]
zblat3.f 348 9991 FORMAT( ' AMEND DATA FILE OR INCREASE ARRAY SIZES IN PROGRAM',
391 * .. Array Arguments ..
676 * .. Array Arguments ..
    [all...]
dblat1.f     [all...]
  /external/mesa3d/src/mesa/main/
attrib.c     [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_save_api.c     [all...]
  /external/v8/benchmarks/spinning-balls/
v.js 121 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ],
216 this.pauses = new Array(this.size);
  /external/v8/benchmarks/
splay.js 52 array : [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ],
272 * @return {Array<*>} An array containing all the keys of tree's nodes.
  /external/v8/src/debug/
debug.js 12 var GlobalArray = global.Array;
442 // Allocate array for caching the columns where the actual source starts.
1054 // Add an Array of break points hit if any.
    [all...]
  /external/v8/src/js/
object-observe.js 15 var GlobalArray = global.Array;
505 function BeginPerformSplice(array) {
506 var objectInfo = ObjectInfoGet(array);
512 function EndPerformSplice(array) {
513 var objectInfo = ObjectInfoGet(array);
519 function EnqueueSpliceRecord(array, index, removed, addedCount) {
520 var objectInfo = ObjectInfoGet(array);
526 object: array,
  /external/v8/test/mjsunit/es6/
classes.js 713 var arr = new Array(100);
  /external/v8/test/mjsunit/harmony/
dataview-accessors.js 100 array, frontPaddingNum, littleEndian, start, length) {
102 array.reverse();
103 var paddingArray = new Array(frontPaddingNum);
104 arrayBuffer = (new Uint8Array(paddingArray.concat(array))).buffer;
107 array.reverse(); // restore the array.
110 function runIntegerTestCases(isTestingGet, array, start, length) {
111 createDataView(array, 0, true, start, length);
194 function testFloat(isTestingGet, func, array, start, expected) {
196 createDataView(array, 0, true, start)
    [all...]
  /external/v8/test/webkit/resources/
json2-es5-compat.js 19 value any JavaScript value, usually an object or array.
23 function or an array of strings.
64 If the replacer parameter is an array of strings, then it will be
66 such that only members with keys listed in the replacer array are
100 This method parses a JSON text to produce an object or array.
274 // If the type is 'object', we might be dealing with an object or an array or
286 // Make an array to hold the partial results of stringifying this object value.
291 // Is the value an array?
293 if (Object.prototype.toString.apply(value) === '[object Array]') {
295 // The value is an array. Stringify every element. Use null as a placeholde
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 29 import java.lang.reflect.Array;
842 * Return an array of the spans of the specified type that overlap
852 * Return an array of the spans of the specified type that overlap
861 * @return Array of the spans. Empty array if no results are found.
875 T[] ret = (T[]) Array.newInstance(kind, count);
    [all...]
  /frameworks/base/tools/aapt2/
ResourceParser.cpp 329 { u"array", std::mem_fn(&ResourceParser::parseArray) },
332 { u"integer-array", std::mem_fn(&ResourceParser::parseIntegerArray) },
337 { u"string-array", std::mem_fn(&ResourceParser::parseStringArray) },
1059 std::unique_ptr<Array> array = util::make_unique<Array>(); local
    [all...]
  /frameworks/native/opengl/libagl/
array.cpp 133 #pragma mark Array fetchers
434 void enableDisableClientState(ogles_context_t* c, GLenum array, bool enable)
438 switch (array) {
667 // batch is culled. We also need 2 extra vertices in the array, because
948 #pragma mark Array compilers
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectInputStream.java 31 import java.lang.reflect.Array;
436 * and the invocation of that method returns an array, then readUnshared
437 * returns a shallow clone of that array; this guarantees that the returned
438 * array object is unique and cannot be obtained a second time from an
589 * <code>Class</code> object. Once returned, if the class is not an array
1667 Object array = null; local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h 96 \tparam Allocator Allocator type for allocating memory of object, array and string.
262 //! Create string reference from \c const character array
265 a \c const character array. It has better performance than
267 from the array length, and also supports strings containing null
272 \param str Constant character array, lifetime assumed to be longer
330 //! Disallow construction from non-const array
418 \tparam Allocator Allocator type for allocating memory of object, array and string.
431 typedef GenericValue* ValueIterator; //!< Value iterator for iterating in array.
432 typedef const GenericValue* ConstValueIterator; //!< Constant value iterator for iterating in array.
571 /*! Need to destruct elements of array, members of object, or copy-string.
    [all...]
  /art/compiler/optimizing/
intrinsics_x86_64.cc 28 #include "mirror/array-inl.h"
908 // Location of reference to data array.
    [all...]
  /art/imgdiag/
imgdiag.cc 250 size_t data_offset = mirror::Array::DataOffset(component_size).Uint32Value();
252 os << tabs << "Dirty array element " << (i - data_offset) / component_size << "\n";
    [all...]
  /art/runtime/native/
sun_misc_Unsafe.cc 21 #include "mirror/array.h"
194 return mirror::Array::DataOffset(Primitive::ComponentSize(primitive_type)).Int32Value();
305 static void copyToArray(jlong srcAddr, mirror::PrimitiveArray<T>* array,
313 array->Set(i + of, *(src + i));
318 static void copyFromArray(jlong dstAddr, mirror::PrimitiveArray<T>* array,
326 *(dst + i) = array->Get(i + of);
357 ThrowIllegalAccessException("not a primitive array");
388 ThrowIllegalAccessException("not a primitive array");
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 57 token_names = Array.new(4, '') + %w(VAR NUMBER EQ PLUS MINUS MULT DIV)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 210 than one children -- functions like an array of
312 class BaseTree < ::Array
424 stack.push( Array[ *cursor ] ) unless cursor.empty?
1240 class RewriteRuleElementStream # < Array
1251 if elements.instance_of?( Array )
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearchdomain/
layer1.py 86 + `simple`: search all `text` and `text-array` fields for the
138 + `buckets` specifies an array of the facet values or ranges to count.
178 `text` or `text-array` fields. Each specified field must be
248 + `fields`: An array of the fields to search when no fields are
250 this option is not specified, all text and text-array fields are
259 array` fields. Valid for: `simple`, `structured`, `lucene`, and
261 + `operators`: An array of the operators or special characters you want
283 + `phraseFields`: An array of the `text` or `text-array` fields you
293 `text` or `text-array` field and an optional numeric value greate
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 757 case DeclaratorChunk::Array:
    [all...]

Completed in 1560 milliseconds

<<41424344454647484950>>