HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 726 - 750 of 1473) sorted by null

<<21222324252627282930>>

  /ndk/sources/host-tools/nawk-20071023/
run.c 211 Cell **args; /* pointer to array of arguments after execute */
254 i, NN(y->nval), y->fval, isarr(y) ? "(array)" : NN(y->sval), y->tval) );
451 Cell *array(Node **a, int n) /* a[0] is symtab, a[1] is list of subscripts */ function
461 FATAL("out of memory in array");
468 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "array"))
476 dprintf( ("making %s into an array\n", NN(x->nval)) );
483 z = setsymtab(buf, "", 0.0, STR|NUM, (Array *) x->sval);
538 ap = execute(a[1]); /* array name */
540 dprintf( ("making %s into an array\n", ap->nval) );
561 k = lookup(buf, (Array *) ap->sval)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array namespace
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array namespace
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /art/compiler/dex/quick/arm/
int_arm.cc 23 #include "mirror/array.h"
755 * Generate array load
760 int len_offset = mirror::Array::LengthOffset().Int32Value();
770 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
772 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
844 * Generate array store
850 int len_offset = mirror::Array::LengthOffset().Int32Value();
855 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
857 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
891 /* at this point, reg_ptr points to array, 2 live temps *
    [all...]
  /art/runtime/native/
java_lang_System.cc 20 #include "mirror/array.h"
31 * must not cause "word tearing". Accesses to 64-bit array elements must
172 static void ThrowArrayStoreException_NotAnArray(const char* identifier, mirror::Object* array)
174 std::string actualType(PrettyTypeOf(array));
178 "%s of type %s is not an array", identifier, actualType.c_str());
205 mirror::Array* srcArray = srcObject->AsArray();
206 mirror::Array* dstArray = dstObject->AsArray();
221 // If one of the arrays holds a primitive type the other array must hold the exact same type.
251 LOG(FATAL) << "Unknown primitive array type: " << PrettyTypeOf(srcArray);
284 // we know is assignable to the destination array's component type
    [all...]
  /art/test/201-built-in-exception-detail-messages/src/
Main.java 17 import java.lang.reflect.Array;
105 Object[] array = new String[10]; local
107 array[0] = o;
110 assertEquals("java.lang.Exception cannot be stored in an array of type java.lang.String[]",
115 Object[] array = new C[10][]; local
117 array[0] = o;
120 assertEquals("java.lang.Integer cannot be stored in an array of type Main$C[][]",
125 Object[] array = new Float[10][]; local
127 array[0] = o;
130 assertEquals("Main$C[] cannot be stored in an array of type java.lang.Float[][]"
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.js 114 * @param {Array} devices Array of device information.
230 * @param {Array} devices List of devices.
376 * @param {Array} devices List of devices.
  /external/chromium_org/chrome/browser/resources/task_manager/
preload.js 13 * @param {Array of task} tasks The array of updated task
  /external/chromium_org/chrome/renderer/extensions/
event_bindings.cc 278 v8::Handle<v8::Array> array(
279 v8::Array::New(args.GetIsolate(), matched_event_filters.size()));
283 array->Set(v8::Integer::New(i++), v8::Integer::New(*it));
285 args.GetReturnValue().Set(array);
  /external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/
search.js 56 * Array of the search results.
57 * @type {Array.<Element>}
62 * Array of the navigation panes.
63 * @type {Array.<Element>}
305 * Populates the panes array.
  /external/chromium_org/content/public/test/
render_view_test.cc 268 v8::Handle<v8::Array> array = value.As<v8::Array>();
269 if (array->Length() != 4)
274 v8::Local<v8::Value> value = array->Get(index);
  /external/chromium_org/content/test/data/indexeddb/
quota_test.js 46 data = Array(1+len).join("X");
  /external/chromium_org/remoting/webapp/
ui_mode.js 62 * @param {Array.<string>} modes The modes to check for.
163 // Get the first element of a dictionary or array, without needing to know
222 * @param {Array.<MutationRecord>} mutations The set of mutations affecting
228 /** @type {Array.<Element>} */
230 /** @type {Array.<Element>} */
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
PageScriptDebugServer.cpp 119 v8::Handle<v8::Array> scriptsArray = v8::Handle<v8::Array>::Cast(value);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ConsoleMessage.cpp 207 RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject> > jsonArgs = TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>::create();
InspectorTimelineAgent.h 150 virtual void stop(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> >& events);
321 RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> > m_bufferedEvents;
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui.js 172 Array.prototype.forEach.call(document.querySelectorAll("time.relative"), function(time) {
240 Array.prototype.forEach.call(this.querySelectorAll('.status-content'), function(node) {
  /external/chromium_org/tools/page_cycler/common/
start.js 7 // The __pages is assumed an array which containing the directories for
12 (__pages instanceof Array);
  /external/chromium_org/ui/keyboard/resources/webui/
api_adapter.js 23 * An array to save callbacks of each request.
24 * @type {Array.<function(Object)>}
  /external/chromium_org/v8/src/
harmony-math.js 54 InstallFunctions($Math, DONT_ENUM, $Array(
  /external/chromium_org/v8/test/intl/break-iterator/
property-override.js 30 // Object.defineProperty(Array.prototype, 'locale', {
  /external/chromium_org/v8/test/intl/collator/
property-override.js 30 // Object.defineProperty(Array.prototype, 'locale', {
  /external/chromium_org/v8/test/intl/date-format/
format-is-bound.js 31 // Array we want to iterate, actual dates are not important.
  /external/chromium_org/v8/test/intl/number-format/
format-is-bound.js 31 // Array we want to iterate, actual numbers are not important.
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-closures-with-eval.js 45 var a = new Array(n);

Completed in 613 milliseconds

<<21222324252627282930>>