/external/eigen/doc/ |
tutorial.cpp | 1 #include <Eigen/Array>
|
/external/eigen/lapack/ |
ilaclc.f | 26 * .. Array Arguments .. 56 *> A is COMPLEX array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
ilaclr.f | 26 * .. Array Arguments .. 56 *> A is array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
iladlc.f | 26 * .. Array Arguments .. 56 *> A is DOUBLE PRECISION array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
iladlr.f | 26 * .. Array Arguments .. 56 *> A is DOUBLE PRECISION array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
ilaslc.f | 26 * .. Array Arguments .. 56 *> A is REAL array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
ilaslr.f | 26 * .. Array Arguments .. 56 *> A is REAL array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
ilazlc.f | 26 * .. Array Arguments .. 56 *> A is COMPLEX*16 array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
ilazlr.f | 26 * .. Array Arguments .. 56 *> A is COMPLEX*16 array, dimension (LDA,N) 63 *> The leading dimension of the array A. LDA >= max(1,M). 89 * .. Array Arguments ..
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
CalendarUtil.java | 85 UResource.Array types = value.getArray();
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CalendarUtil.java | 83 UResource.Array types = value.getArray();
|
/external/libmojo/mojo/public/cpp/bindings/ |
map.h | 15 #include "mojo/public/cpp/bindings/array.h" 51 Map(mojo::Array<Key> keys, mojo::Array<Value> values) : is_null_(false) { 166 void DecomposeMapTo(mojo::Array<Key>* keys, mojo::Array<Value>* values) {
|
/external/v8/include/ |
v8-debug.h | 264 * Returns array of internal properties specific to the value type. Result has 265 * the following format: [<name>, <value>,...,<name>, <value>]. Result array 268 static MaybeLocal<Array> GetInternalProperties(Isolate* isolate,
|
/external/v8/src/debug/ |
debug-interface.h | 110 * Returns array of internal properties specific to the value type. Result has 111 * the following format: [<name>, <value>,...,<name>, <value>]. Result array 114 static MaybeLocal<Array> GetInternalProperties(Isolate* isolate, 201 * Return array of compiled scripts.
|
/frameworks/base/tools/aapt2/ |
Format.proto | 159 message Array { 200 optional Array array = 4;
|
/frameworks/base/tools/aapt2/unflatten/ |
BinaryResourceParser.h | 81 std::unique_ptr<Array> ParseArray(const ResourceNameRef& name,
|
/art/runtime/entrypoints/ |
entrypoint_utils.h | 36 class Array; 83 // Given the context of a calling Method, use its DexCache to resolve a type to an array Class. If 84 // it cannot be resolved, throw an error. If it can, use it to create an array. 88 ALWAYS_INLINE inline mirror::Array* AllocArrayFromCode(dex::TypeIndex type_idx, 97 ALWAYS_INLINE inline mirror::Array* AllocArrayFromCodeResolved(mirror::Class* klass,
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
BitSet.cs | 36 using Array = System.Array; 70 /** <summary>Construction from a static array of longs</summary> */ 164 Array.Resize(ref _bits, nwords); 264 /** <summary>return how much space is being used by the bits array not how many actually have member bits on.</summary> */
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
BitSet.cs | 37 using Array = System.Array; 73 /** <summary>Construction from a static array of longs</summary> */ 185 Array.Resize(ref _bits, nwords); 312 /** <summary>return how much space is being used by the bits array not how many actually have member bits on.</summary> */
|
/external/caliper/caliper/src/main/java/com/google/caliper/memory/ |
ObjectExplorer.java | 24 import java.lang.reflect.Array; 119 * Since we push paths to explore in a stack, we push references found in the array in 120 * reverse order, so when we pop them, they will be in the array's order. 122 for (int i = Array.getLength(value) - 1; i >= 0; i--) { 123 Object childValue = Array.get(value, i); 213 * @return An array of fields of the given class.
|
/external/junit/src/main/java/org/junit/experimental/theories/internal/ |
AllMembersSupplier.java | 3 import java.lang.reflect.Array; 132 private void addArrayValues(ParameterSignature sig, String name, List<PotentialAssignment> list, Object array) { 133 for (int i = 0; i < Array.getLength(array); i++) { 134 Object value = Array.get(array, i);
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/ |
pack_tests.py | 96 mojom.Array().MakeNullableKind(), 98 mojom.Array(length=5).MakeNullableKind(), 114 mojom.UINT64, mojom.Struct('test'), mojom.Array(),
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
codegen.ml | 44 if Array.length params == Array.length args then () else 46 let args = Array.map codegen_expr args in 174 let doubles = Array.make (Array.length args) double_type in 194 Array.iteri (fun i a ->
|
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_rasterpos.c | 64 struct gl_client_array array[VERT_ATTRIB_MAX]; member in struct:rastpos_stage 197 for (i = 0; i < Elements(rs->array); i++) { 198 rs->array[i].Size = 4; 199 rs->array[i].Type = GL_FLOAT; 200 rs->array[i].Format = GL_RGBA; 201 rs->array[i].Stride = 0; 202 rs->array[i].StrideB = 0; 203 rs->array[i].Ptr = (GLubyte *) ctx->Current.Attrib[i]; 204 rs->array[i].Enabled = GL_TRUE; 205 rs->array[i].Normalized = GL_TRUE [all...] |
st_draw.c | 202 const struct gl_client_array **arrays = ctx->Array._DrawArrays; 246 info.primitive_restart = ctx->Array.PrimitiveRestart; 247 info.restart_index = ctx->Array.RestartIndex;
|