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

<<21222324252627282930>>

  /external/clang/include/clang/AST/
ExprCXX.h 532 /// array temporary within list-initialization (C++11 [dcl.init.list]p5).
719 /// declaration of an empty array in a class or structure definition.
724 /// The above statement indicates that x[] can be used with one or more array
748 /// \brief Create an empty array subscript expression.
    [all...]
  /art/runtime/
runtime.h 62 class Array;
504 void RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) const
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 37 import java.lang.reflect.Array;
185 final T[] result = (T[]) Array
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 37 import java.lang.reflect.Array;
185 final T[] result = (T[]) Array
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 37 import java.lang.reflect.Array;
185 final T[] result = (T[]) Array
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 565 var indentation = new Array(spaces);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
MatrixUtils.java 23 import java.lang.reflect.Array;
52 * square matrix) which can be stored in a 32kB array, a {@link
90 * the input array.
93 * square matrix) which can be stored in a 32kB array, a {@link
96 * <p>The input array is copied, not referenced.</p>
98 * @param data input array
99 * @return RealMatrix containing the values of the array
113 * the input array.
118 * <p>The input array is copied, not referenced.</p>
120 * @param data input array
    [all...]
SparseFieldVector.java 20 import java.lang.reflect.Array;
98 * Create from a Field array.
583 /** Build an array of elements.
584 * @param length size of the array to build
585 * @return a new array
589 return (T[]) Array.newInstance(field.getZero().getClass(), length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
FirstOrderIntegratorWithJacobians.java 23 import java.lang.reflect.Array;
72 * @param p parameters array (may be null if {@link
204 * to the initial state (dy[i]/dy0[j] is in element array dYdY0[i][j]) at each successful
207 * to the parameters (dy[i]/dp[j] is in element array dYdP[i][j]) at each successful
262 /** Dispatch a compound state array into state and jacobians arrays.
264 * @param y raw state array to fill
265 * @param dydy0 jacobian array to fill
266 * @param dydp jacobian array to fill
345 /** Check array dimensions.
347 * @param array (may be null if expected is 0
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastFourierTransformer.java 20 import java.lang.reflect.Array;
69 * @param f the real data array to be transformed
70 * @return the complex transformed array
88 * @return the complex transformed array
106 * @param f the complex data array to be transformed
107 * @return the complex transformed array
122 * @param f the real data array to be transformed
123 * @return the complex transformed array
143 * @return the complex transformed array
163 * @param f the complex data array to be transforme
634 final Object[] array = (Object[]) lastDimension; local
646 final Object[] array = (Object[]) lastDimension; local
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
modem.py 132 'Bearers' : dbus.Array([], signature='o'),
860 bearers = dbus.Array(
  /external/autotest/client/site_tests/power_LoadTest/extension/
urls.js 6 var URLS = new Array();
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 71 m_knots.template segment<MinDegree+1>(0) = Array<Scalar,1,MinDegree+1>::Zero();
72 m_knots.template segment<MinDegree+1>(MinDegree+1) = Array<Scalar,1,MinDegree+1>::Ones();
430 s1 = 0; s2 = 1; // alternate rows in array a
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 29 import java.lang.reflect.Array;
40 * Fixed-size {@link Table} implementation backed by a two-dimensional array.
63 * <p>This class provides methods involving the underlying array structure,
64 * where the array indices correspond to the position of a row or column in the
142 private final V[][] array; field in class:ArrayTable
162 array = tmpArray;
187 array = copy;
191 System.arraycopy(table.array[i], 0, copy[i], 0, table.array[i].length);
331 // In GWT array access never throws IndexOutOfBoundsException
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
Types.java 34 import java.lang.reflect.Array;
69 /** Returns the array type of {@code componentType}. */
177 * <li> For array type {@code Foo[]}, {@code "com.mypackage.Foo[]"} are
217 // Only the first bound can be a class or array.
525 // arrays, but is there another way to extract the array class in a
527 return Array.newInstance(componentType, 0).getClass();
  /external/guava/guava-testlib/src/com/google/common/testing/
ArbitraryInstances.java 93 import java.lang.reflect.Array;
404 return arrayType.cast(Array.newInstance(arrayType.getComponentType(), 0));
  /external/guice/core/src/com/google/inject/internal/
MoreTypes.java 31 import java.lang.reflect.Array;
200 return Array.newInstance(getRawType(componentType), 0).getClass();
266 // This isn't a type we support. Could be a generic array type, wildcard type, etc.
335 private static int indexOf(Object[] array, Object toFind) {
336 for (int i = 0; i < array.length; i++) {
337 if (toFind.equals(array[i])) {
  /external/libmojo/mojo/public/tools/bindings/generators/
mojom_cpp_generator.py 171 pattern = "mojo::WTFArray<%s>" if _for_blink else "mojo::Array<%s>"
282 return "mojo::Array<%s>" % GetUnmappedTypeForSerializer(kind.kind)
369 key_validate_params = GetNewContainerValidateParams(mojom.Array(
371 element_validate_params = GetNewContainerValidateParams(mojom.Array(
mojom_java_generator.py 147 """Returns nullability flags for an array type, see Decoder.java.
150 nullability information about both the array itself, as well as the array
345 return mojom.Array(kind)
347 array = mojom.Array(kind, 0)
348 array.java_map_size = size
349 return array
412 'array': GetArrayKind,
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
data.py 127 kind = mojom.Array(KindFromData(kinds, data[2:], scope))
137 kind = mojom.Array(KindFromData(kinds, data[colon+1:], scope), length)
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2_plugin.h 65 // Axis of the matrix/array. No specific meaning at all.
144 CMSAPI cmsBool CMSEXPORT _cmsReadUInt16Array(cmsIOHANDLER* io, cmsUInt32Number n, cmsUInt16Number* Array);
153 CMSAPI cmsBool CMSEXPORT _cmsWriteUInt16Array(cmsIOHANDLER* io, cmsUInt32Number n, const cmsUInt16Number* Array);
216 // Maximum number of types in a plugin array
396 // Duplicate an item or array of items
425 cmsUInt32Number ElemCount; // If this tag needs an array, how many elements should keep
447 // Custom intents. This function should join all profiles specified in the array in
  /external/protobuf/js/
debug.js 37 goog.require('goog.array');
71 * @param {?} thing A jspb.Message, Array or primitive type to dump.
81 if (type == 'array') {
83 return goog.array.map(thing, jspb.debug.dump_);
  /external/v8/tools/
profile.js 236 * @param {Array<number>} stack Stack sample.
250 * @param {Array<number>} stack Stack sample.
594 * @param {Array<string>} path Call path.
764 * Returns all node's children as an array.
821 * @param {Array<string>} labels The path.
  /frameworks/base/core/java/android/util/
ArraySet.java 21 import java.lang.reflect.Array;
31 * separate from ArrayMap, however, so the Object array contains only one item for each
37 * and deleting entries in the array. For containers holding up to hundreds of items,
41 * standard Java containers it will shrink its array as items are removed from it. Currently
57 * Maximum number of entries to have in array caches.
62 * Caches of small array objects to avoid spamming garbage. The cache
63 * Object[] variable is a pointer to a linked list of array objects.
64 * The first entry in the array is a pointer to the next array in the
65 * list; the second entry is a pointer to the int[] hash code array for it
158 final Object[] array = sTwiceBaseCache; local
183 final Object[] array = sBaseCache; local
    [all...]
  /frameworks/support/compat/java/android/support/v4/util/
ArraySet.java 24 import java.lang.reflect.Array;
34 * separate from ArrayMap, however, so the Object array contains only one item for each
40 * and deleting entries in the array. For containers holding up to hundreds of items,
44 * standard Java containers it will shrink its array as items are removed from it. Currently
62 * Maximum number of entries to have in array caches.
67 * Caches of small array objects to avoid spamming garbage. The cache
68 * Object[] variable is a pointer to a linked list of array objects.
69 * The first entry in the array is a pointer to the next array in the
70 * list; the second entry is a pointer to the int[] hash code array for it
164 final Object[] array = sTwiceBaseCache; local
180 final Object[] array = sBaseCache; local
    [all...]

Completed in 1599 milliseconds

<<21222324252627282930>>