HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 151 - 175 of 230) sorted by null

1 2 3 4 5 67 8 910

  /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/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
78 Returns a ctypes array allocated from shared memory
108 def Array(typecode_or_type, size_or_initializer, **kwds):
134 elif isinstance(obj, ctypes.Array):
155 if isinstance(obj, ctypes.Array):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
78 Returns a ctypes array allocated from shared memory
108 def Array(typecode_or_type, size_or_initializer, **kwds):
134 elif isinstance(obj, ctypes.Array):
155 if isinstance(obj, ctypes.Array):
  /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)
  /external/chromium_org/v8/test/mjsunit/
array-tostring.js 28 // Array's toString should call the object's own join method, if one exists and
40 // On an Array object.
56 assertEquals("[object Array]", a3.toString());
60 a4.__proto__ = { toString: Array.prototype.toString };
61 // No join on Array.
62 assertEquals("[object Array]", a4.toString());
65 // On a non-Array object.
67 // Default looks-like-an-array case.
69 toString: Array.prototype.toString,
70 join: Array.prototype.join}
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
arguments.js 59 Array.prototype.push.call(arguments, a);
64 Array.prototype.push.call(arguments, a);
69 Array.prototype.push.apply(arguments, arguments);
74 Array.prototype.push.apply(arguments, arguments);
  /external/v8/test/mjsunit/
array-tostring.js 28 // Array's toString should call the object's own join method, if one exists and
40 // On an Array object.
56 assertEquals("[object Array]", a3.toString());
60 a4.__proto__ = { toString: Array.prototype.toString };
61 // No join on Array.
62 assertEquals("[object Array]", a4.toString());
65 // On a non-Array object.
67 // Default looks-like-an-array case.
69 toString: Array.prototype.toString,
70 join: Array.prototype.join}
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 32 import java.lang.reflect.Array;
191 // android.colorCorrection.colorCorrectionGains (float x 4 array)
219 assertEquals(Array.getLength(expected), Array.getLength(actual));
221 int len = Array.getLength(expected);
223 assertEquals(Array.get(expected, i), Array.get(actual, i));
228 assertFalse("Use checkKeyGetAndSetArray to compare array Keys", type.isArray());
535 // android.scaler.availableFormats (int x n array)
580 // android.statistics.faces (Face x n array)
    [all...]
  /art/test/003-omnibus-opcodes/src/
Main.java 46 Array.run();
  /dalvik/tests/003-omnibus-opcodes/src/
Main.java 55 Array.run();
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 127 class Array(Node,Parser):
298 node = Array()
302 self.parse_error(lexer ,"array of functions" )
311 self.parse_error(lexer ,"function returns an array" )
genpyx.py 180 elif isinstance(node,Array):
185 class Array(object):
316 #elif self.array:
317 #pointer = self.array
354 if type(child)==Array and not child.has_size():
355 # mutate this mystery array into a pointer XX method: Array.to_pointer()
  /external/chromium_org/v8/src/
runtime.js 45 var $Array = global.Array;
435 // array. This is the fast case. If this fails, we do the slow case
671 // NOTE: Setting the prototype for Array must take place as early as
672 // possible due to code generation for array literals. When
673 // generating code for a array literal a boilerplate array is created
676 %FunctionSetPrototype($Array, new $Array(0));
  /external/chromium_org/v8/test/cctest/
test-types.cc 124 Array(Type::Array(), isolate),
133 array = isolate->factory()->NewJSArray(20);
139 ArrayConstant1 = handle(Type::Constant(array), isolate);
140 ArrayConstant2 = handle(Type::Constant(array), isolate);
160 Handle<Type> Array;
179 Handle<JSArray> array; member in class:HandlifiedTypes
248 CHECK(*T.array == AsConstant(*T.ArrayConstant1));
249 CHECK(*T.array == AsConstant(*T.ArrayConstant2));
304 CheckSub(T.Array, T.Object)
    [all...]
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 242 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root);
243 if (Array == NULL) {
244 ErrorMessage = "Expected array.";
247 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(),
248 AE = Array->end();
  /external/clang/test/Parser/
declarators.c 24 // Hard case for array decl, not Array[*].
25 int Array[*(int*)P+A];
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 94 Array = 3, // A sequence of fields, next field species elt encoding.
96 Blob = 5 // 32-bit aligned array of 8-bit characters.
122 case Array:
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 38 unsigned Array[3];
206 LastIssued.Array[i] += Increment.Array[i];
207 Sum += Increment.Array[i];
267 if (Required.Array[i] <= WaitedOn.Array[i])
273 unsigned Value = LastIssued.Array[i] - Required.Array[i];
276 Counts.Array[i] = std::min(Value, WaitCounts.Array[i])
    [all...]
  /external/v8/src/
runtime.js 45 var $Array = global.Array;
441 // array. This is the fast case. If this fails, we do the slow case
662 // NOTE: Setting the prototype for Array must take place as early as
663 // possible due to code generation for array literals. When
664 // generating code for a array literal a boilerplate array is created
667 %FunctionSetPrototype($Array, new $Array(0));
  /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...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extension.java 34 import org.apache.harmony.security.utils.Array;
347 sb.append(Array.toString(extnValue, prefix));
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsSerializer.java 28 import java.lang.reflect.Array;
110 for (int i = 0; i < Array.getLength(md.get(key)); i++) {
121 for (int i = 0; i < Array.getLength(md.get(key)); i++) {
132 for (int i = 0; i < Array.getLength(md.get(key)); i++) {
142 throw new ItsException("Unsupported array type: " + elmtType);
227 Array.set(val, i, ja.getInt(i));
229 Array.set(val, i, (byte)ja.getInt(i));
231 Array.set(val, i, (float)ja.getDouble(i));
233 Array.set(val, i, ja.getLong(i));
235 Array.set(val, i, ja.getDouble(i))
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js     [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
object-observe.js 80 assertTrue(r instanceof Array)
502 __proto__: Array.prototype,
556 __proto__: Array.prototype,
564 Array.prototype.push.apply(this, cut);
568 Array.prototype.push.apply(this, cut);
967 // Observing array length (including truncation)
978 Array.observe(arr, observer2.callback);
980 Array.observe(arr2, observer2.callback);
982 Array.observe(arr3, observer2.callback);
1143 var array = [1, 2]; variable
1165 var array = [1, 2]; variable
1179 var array = [1, 2]; variable
1194 var array = [1, 2]; variable
1208 var array = [1, 2, 3]; variable
1221 var array = [3, 2, 1]; variable
1253 var array = [1, 2]; variable
1274 var array = [1, 2]; variable
1296 var array = [1, 2]; variable
1323 var array = [1, 2, 3]; variable
1360 var array = [0]; variable
    [all...]

Completed in 2669 milliseconds

1 2 3 4 5 67 8 910