HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 626 - 650 of 1578) sorted by null

<<21222324252627282930>>

  /external/v8/src/debug/
debug-interface.h 75 * Returns array of internal properties specific to the value type. Result has
76 * the following format: [<name>, <value>,...,<name>, <value>]. Result array
79 MaybeLocal<Array> GetInternalProperties(Isolate* isolate, Local<Value> value);
193 v8::MaybeLocal<v8::Array> EntriesPreview(Isolate* isolate,
  /external/v8/src/inspector/
injected-script.h 64 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>*
77 Response wrapPropertyInArray(v8::Local<v8::Array>,
v8-console-message.cc 108 if (value->IsArray()) return append(v8::Local<v8::Array>::Cast(value));
127 bool append(v8::Local<v8::Array> array) {
129 if (it == array) return true;
131 uint32_t length = array->Length();
137 m_visitedArrays.push_back(array);
141 if (!array->Get(m_context, i).ToLocal(&value)) continue;
172 std::vector<v8::Local<v8::Array>> m_visitedArrays;
231 std::unique_ptr<protocol::Array<protocol::Runtime::RemoteObject>>
246 std::unique_ptr<protocol::Array<protocol::Runtime::RemoteObject>> args
    [all...]
v8-debugger.h 77 v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>,
112 v8::Local<v8::Array> hitBreakpoints,
v8-runtime-agent-impl.cc 349 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments,
364 protocol::Array<protocol::Runtime::CallArgument>* arguments =
445 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>*
447 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>*
469 v8::Local<v8::Array> propertiesArray;
475 std::unique_ptr<protocol::Array<InternalPropertyDescriptor>>
477 protocol::Array<InternalPropertyDescriptor>::create();
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 19 import java.lang.reflect.Array;
149 * <li>If T is a GenericArrayType, the returned type is the corresponding array class.
174 // Should be at most 1 upper bound, but treat it like an array for simplicity
200 return Array.newInstance(componentType, 0).getClass();
206 * @return component type, or {@code null} if {@code T} is not an array
226 // Should be at most 1 upper bound, but treat it like an array for simplicity
291 // Empty array => class is not generic
347 * However, we use this 'array OR array' approach for readability
417 * Check if any of the elements in this array contained a type variable
    [all...]
  /frameworks/base/tools/aapt2/test/
Common.h 128 template std::ostream& operator<<<Array>(std::ostream&, const Array&);
  /frameworks/support/core/ktx/src/main/java/androidx/core/content/res/
TypedArray.kt 215 * Retrieve the text array value for the attribute at [index] or throws
221 fun TypedArray.getTextArrayOrThrow(@StyleableRes index: Int): Array<CharSequence> {
  /frameworks/support/paging/runtime/src/androidTest/java/androidx/paging/
LivePagedListBuilderTest.kt 102 val pagedListHolder: Array<PagedList<String>?> = arrayOfNulls(1)
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicReferenceArray.java 38 import java.lang.reflect.Array;
44 * An array of object references in which elements may be updated
50 * @param <E> The base class of elements held in this array
56 private static final long ARRAY;
59 private final Object[] array; // must have exact type Object[] field in class:AtomicReferenceArray
63 ARRAY = U.objectFieldOffset
64 (AtomicReferenceArray.class.getDeclaredField("array"));
68 throw new Error("array index scale not a power of two");
76 if (i < 0 || i >= array.length)
90 * @param length the length of the array
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_MapTest.java 20 import java.lang.reflect.Array;
147 // Compare the iterator with the array. The arrays will be checked against each other.
189 return (T[]) Array.newInstance(elementType, size);
  /prebuilts/go/darwin-x86/src/reflect/
tostring_test.go 52 case Array, Slice:
  /prebuilts/go/linux-x86/src/reflect/
tostring_test.go 52 case Array, Slice:
  /system/tools/hidl/docs/src/parser/
config.kt 65 fun parseArgs(args: Array<String>) {
  /external/vixl/test/aarch64/examples/
test-examples.cc 91 uint32_t SumArrayC(uint8_t* array, uint32_t size) {
95 result += array[i];
396 #define SUM_ARRAY_DOTEST(Array) \
399 uintptr_t addr = reinterpret_cast<uintptr_t>(Array); \
401 simulator.WriteXRegister(1, ARRAY_SIZE(Array)); \
403 VIXL_CHECK(regs.xreg(0) == SumArrayC(Array, ARRAY_SIZE(Array))); \
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 27 import java.lang.reflect.Array;
82 * @param array1 the first byte array
83 * @param array2 the second byte array
107 * Returns an empty array of the specified type. The intent is that
108 * it will return the same empty array every time to avoid reallocation,
121 cache = Array.newInstance(kind, 0);
131 * Checks if given array is null or has zero elements.
133 public static boolean isEmpty(@Nullable Collection<?> array) {
134 return array == null || array.isEmpty()
295 int[] array = new int[list.size()]; local
304 long[] array = new long[intArray.length]; local
    [all...]
  /developers/build/prebuilts/gradle/Camera2Video/kotlinApp/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.kt 274 private fun shouldShowRequestPermissionRationale(permissions: Array<String>) =
290 permissions: Array<String>,
311 private fun hasPermissionsGranted(permissions: Array<String>) =
588 private fun chooseVideoSize(choices: Array<Size>) = choices.firstOrNull {
603 choices: Array<Size>,
  /developers/samples/android/media/Camera2Video/kotlinApp/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.kt 274 private fun shouldShowRequestPermissionRationale(permissions: Array<String>) =
290 permissions: Array<String>,
311 private fun hasPermissionsGranted(permissions: Array<String>) =
588 private fun chooseVideoSize(choices: Array<Size>) = choices.firstOrNull {
603 choices: Array<Size>,
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
Allocation.java 87 throw new RSIllegalArgumentException("Object passed is not an array of primitives.");
91 throw new RSIllegalArgumentException("Object passed is not an Array of primitives.");
268 * Specifies the mapping between the Allocation's cells and an array's elements
269 * when data is copied from the Allocation to the array, or vice-versa.
273 * copying data from the Allocation to an array or vice-versa less efficient.
278 * i.e. the first 3 vector components of each cell, will be mapped between the array
282 * <p> For example, when copying an integer array to an Allocation of two {@link
285 * The array must have at least 8 integers, with the first 4 integers copied
290 * The array just needs to have at least 6 integers, with the first 3 integers
294 * <p> Similarly, when copying a byte array to an Allocation of two {@lin
1128 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt, local
1464 array, sizeBytes, dt, local
1721 array, sizeBytes, dt, local
1814 mRS.nAllocationRead(getID(mRS), array, dt, mType.mElement.mType.mSize, usePadding); local
2002 mRS.nAllocationRead1D(getIDSafe(), off, mSelectedLOD, count, array, dataSize, dt, local
2306 array, sizeBytes, dt, mType.mElement.mType.mSize, usePadding); local
    [all...]
  /external/testng/doc/
prettify.js 223 * @return an Array of PR_Tokens of style PR_PLAIN and null.
227 var chunks = new Array();
272 var chunksOut = new Array();
324 var tokens = new Array(); // the output
384 var tokenEnds = new Array();
397 var tokenChars = new Array(12);
555 * @return an array of PR_Tokens with style in
557 * The result array may contain spurious zero length tokens. Ignore them.
563 var tokenEnds = new Array(); // positions of ends of tokens in absolute space
762 var tokensOut = new Array();
    [all...]
  /tools/metalava/src/test/java/com/android/tools/metalava/
DriverTest.kt 139 @Language("JAVA") stubs: Array<String> = emptyArray(),
175 showAnnotations: Array<String> = emptyArray(),
179 extraArguments: Array<String> = emptyArray(),
189 coverageJars: Array<TestFile>? = null,
522 val sdkFilesArgs: Array<String>
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmLoadOption.c 128 // We didn't find it in the ****Order array and it doesn't equal to BootNext
206 A packed array of UEFI device paths. The first element of the
207 array is a device path that describes the device and location of the
211 in the array is variable length, and ends at the device path end
511 Return the index of the load option in the load option array.
517 @param Array Pointer to the array of load options to be found.
518 @param Count Number of entries in the Array.
520 @retval -1 Key wasn't found in the Array.
521 @retval 0 ~ Count-1 The index of the Key in the Array.
    [all...]
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 299 typedef Array<typename traits<T>::Scalar,
340 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense>
342 typedef const Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type;
575 /** \internal gives the plain matrix or array type to store a row/column/diagonal of a matrix type.
583 typedef Array<Scalar, 1, ExpressionType::ColsAtCompileTime,
598 typedef Array<Scalar, ExpressionType::RowsAtCompileTime, 1,
615 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;
629 typedef Array<Scalar, traits<Expr>::RowsAtCompileTime, traits<Expr>::ColsAtCompileTime,
    [all...]
  /external/v8/src/
api.h 81 V(Array, JSArray) \
146 static inline Local<Array> ToLocal(
285 Local<v8::Type##Array> Utils::ToLocal##Type##Array( \
287 DCHECK(obj->type() == v8::internal::kExternal##Type##Array); \
288 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
302 MAKE_TO_LOCAL(ToLocal, JSArray, Array)
  /external/swiftshader/third_party/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...]

Completed in 2093 milliseconds

<<21222324252627282930>>