| /external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
| MessageNanoPrinter.java | 33 import java.lang.reflect.Array; 82 * @param object the value to print. May in fact be a primitive value or byte array and not a 122 // bytes is special since it's not repeated, but is represented by an array 126 int len = value == null ? 0 : Array.getLength(value); 128 Object elem = Array.get(value, i); 236 * Appends a quoted byte array to the provided {@code StringBuffer}.
|
| /libcore/luni/src/test/java/dalvik/system/ |
| VMRuntimeTest.java | 19 import java.lang.reflect.Array; 30 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, -1); local 36 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, Integer.MIN_VALUE); local 43 Object array = VMRuntime.getRuntime().newNonMovableArray(componentType, i); local 44 assertTrue(array.getClass().isArray()); 45 assertEquals(array.getClass().getComponentType(), componentType); 46 assertEquals(Array.getLength(array), i); 53 Object array = VMRuntime.getRuntime().newNonMovableArray(null, 0); local 60 Object array = VMRuntime.getRuntime().newNonMovableArray(void.class, 0) local 84 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, -1); local 90 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, Integer.MIN_VALUE); local 97 Object array = VMRuntime.getRuntime().newUnpaddedArray(componentType, i); local 107 Object array = VMRuntime.getRuntime().newUnpaddedArray(null, 0); local 114 Object array = VMRuntime.getRuntime().newUnpaddedArray(void.class, 0); local [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 */
|
| /prebuilts/python/darwin-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)
|
| /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)
|
| /external/chromium_org/mojo/public/tools/bindings/generators/ |
| mojom_cpp_generator.py | 57 if isinstance(kind, mojom.Array): 78 if isinstance(kind, mojom.Array): 79 return "mojo::Array<%s> " % GetCppArrayArgWrapperType(kind.kind) 103 if isinstance(kind, mojom.Array): 104 return "mojo::Array<%s>" % GetCppArrayArgWrapperType(kind.kind) 128 if isinstance(kind, mojom.Array): 129 return "mojo::Array<%s>" % GetCppArrayArgWrapperType(kind.kind) 151 if isinstance(kind, mojom.Array): 152 return "mojo::Array<%s>" % GetCppArrayArgWrapperType(kind.kind) 179 if isinstance(kind, mojom.Array) [all...] |
| /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
| InspectorDatabaseAgent.cpp | 83 RefPtr<TypeBuilder::Array<String> > columnNames = TypeBuilder::Array<String>::create(); 88 RefPtr<TypeBuilder::Array<JSONValue> > values = TypeBuilder::Array<JSONValue>::create(); 260 void InspectorDatabaseAgent::getDatabaseTableNames(ErrorString* error, const String& databaseId, RefPtr<TypeBuilder::Array<String> >& names) 267 names = TypeBuilder::Array<String>::create();
|
| /external/chromium_org/v8/src/ |
| harmony-string.js | 10 // var $Array = global.Array; 129 InstallFunctions($String.prototype, DONT_ENUM, $Array(
|
| /external/chromium_org/v8/test/mjsunit/ |
| array-splice.js | 28 // Check that splicing array of holes keeps it as array of holes 31 var array = new Array(10); 32 var spliced = array.splice(1, 1, 'one', 'two'); 36 assertEquals(11, array.length); 37 assertFalse(0 in array, "0 in array"); 38 assertTrue(1 in array); 39 assertTrue(2 in array); [all...] |
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-1160.js | 30 // Array.prototype.join uses a temporary array internally. Verify it 32 // when keyed store on the array does not work as expected because of 36 var array = Array(N); variable 38 array[i] = i; 40 Array.prototype.__defineSetter__(2, function() { }); 41 assertEquals("0,1,2,3,4,5,6,7,8,9", array.join(","));
|
| string-split-monkey-patching.js | 29 // monkey-patchable Array.prototype.push or PutValue. 31 Array.prototype.push = assertUnreachable; 33 Object.defineProperty(Array.prototype, "0", {
|
| /external/lldb/tools/lldb-perf/lib/ |
| Results.cpp | 23 AddResultToArray (CFCMutableArray &array, Results::Result *result); 36 case Results::Result::Type::Array: 38 Results::Array *value = result->GetAsArray(); 39 CFCMutableArray array; local 40 value->ForEach([&array](const Results::ResultSP &value_sp) -> bool 42 AddResultToArray (array, value_sp.get()); 45 parent_array.AppendValue(array.get(), true); 108 case Results::Result::Type::Array: 110 Results::Array *value = result->GetAsArray(); 111 CFCMutableArray array; local [all...] |
| /external/llvm/lib/Bitcode/Reader/ |
| BitstreamReader.cpp | 98 case BitCodeAbbrevOp::Array: 118 case BitCodeAbbrevOp::Array: 154 if (Op.getEncoding() != BitCodeAbbrevOp::Array && 160 if (Op.getEncoding() == BitCodeAbbrevOp::Array) { 161 // Array case. Read the number of elements as a vbr6. 165 assert(i+2 == e && "array op not second to last?"); 223 if (Op.getEncoding() != BitCodeAbbrevOp::Array && 229 if (Op.getEncoding() == BitCodeAbbrevOp::Array) { 230 // Array case. Read the number of elements as a vbr6. 234 assert(i+2 == e && "array op not second to last?") [all...] |
| /art/runtime/mirror/ |
| object_array.h | 20 #include "array.h" 26 class MANAGED ObjectArray: public Array { 30 return Array::ClassSize(); 42 // Returns true if the object can be stored into the array. If not, throws 70 // Copy src into this array (dealing with overlaps as memmove does) without assignability checks. 74 // Copy src into this array assuming no overlap and without assignability checks. 78 // Copy src into this array with assignability checks.
|
| /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
| ANTLRStringStream.as | 54 protected var markers:Array; 63 /** Copy data in string to a local char array */ 73 * when the object was created *except* the data array is not 129 markers = new Array();
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
| navigation_speaker.js | 38 * Speak all of the NavDescriptions in the given array (as returned by 41 * @param {Array.<cvox.NavDescription>} descriptionArray The array of 121 * @param {Array.<cvox.NavDescription>} descriptionArray The array of 123 * @return {Array.<cvox.NavDescription>} The reordered array. 127 var descs = new Array;
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/ |
| math_store.js | 52 var cstrList = Array.prototype.slice.call(arguments, 4); 116 this.addAlias_(rule, query, Array.prototype.slice.call(arguments, 3)); 133 this.addAlias_(rule, query, Array.prototype.slice.call(arguments, 2)); 149 var cstrList = Array.prototype.slice.call(arguments, 2); 162 * @param {Array.<string>} cstrList List of additional constraints. 188 * @return {!Array.<cvox.NavDescription>} Messages for the math expression. 192 var descs = new Array(); 261 * Removes all empty strings from an array of strings. 262 * @param {Array.<string>} strs An array of strings [all...] |
| speech_rule_evaluator.js | 26 * @return {!Array.<cvox.NavDescription>} The resulting description.
|
| store_util.js | 15 * @param {Array.<Node>} nodes A node array.
|
| /external/chromium_org/chrome/renderer/ |
| principals_extension_bindings.cc | 86 v8::Local<v8::Array> v8_result = v8::Array::New(isolate);
|
| /external/chromium_org/chrome/renderer/resources/extensions/ |
| notifications_test_util.js | 43 var $Array = {
|
| web_view_experimental.js | 85 $Function.apply(self.dispatch, self, $Array.slice(arguments)); 102 var args = $Array.concat([this.viewInstanceId_], $Array.slice(arguments)); 107 var args = $Array.concat([this.viewInstanceId_], $Array.slice(arguments)); 112 var args = $Array.concat([this.viewInstanceId_], $Array.slice(arguments)); 117 var args = $Array.concat([this.viewInstanceId_], $Array.slice(arguments));
|
| /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/ |
| asserts.js | 54 * @param {!Array.<*>} messageArgs The items to substitute into the pattern. 63 // passed in array. 84 * @param {Array.<*>} defaultArgs The substitution arguments for defaultMessage. 86 * @param {Array.<*>} givenArgs The substitution arguments for givenMessage. 121 Array.prototype.slice.call(arguments, 2)); 149 Array.prototype.slice.call(arguments, 1)); 166 Array.prototype.slice.call(arguments, 2)); 184 Array.prototype.slice.call(arguments, 2)); 203 Array.prototype.slice.call(arguments, 2)); 221 opt_message, Array.prototype.slice.call(arguments, 2)) [all...] |
| /external/chromium_org/extensions/renderer/ |
| i18n_custom_bindings.cc | 71 v8::Local<v8::Array> placeholders = v8::Local<v8::Array>::Cast(args[1]);
|
| /external/chromium_org/mojo/public/cpp/bindings/tests/ |
| sample_service_unittest.cc | 45 mojo::Array<BarPtr> extra_bars(3); 57 mojo::Array<uint8_t> data(10); 61 mojo::Array<mojo::ScopedDataPipeConsumerHandle> input_streams(2); 62 mojo::Array<mojo::ScopedDataPipeProducerHandle> output_streams(2); 76 mojo::Array<mojo::Array<bool> > array_of_array_of_bools(2); 78 mojo::Array<bool> array_of_bools(2); 202 void Print(int depth, const char* name, const mojo::Array<T>& array) { 205 if (!array.is_null()) [all...] |