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

1 2 3 4 5 67 8 910

  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 241 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root);
242 if (!Array) {
243 ErrorMessage = "Expected array.";
246 for (llvm::yaml::SequenceNode::iterator AI = Array->begin(),
247 AE = Array->end();
  /external/clang/test/Parser/
declarators.c 24 // Hard case for array decl, not Array[*].
25 int Array[*(int*)P+A];
  /external/deqp/framework/common/
tcuFormatUtil.hpp 171 // Array formatters.
174 class Array
180 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {}
194 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
211 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);
267 /** Format array contents. */
269 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end)
271 return Format::Array<Iterator>(begin, end);
274 /** Format array contents. */
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONArray.java 29 import java.lang.reflect.Array;
175 * @throws JSONException If not an array.
197 * Construct a JSONArray from an array
198 * @throws JSONException If not an array.
200 public JSONArray(Object array) throws JSONException {
202 if (array.getClass().isArray()) {
203 int length = Array.getLength(array);
205 this.put(Array.get(array, i))
    [all...]
  /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:
BitstreamReader.h 366 uint8_t Array[sizeof(word_t)] = {0};
368 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array);
373 memcpy(&EndianValue, Array, sizeof(Array));
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 38 unsigned Array[3];
211 LastIssued.Array[i] += Increment.Array[i];
212 Sum += Increment.Array[i];
272 if (Required.Array[i] <= WaitedOn.Array[i])
278 unsigned Value = LastIssued.Array[i] - Required.Array[i];
281 Counts.Array[i] = std::min(Value, WaitCounts.Array[i])
    [all...]
  /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...]
AnnotationAccess.java 29 import java.lang.reflect.Array;
103 * annotations and convert it to an array at the end.
123 /* convert annotation values from HashMap to array */
440 String[] array = (String[]) decodeValue(dexClass, String[].class, dex, reader); local
442 for (String s : array) {
674 Object array = Array.newInstance(componentType, size); local
676 Array.set(array, i, decodeValue(context, componentType, dex, reader));
678 return array;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extension.java 35 import org.apache.harmony.security.utils.Array;
356 sb.append(Array.toString(extnValue, prefix));
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromePageScript.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.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...]
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.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/chrome/third_party/chromevox/third_party/closure-library/closure/goog/
base.js 374 * @param {Array} provides An array of strings with the names of the objects
376 * @param {Array} requires An array of strings with the names of the objects
561 // NOTE: JSCompiler can't optimize away Array#push.
573 * @type {!Array.<!Function>}
799 * operator in such a way that null returns 'null' and arrays return 'array'.
812 if (value instanceof Array) {
813 return 'array';
830 // We cannot always use constructor == Array or instanceof Array becaus
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/background/js/
test_util.js 137 * Returns an array with the files currently selected in the file manager.
141 * @return {Array.<string>} Array of selected files.
157 * Returns an array with the files on the file manager's file list.
160 * @return {Array.<Array.<string>>} Array of rows.
184 * @param {Array.<string>=} opt_styleNames List of CSS property name to be
186 * @return {Array.<{attributes:Object.<string, string>, text:string,
196 // The return value of querySelectorAll is not an array
    [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.
188 bool isArray() const { return Kind == Array; }
284 assert(hasArrayFiller() && "No array filler");
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 61 CJS_Value::CJS_Value(v8::Isolate* isolate, CJS_Array& array):m_isolate(isolate)
63 operator = (array);
146 CJS_Value::operator v8::Handle<v8::Array>() const
149 return v8::Handle<v8::Array>::Cast(JS_ToObject(m_pValue));
150 return v8::Handle<v8::Array>();
215 void CJS_Value::operator = (CJS_Array & array)
217 m_pValue = JS_NewObject2(m_isolate,(v8::Handle<v8::Array>)array);
264 FX_BOOL CJS_Value::ConvertToArray(CJS_Array &array) const
268 array.Attach(JS_ToArray(m_pValue));
    [all...]
  /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...]
  /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 */
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsSerializer.java 46 import java.lang.reflect.Array;
134 for (int fi = 0; fi < Array.getLength(fmts); fi++) {
137 for (int si = 0; si < Array.getLength(sizes); si++) {
357 int arrayLen = Array.getLength(keyValue);
365 jsonArray.put(serializeRational((Rational)Array.get(keyValue,i)));
371 jsonArray.put(serializeSize((Size)Array.get(keyValue,i)));
377 jsonArray.put(serializeRect((Rect)Array.get(keyValue,i)));
383 jsonArray.put(serializeFace((Face)Array.get(keyValue, i)));
390 (StreamConfigurationMap)Array.get(keyValue,i)));
397 jsonArray.put(serializeRange((Range)Array.get(keyValue,i)))
    [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/deqp/modules/glshared/
glsVertexArrayTests.hpp 23 * \brief Vertex array and buffer tests
52 class Array
150 virtual ~Array (void) {}
168 class ContextArray : public Array
176 virtual void bindIndexArray (Array::Target storage);
181 virtual Array::Target getTarget (void) const { return m_target; }
182 virtual Array::InputType getInputType (void) const { return m_inputType; }
183 virtual Array::OutputType getOutputType (void) const { return m_outputType; }
184 virtual Array::Storage getStorageType (void) const { return m_storage; }
191 static deUint32 targetToGL (Array::Target target)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 52 import java.lang.reflect.Array;
218 // android.colorCorrection.colorCorrectionGains (float x 4 array)
246 * Format an array into a string with the {@code badIndex} highlighted with {@code **}.
253 private static <T> String formatArray(T array, int badIndex) {
258 int len = Array.getLength(array);
261 Object elem = Array.get(array, i);
292 assertEquals("Array lengths must be equal",
293 Array.getLength(expected), Array.getLength(actual))
    [all...]

Completed in 889 milliseconds

1 2 3 4 5 67 8 910