HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 126 - 150 of 303) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
78 Returns a ctypes array allocated from shared memory
108 def Array(typecode_or_type, size_or_initializer, **kwds):
134 elif isinstance(obj, ctypes.Array):
155 if isinstance(obj, ctypes.Array):
  /art/test/003-omnibus-opcodes/src/
Main.java 46 Array.run();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
makeunicodedata.py 288 Array("index1", index1).dump(fp, trace)
289 Array("index2", index2).dump(fp, trace)
295 Array("decomp_data", decomp_data).dump(fp, trace)
299 Array("decomp_index1", index1).dump(fp, trace)
300 Array("decomp_index2", index2).dump(fp, trace)
305 Array("comp_index", index).dump(fp, trace)
306 Array("comp_data", index2).dump(fp, trace)
325 Array("changes_%s_index" % cversion, index1).dump(fp, trace)
326 Array("changes_%s_data" % cversion, index2).dump(fp, trace)
462 Array("index1", index1).dump(fp, trace)
    [all...]
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 250 llvm::yaml::SequenceNode *Array = dyn_cast<llvm::yaml::SequenceNode>(Root);
251 if (!Array) {
252 ErrorMessage = "Expected array.";
255 for (auto& NextObject : *Array) {
  /external/clang/test/SemaTemplate/
temp_arg_nontype_cxx1z.cpp 13 namespace Array {
  /external/deqp/framework/common/
tcuFormatUtil.hpp 172 // Array formatters.
175 class Array
181 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {}
195 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
212 return str << Array<const T*>(fmt.arr, fmt.arr+fmt.size);
268 /** Format array contents. */
270 inline Format::Array<Iterator> formatArray (const Iterator& begin, const Iterator& end)
272 return Format::Array<Iterator>(begin, end);
275 /** Format array contents. */
282 /** Format array contents. *
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONArray.java 29 import java.lang.reflect.Array;
175 * @throws JSONException If not an array.
197 * Construct a JSONArray from an array
198 * @throws JSONException If not an array.
200 public JSONArray(Object array) throws JSONException {
202 if (array.getClass().isArray()) {
203 int length = Array.getLength(array);
205 this.put(Array.get(array, i))
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
BenchmarkHelpers.java 272 Array {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UResource.java 32 // Stores a reference to the resource bundle key string bytes array,
69 * @param keyBytes new key string byte array
115 * Does not clone the byte array.
273 * Interface for iterating over a resource bundle array resource.
276 public interface Array {
278 * @return The number of items in the array resource.
282 * @param i Array item index.
295 * @return The number of items in the array resource.
299 * @param i Array item index.
357 * @throws UResourceTypeMismatchException if this is not an array resourc
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
ICUTestCase.java 19 import java.lang.reflect.Array;
182 * be the same length, and each element in the left array must compare
183 * equal to the corresponding element of the right array.
184 * Also fails if one of the objects is not an array.
185 * @param lhs the left array
186 * @param rhs the right array
202 * argument is not an array.
203 * @param lhs the left array
204 * @param rhs the right array
220 int lhsl = Array.getLength(lhsa)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UResource.java 30 // Stores a reference to the resource bundle key string bytes array,
67 * @param keyBytes new key string byte array
113 * Does not clone the byte array.
271 * Interface for iterating over a resource bundle array resource.
274 public interface Array {
276 * @return The number of items in the array resource.
280 * @param i Array item index.
293 * @return The number of items in the array resource.
297 * @param i Array item index.
355 * @throws UResourceTypeMismatchException if this is not an array resourc
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 95 Array = 3, // A sequence of fields, next field species elt encoding.
97 Blob = 5 // 32-bit aligned array of 8-bit characters.
123 case Array:
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 69 struct tgsi_declaration_array Array;
  /external/python/cpython2/Tools/unicode/
makeunicodedata.py 288 Array("index1", index1).dump(fp, trace)
289 Array("index2", index2).dump(fp, trace)
295 Array("decomp_data", decomp_data).dump(fp, trace)
299 Array("decomp_index1", index1).dump(fp, trace)
300 Array("decomp_index2", index2).dump(fp, trace)
305 Array("comp_index", index).dump(fp, trace)
306 Array("comp_data", index2).dump(fp, trace)
325 Array("changes_%s_index" % cversion, index1).dump(fp, trace)
326 Array("changes_%s_data" % cversion, index2).dump(fp, trace)
462 Array("index1", index1).dump(fp, trace
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitCodes.h 92 Array = 3, // A sequence of fields, next field species elt encoding.
94 Blob = 5 // 32-bit aligned array of 8-bit characters.
121 case Array:
  /frameworks/support/compat/java/android/support/v4/graphics/
TypefaceCompatApi26Impl.java 40 import java.lang.reflect.Array;
91 Object familyArray = Array.newInstance(fontFamilyClass, 1);
175 Object familyArray = Array.newInstance(sFontFamily, 1);
176 Array.set(familyArray, 0, family);
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationMember.java 26 import java.lang.reflect.Array;
40 * <li> one-dimensional array of the above
62 * Tag description of an array value type.
64 protected static final char ARRAY = '[';
114 tag = ARRAY;
168 if (tag == ARRAY) {
171 int len = Array.getLength(value);
174 sb.append(Array.get(value, i));
201 if (tag == ARRAY) {
219 * @return true if the value is array and is equal to specified object
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 102 Array = 3, // A sequence of fields, next field species elt encoding.
104 Blob = 5 // 32-bit aligned array of 8-bit characters.
130 case Array:

Completed in 2066 milliseconds

1 2 3 4 56 7 8 91011>>