HomeSort by relevance Sort by last modified time
    Searched refs:Array (Results 426 - 450 of 1046) sorted by null

<<11121314151617181920>>

  /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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenC.py 878 Array = ''
    [all...]
StrGather.py 231 ## Create a buffer to store all items in an array
234 # @param Array: The array need to be formatted
236 def CreateBinBuffer(BinBuffer, Array):
237 for Item in Array:
240 ## Create a formatted string all items in an array
242 # Use ',' to join each item in an array, and break an new line when reaching the width (default is 16)
244 # @param Array: The array need to be formatted
247 # @retval ArrayItem: A string for all formatted array items
    [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 82 V(Array, JSArray) \
145 static inline Local<Array> ToLocal(
284 Local<v8::Type##Array> Utils::ToLocal##Type##Array( \
286 DCHECK(obj->type() == v8::internal::kExternal##Type##Array); \
287 return Convert<v8::internal::JSTypedArray, v8::Type##Array>(obj); \
301 MAKE_TO_LOCAL(ToLocal, JSArray, Array)
  /external/v8/src/inspector/
v8-runtime-agent-impl.cc 348 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments,
363 protocol::Array<protocol::Runtime::CallArgument>* arguments =
440 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>*
442 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>*
464 v8::Local<v8::Array> propertiesArray;
470 std::unique_ptr<protocol::Array<InternalPropertyDescriptor>>
472 protocol::Array<InternalPropertyDescriptor>::create();
v8-heap-profiler-agent-impl.cc 129 std::unique_ptr<protocol::Array<int>> statsDiff =
130 protocol::Array<int>::create();
337 auto children = protocol::Array<
v8-injected-script-host.cc 115 info.GetReturnValue().Set(toV8StringInternalized(isolate, "array"));
191 v8::Local<v8::Array> allProperties;
206 v8::Local<v8::Array> properties = v8::Array::New(isolate);
  /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...]
  /external/autotest/client/cros/networking/
shill_proxy.py 147 SERVICE_PROPERTY_EAP_CA_CERT_PEM: dbus.Array,
149 SERVICE_PROPERTY_OPENVPN_CA_CERT_PEM: dbus.Array,
163 SERVICE_PROPERTY_L2TP_CA_CERT_PEM: dbus.Array,
  /external/proguard/src/proguard/util/
ArrayUtil.java 23 import java.lang.reflect.Array;
33 * @param array1 the first array.
34 * @param array2 the second array.
54 * @param array1 the first array.
55 * @param array2 the second array.
75 * @param array1 the first array.
76 * @param array2 the second array.
96 * @param array1 the first array.
97 * @param array2 the second array.
118 * @param array1 the first array
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamWriter.h 294 /// emission code. If BlobData is non-null, then it specifies an array of
295 /// data that should be emitted as part of the Blob or Array operand that is
316 } else if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
317 // Array case.
318 assert(i+2 == e && "array op not second to last?");
325 "Blob data and record entries specified for array!");
437 /// that end with an array.
440 StringRef Array) {
441 EmitRecordWithAbbrevImpl(Abbrev, Vals, Array);
  /art/compiler/optimizing/
instruction_simplifier_arm.cc 21 #include "mirror/array-inl.h"
152 // Don't move array pointer if it is charAt because we need to take the count first.
175 size_t data_offset = mirror::Array::DataOffset(access_size).Uint32Value();
instruction_simplifier_arm64.cc 21 #include "mirror/array-inl.h"
154 size_t data_offset = mirror::Array::DataOffset(access_size).Uint32Value();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/StatusCodeDataTypeId/
StatusCodeDataTypeId.h 283 // on multiple devices within the array
287 // A shorthand to describe that the operation is performed // on all devices within the array
305 UINT16 Array;
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
StatusCodeDataTypeId.h 545 /// A definition to describe that the operation is performed on multiple devices within the array.
546 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
551 /// A definition to describe that the operation is performed on all devices within the array.
552 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
558 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
564 /// May be used for EFI_STATUS_CODE_DIMM_NUMBER.Array and EFI_STATUS_CODE_DIMM_NUMBER.Device.
573 /// overall memory scheme. The Array and Device numbers may indicate a specific DIMM, or they
585 /// The memory array number.
587 UINT16 Array;
589 /// The device number within that Array.
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeParser.as 129 public override function getErrorMessage(e:RecognitionException, tokenNames:Array):String {
  /external/autotest/client/site_tests/platform_CrosDisksDBus/
platform_CrosDisksDBus.py 39 ('DeviceMountPaths', dbus.Array),
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 169 Array<StorageIndex,IPARM_SIZE,1>& iparm()
187 Array<double,DPARM_SIZE,1>& dparm()
247 mutable Array<int,IPARM_SIZE,1> m_iparm; // integer vector for the input parameters
248 mutable Array<double,DPARM_SIZE,1> m_dparm; // Scalar vector for the input parameters
  /external/eigen/bench/btl/libs/blitz/
blitz_LU_solve_interface.hh 23 #include "blitz/array.h"
37 typedef blitz::Array<int,1> Pivot_Vector;
  /external/eigen/bench/btl/libs/gmm/
gmm_LU_solve_interface.hh 23 #include "blitz/array.h"
37 typedef blitz::Array<int,1> Pivot_Vector;
  /external/eigen/bench/btl/libs/mtl4/
mtl4_LU_solve_interface.hh 23 #include "blitz/array.h"
37 typedef blitz::Array<int,1> Pivot_Vector;
  /external/eigen/lapack/
clarf.f 28 * .. Array Arguments ..
76 *> V is COMPLEX array, dimension
97 *> C is COMPLEX array, dimension (LDC,N)
106 *> The leading dimension of the array C. LDC >= max(1,M).
111 *> WORK is COMPLEX array, dimension
141 * .. Array Arguments ..
clarfg.f 27 * .. Array Arguments ..
76 *> X is COMPLEX array, dimension
118 * .. Array Arguments ..

Completed in 1383 milliseconds

<<11121314151617181920>>