HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 176 - 200 of 239) sorted by null

1 2 3 4 5 6 78 910

  /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++) {
145 // TODO: Serialize an array of faces to JSON.
147 if (Array.getLength(md.get(key)) != 0) {
153 throw new ItsException("Unsupported array type: " + elmtType);
238 Array.set(val, i, ja.getInt(i));
240 Array.set(val, i, (byte)ja.getInt(i));
242 Array.set(val, i, (float)ja.getDouble(i))
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js     [all...]
  /external/chromium_org/chrome/third_party/chromevox/closure/
base.js 303 * @param {Array} provides An array of strings with the names of the objects
305 * @param {Array} requires An array of strings with the names of the objects
514 // NOTE: JSCompiler can't optimize away Array#push.
526 * @type {!Array.<!Function>}
753 * operator in such a way that null returns 'null' and arrays return 'array'.
766 if (value instanceof Array) {
767 return 'array';
784 // We cannot always use constructor == Array or instanceof Array becaus
    [all...]
  /external/chromium/third_party/libevent/
event_rpcgen.py 53 """Takes an array, add indentation to each entry and prints it."""
77 if entry.Array():
112 if entry.Array():
152 if entry.Array():
220 if not entry.Array():
329 def Array(self):
419 if self.Array():
427 if self.Array() and not self._can_be_array:
429 'Entry "%s" cannot be created as an array '
439 'optional and array around line %d' ) %
    [all...]
  /external/chromium_org/third_party/libevent/
event_rpcgen.py 53 """Takes an array, add indentation to each entry and prints it."""
77 if entry.Array():
112 if entry.Array():
152 if entry.Array():
220 if not entry.Array():
329 def Array(self):
419 if self.Array():
427 if self.Array() and not self._can_be_array:
429 'Entry "%s" cannot be created as an array '
439 'optional and array around line %d' ) %
    [all...]
  /external/clang/include/clang/AST/
APValue.h 37 /// [Vector: N * APValue], [Array: N * APValue]
50 Array,
62 /// ArrayIndex - The array index of the next item in the path.
189 bool isArray() const { return Kind == Array; }
285 assert(hasArrayFiller() && "No array filler");
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
bencher 353 def computeMean(array)
355 array.each {
359 sum/array.length
362 def computeGeometricMean(array)
364 array.each {
368 mult**(1.0/array.length)
371 def computeHarmonicMean(array)
372 1.0 / computeMean(array.collect{ | value | 1.0 / value })
375 def computeStdDev(array)
376 case array.lengt
517 def array method in class:Stats
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 367 uint8_t Array[sizeof(word_t)] = {0};
369 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array);
374 memcpy(&EndianValue, Array, sizeof(Array));
  /ndk/sources/host-tools/nawk-20071023/
awk.h 88 typedef struct Array { /* symbol table array */
92 } Array;
95 extern Array *symtab;
108 #define ARR 020 /* this is an array */
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxKbExplorerScript.js 9 goog.typeOf=function(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
10 else if("function"==b&&"undefined"==typeof a.call)return"object";return b};goog.isDef=function(a){return void 0!==a};goog.isNull=function(a){return null===a};goog.isDefAndNotNull=function(a){return null!=a};goog.isArray=function(a){return"array"==goog.typeOf(a)};goog.isArrayLike=function(a){var b=goog.typeOf(a);return"array"==b||"object"==b&&"number"==typeof a.length};goog.isDateLike=function(a){return goog.isObject(a)&&"function"==typeof a.getFullYear};goog.isString=function(a){return"string"==typeof a};
12 goog.UID_PROPERTY_="closure_uid_"+(1E9*Math.random()>>>0);goog.uidCounter_=0;goog.getHashCode=goog.getUid;goog.removeHashCode=goog.removeUid;goog.cloneObject=function(a){var b=goog.typeOf(a);if("object"==b||"array"==b){if(a.clone)return a.clone();var b="array"==b?[]:{},c;for(c in a)b[c]=goog.cloneObject(a[c]);return b}return a};goog.bindNative_=function(a,b,c){return a.call.apply(a.bind,arguments)};
13 goog.bindJs_=function(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var c=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return fun (…)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
heap-checker_unittest.cc     [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
heap-checker_unittest.cc     [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 45 // Array objects
78 "Array": "['isArray', 'length', 'name', 'prototype']",
79 "Array.prototype": "['concat', 'constructor', 'every', 'filter', 'forEach', 'indexOf', 'join', 'lastIndexOf', 'length', 'map', 'pop', 'push', 'reduce', 'reduceRight', 'reverse', 'shift', 'slice', 'some', 'sort', 'splice', 'toLocaleString', 'toString', 'unshift']",
123 "Array",
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
ir.py 305 elif isinstance(node,Array):
310 class Array(genpyx.Array, Node):
318 #return "array %sof"%s
532 if len(self)>1 and type(self[1])==Array: # isinstance ??
534 array = property(get_array) variable in class:Declarator
557 pointer = node.pointer or node.array
570 node = self.pointer or self.array
610 # elif self.array:
611 # pointer = self.array
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 311 // Emit an array containing the elements. The array is externally destructed
314 LValue Array = CGF.EmitLValue(E->getSubExpr());
315 assert(Array.isSimple() && "initializer_list array not a simple lvalue");
316 llvm::Value *ArrayPtr = Array.getAddress();
320 assert(ArrayType && "std::initializer_list constructed from non-array");
373 /// \brief Emit initialization of an array from an initializer list.
381 // DestPtr is an array*. Construct an elementType* by drilling
417 // that it points to the beginning of the array before an
    [all...]
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 99 namespace Array {
  /external/llvm/lib/Analysis/
ValueTracking.cpp 639 // Handle array index arithmetic.
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 249 char *Array;
252 ArgvArray() : Array(NULL) {}
255 delete[] Array;
256 Array = NULL;
262 /// Turn a vector of strings into a nice argv style array of pointers to null
272 Array = new char[(InputArgv.size()+1)*PtrSize];
274 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array << "\n");
286 // Endian safe: Array[i] = (PointerTy)Dest;
287 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
293 (GenericValue*)(Array+InputArgv.size()*PtrSize)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 31 import java.lang.reflect.Array;
285 int arrayLength = Array.getLength(value);
291 size += packSingle(Array.get(value, i), buffer, componentType, nativeType, sizeOnly);
382 Object array; local
398 "Attempting to unpack array (count = %d, element size = %d, bytes " +
403 array = Array.newInstance(componentType, arraySize);
406 Array.set(array, i, elem);
409 // Dynamic size, use an array list
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 34 import org.apache.harmony.security.utils.Array;
553 * the boolean array in the format as returned by
569 * @return the boolean array in the format as returned by
654 * array specifying the name (in string or ASN.1 DER encoded form)
735 * second entry is byte array specifying the name in ASN.1 DER encoded form)
920 * array specifying the name (in string or ASN.1 DER encoded form)
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 30 import java.lang.reflect.Array;
104 * annotations and convert it to an array at the end.
124 /* convert annotation values from HashMap to array */
453 String[] array = (String[]) decodeValue(dexClass, String[].class, dex, reader); local
455 for (String s : array) {
703 Object array = Array.newInstance(componentType, size); local
705 Array.set(array, i, decodeValue(context, componentType, dex, reader));
707 return array;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 10 from _ctypes import Union, Structure, Array
53 """create_string_buffer(aString) -> character array
54 create_string_buffer(anInteger) -> character array
55 create_string_buffer(aString, anInteger) -> character array
298 """create_unicode_buffer(aString) -> character array
299 create_unicode_buffer(anInteger) -> character array
300 create_unicode_buffer(aString, anInteger) -> character array
326 def ARRAY(typ, len):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 46 import array namespace
65 return array.array, (a.typecode, a.tostring())
66 ForkingPickler.register(array.array, reduce_array)
959 def Array(typecode, sequence, lock=True):
960 return array.array(typecode, sequence)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 10 from _ctypes import Union, Structure, Array
53 """create_string_buffer(aString) -> character array
54 create_string_buffer(anInteger) -> character array
55 create_string_buffer(aString, anInteger) -> character array
298 """create_unicode_buffer(aString) -> character array
299 create_unicode_buffer(anInteger) -> character array
300 create_unicode_buffer(aString, anInteger) -> character array
326 def ARRAY(typ, len):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 46 import array namespace
65 return array.array, (a.typecode, a.tostring())
66 ForkingPickler.register(array.array, reduce_array)
959 def Array(typecode, sequence, lock=True):
960 return array.array(typecode, sequence)
    [all...]

Completed in 1964 milliseconds

1 2 3 4 5 6 78 910