HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 201 - 225 of 281) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 99 namespace Array {
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSON.java 25 import java.lang.reflect.Array;
48 * array ==> Object[]
61 * List --> array
62 * Array --> array
158 public static String toString(Object[] array)
161 DEFAULT.appendArray(buffer,array);
167 * String containing JSON object or array.
168 * @return A Map, Object array or primitive array parsed from the JSON
968 Object array = newArray(1); local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/xml/
XmlConfiguration.java 24 import java.lang.reflect.Array;
405 else if ("Array".equals(tag))
596 * @param array the array to convert
598 * @return a collection of the desired type if the array can be converted
600 private static Collection<?> convertArrayToCollection(Object array, Class<?> collectionType)
603 if (array.getClass().isArray())
606 collection = convertArrayToArrayList(array);
608 collection = new HashSet<Object>(convertArrayToArrayList(array));
612 q.addAll(convertArrayToArrayList(array));
890 Object array = LazyList.toArray(al,aClass); local
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 331 std::unique_ptr<char[]> Array;
334 /// Turn a vector of strings into a nice argv style array of pointers to null
345 Array = make_unique<char[]>((InputArgv.size()+1)*PtrSize);
347 DEBUG(dbgs() << "JIT: ARGV = " << (void*)Array.get() << "\n");
358 // Endian safe: Array[i] = (PointerTy)Dest;
360 (GenericValue*)(&Array[i*PtrSize]), SBytePtr);
366 (GenericValue*)(&Array[InputArgv.size()*PtrSize]),
368 return Array.get();
382 // Should be an array of '{ i32, void ()* }' structs. The first value is
    [all...]
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 79 CJS_Value::CJS_Value(CJS_Runtime* pRuntime, CJS_Array& array)
81 operator=(array);
142 v8::Local<v8::Array> CJS_Value::ToV8Array() const {
144 return v8::Local<v8::Array>::Cast(
146 return v8::Local<v8::Array>();
203 void CJS_Value::operator=(CJS_Array& array) {
205 FXJS_NewObject2(m_pJSRuntime->GetIsolate(), (v8::Local<v8::Array>)array);
256 FX_BOOL CJS_Value::ConvertToArray(CJS_Array& array) const {
258 array.Attach(FXJS_ToArray(m_pJSRuntime->GetIsolate(), m_pValue))
    [all...]
  /external/v8/src/
types.h 42 // Array < Object
50 // Array(T) < Array
54 // Both structural Array and Function types are invariant in all parameters;
56 // There is no subtyping relation between Array, Function, or Context types
387 static TypeHandle Array(TypeHandle element, Region* region) {
    [all...]
  /external/v8/test/cctest/
test-types.cc 496 void Array() {
500 TypeHandle array = T.Array1(type); local
501 CHECK(array->IsArray());
507 TypeHandle array = T.Array1(type); local
508 CheckEqual(type, array->AsArray()->Element());
511 // Functionality & Injectivity: Array(T1) = Array(T2) iff T1 = T2
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
type.go 106 // Array: Elem, Len
138 // It panics if the type's Kind is not Array, Chan, Map, Ptr, or Slice.
170 // Len returns an array type's length.
171 // It panics if the type's Kind is not Array.
231 Array
245 // with a unique tag like `reflect:"array"` or `reflect:"ptr"`
302 // arrayType represents a fixed array type.
304 rtype `reflect:"array"`
305 elem *rtype // array element type
433 Array: "array"
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
type.go 106 // Array: Elem, Len
138 // It panics if the type's Kind is not Array, Chan, Map, Ptr, or Slice.
170 // Len returns an array type's length.
171 // It panics if the type's Kind is not Array.
231 Array
245 // with a unique tag like `reflect:"array"` or `reflect:"ptr"`
302 // arrayType represents a fixed array type.
304 rtype `reflect:"array"`
305 elem *rtype // array element type
433 Array: "array"
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/
mootools-core-full-nocompat.js 9 - packager build Core/Core Core/Array Core/String Core/Number Core/Function Core/Object Core/Event Core/Browser Core/Class Core/Class.Extras Core/Slick.Parser Core/Slick.Finder Core/Element Core/Element.Style Core/Element.Event Core/Element.Delegation Core/Element.Dimensions Core/Fx Core/Fx.CSS Core/Fx.Tween Core/Fx.Morph Core/Fx.Transitions Core/Request Core/Request.HTML Core/Request.JSON Core/Cookie Core/JSON Core/DOMReady
125 var slice = Array.prototype.slice;
133 Array.from = function(item){
135 return (Type.isEnumerable(item) && typeof item != 'string') ? (typeOf(item) == 'array') ? item : slice.call(item) : [item];
280 ])('Array', Array, [
326 Array.implement({
337 Array.forEach(this, fn, bind);
343 // Array & Object cloning, Object merging and appending
347 case 'array': return item.clone()
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1092 /// If p is a reference to an array, then p[i] is a reference to the i'th
1093 /// element of the array.
1098 ArrayIndex(SExpr *A, SExpr *N) : SExpr(COP_ArrayIndex), Array(A), Index(N) {}
1100 : SExpr(E), Array(A), Index(N) {}
1102 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayIndex
1103 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayIndex
1110 auto Na = Vs.traverse(Array, Vs.subExprCtx(Ctx));
1117 typename C::CType Ct = Cmp.compare(array(), E->array())
1140 SExpr *array() { return Array; } function in class:clang::threadSafety::ArrayAdd
1141 const SExpr *array() const { return Array; } function in class:clang::threadSafety::ArrayAdd
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleReader.java 251 // Bundles with formatVersion 1.1 and later contain an indexes[] array.
254 // read the variable-length indexes[] array
304 // Read the array of 16-bit units.
367 return type == UResourceBundle.ARRAY || type == ICUResourceBundle.ARRAY16;
378 private static final Array EMPTY_ARRAY = new Array();
655 // Not cached: The array would have to be cloned anyway because
717 // Not cached: The array would have to be cloned anyway because
734 if(type == UResourceBundle.ARRAY) {
744 Array getArray(int res)
757 Array array = (type == UResourceBundle.ARRAY) ? local
947 Array array = reader.getArray(res); local
1048 Array array = reader.getArray(res); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java 249 // Bundles with formatVersion 1.1 and later contain an indexes[] array.
252 // read the variable-length indexes[] array
302 // Read the array of 16-bit units.
365 return type == UResourceBundle.ARRAY || type == ICUResourceBundle.ARRAY16;
376 private static final Array EMPTY_ARRAY = new Array();
653 // Not cached: The array would have to be cloned anyway because
715 // Not cached: The array would have to be cloned anyway because
732 if(type == UResourceBundle.ARRAY) {
742 Array getArray(int res)
755 Array array = (type == UResourceBundle.ARRAY) ? local
945 Array array = reader.getArray(res); local
1046 Array array = reader.getArray(res); local
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 34 | Array
296 external parse_command_line_options : ?overview:string -> string array -> unit
356 external function_type : lltype -> lltype array -> lltype = "llvm_function_type"
357 external var_arg_function_type : lltype -> lltype array -> lltype
361 external param_types : lltype -> lltype array = "llvm_param_types"
364 external struct_type : llcontext -> lltype array -> lltype = "llvm_struct_type"
365 external packed_struct_type : llcontext -> lltype array -> lltype
370 external struct_set_body : lltype -> lltype array -> bool -> unit =
372 external struct_element_types : lltype -> lltype array
377 (*--... Operations on pointer, vector, and array types .....................--*
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h 96 \tparam Allocator Allocator type for allocating memory of object, array and string.
262 //! Create string reference from \c const character array
265 a \c const character array. It has better performance than
267 from the array length, and also supports strings containing null
272 \param str Constant character array, lifetime assumed to be longer
330 //! Disallow construction from non-const array
418 \tparam Allocator Allocator type for allocating memory of object, array and string.
431 typedef GenericValue* ValueIterator; //!< Value iterator for iterating in array.
432 typedef const GenericValue* ConstValueIterator; //!< Constant value iterator for iterating in array.
571 /*! Need to destruct elements of array, members of object, or copy-string.
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
CameraTestUtils.java 71 import java.lang.reflect.Array;
526 * Get an array of {@link #TotalCaptureResult total capture results} for a given list of
585 * Get an array list of {@link #CaptureFailure capture failure} with maxNumFailures entries
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraTestUtils.java 66 import java.lang.reflect.Array;
509 * Get an array of {@link #TotalCaptureResult total capture results} for a given list of
568 * Get an array list of {@link #CaptureFailure capture failure} with maxNumFailures entries
766 assertTrue(message, arr != null && Array.getLength(arr) > 0);
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 575 // If we have an array index variable, load it and use it as an offset.
612 const ConstantArrayType *Array = CGF.getContext().getAsConstantArrayType(T);
613 assert(Array && "Array initialization without the array type?");
630 uint64_t NumElements = Array->getSize().getZExtValue();
646 Array->getElementType(), ArrayIndexes, Index + 1);
715 // an array of PODs or classes with trivial copy constructors, ignore the
719 const ConstantArrayType *Array
721 if (Array && Constructor->isDefaulted() &
    [all...]
CGObjCGNU.cpp 169 ConstantAddress Array = CGM.GetAddrOfConstantCString(Str, Name.c_str());
170 return llvm::ConstantExpr::getGetElementPtr(Array.getElementType(),
171 Array.getPointer(), Zeros);
204 /// Generates a global array. The vector must contain the same number of
205 /// elements that the array type declares, of the type specified as the array
219 /// Generates a global array, inferring the array type from the specified
390 /// containing a size and an array of structures containing instance variable
397 /// and an array of structures containing method metadata
2020 llvm::Constant *array = llvm::ConstantArray::get(arrayTy, values); local
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest_unittest.cc     [all...]
  /external/gtest/test/
gtest_unittest.cc     [all...]
  /external/llvm/lib/IR/
Verifier.cpp 497 // Don't worry about emitting an error for it not being an array,
498 // visitGlobalValue will complain on appending non-array.
889 if (auto *Array = N.getRawEnumTypes()) {
890 Assert(isa<MDTuple>(Array), "invalid enum list", &N, Array);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 401 /// populates the array Vals with the set of values that match (or do not
    [all...]

Completed in 8468 milliseconds

1 2 3 4 5 6 7 891011>>