HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 51 - 75 of 103) sorted by null

1 23 4 5

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ExtensionValue.java 20 import org.apache.harmony.security.utils.Array;
51 sb.append(Array.toString(encoding, prefix));
SubjectKeyIdentifier.java 22 import org.apache.harmony.security.utils.Array;
70 sb.append(Array.toString(keyIdentifier, prefix));
AuthorityKeyIdentifier.java 33 import org.apache.harmony.security.utils.Array;
84 sb.append(Array.toString(keyIdentifier, prefix + " "));
Certificate.java 30 import org.apache.harmony.security.utils.Array;
97 result.append(Array.toString(signatureValue, ""));
CertificateList.java 30 import org.apache.harmony.security.utils.Array;
95 result.append(Array.toString(signatureValue, ""));
  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 64 Array.prototype.select = function(f) {
366 return type.type == 'array';
527 if (schema.type == "array")
528 return "array of " + getTypeName(schema.items);
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p1.cpp 97 template<class T> class Array { /* ... */ };
98 template<class T> void sort(Array<T>& v) { /* ... */ }
99 template<> void sort<char*>(Array<char*>&) ;
  /external/clang/test/SemaTemplate/
temp_arg_type.cpp 34 struct Array {
39 A1<Array<int, 17>::type> ax;
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 22 import org.apache.harmony.security.utils.Array;
113 sb.append(Array.toString(policyQualifier, " "));
TrustAnchor.java 23 import org.apache.harmony.security.utils.Array;
35 * representation of a so called "Name Constraints" extension as a byte array.
257 sb.append(Array.toString(nameConstraints, " "));
  /dalvik/tests/003-omnibus-opcodes/src/
Array.java 7 public class Array {
10 * Verify array contents.
73 System.out.println("Array.checkRange32");
128 System.out.println("Array.checkRange64");
175 System.out.println("Array.checkNegAlloc");
195 System.out.println("Array check...");
Main.java 55 Array.run();
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 148 // build an array to sort. This is a Schwartzian transform thing,
444 // array-like enumeration
445 if (!Array.forEach) { // mozilla already supports this
446 Array.forEach = function(array, block, context) {
447 for (var i = 0; i < array.length; i++) {
448 block.call(context, array[i], i, array);
464 Array.forEach(string.split(""), function(chr, index) {
484 // the object is array-lik
    [all...]
  /external/clang/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
ArrayMemberValue.java 20 import java.lang.reflect.Array;
24 * Array member.
34 * Constructs an array. The initial value or type are not specified.
43 * Constructs an array. The initial value is not specified.
45 * @param t the type of the array elements.
58 "no array elements found: " + method.getName());
65 throw new ClassNotFoundException("broken array type: "
71 Object a = Array.newInstance(clazz, size);
73 Array.set(a, i, values[i].getValue(cl, cp, method));
80 throw new ClassNotFoundException("no array type specified")
    [all...]
  /frameworks/base/tools/preload/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 30 public class Array {
33 private Array() {
46 * Represents <code>array</code> as <code>String</code>
47 * for printing. Array length can be up to 32767
49 * @param array to be represented as <code>String</code>
51 * @return <code>String</code> representation of the <code>array</code>
53 public static String toString(byte[] array, String prefix) {
66 for (i=0; i<array.length; i++) {
79 sb.append(Byte.toHexString(array[i], false));
81 int currentByte = (0xff & array[i])
    [all...]
  /system/core/libcutils/
array.c 17 #include <cutils/array.h>
26 struct Array {
32 Array* arrayCreate() {
33 return calloc(1, sizeof(struct Array));
36 void arrayFree(Array* array) {
37 assert(array != NULL);
39 // Free internal array.
40 free(array->contents);
42 // Free the Array itself
    [all...]
  /external/v8/test/mjsunit/
array-sort.js 30 // Test array sort.
122 // Test array sorting with holes in the array.
135 // Test array sorting with undefined elemeents in the array.
146 // in the array.
164 Array.prototype.sort.call(obj);
180 var x = new Array(4);
184 Array.prototype.sort.call(x);
203 Array.prototype.sort.call(x)
    [all...]
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 9 int Array[12];
111 int SumArray(int Array[], int Num) {
114 Result += Array[i];
  /external/clang/test/Parser/
declarators.c 24 // Hard case for array decl, not Array[*].
25 int Array[*(int*)P+A];
  /external/clang/test/Sema/
offsetof.c 56 int test2[__builtin_offsetof(struct incomplete[10], [4].foo)]; // expected-error {{array has incomplete element type 'struct incomplete'}}
66 typedef struct Array { int array[1]; } Array; member in struct:Array
67 int test4 = __builtin_offsetof(Array, array);
70 return __builtin_offsetof(Array, array[*(int*)0]); // expected-warning{{indirection of non-volatile null pointer}} expected-note{{__builtin_trap}}
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 130 class Array {
131 WTF_MAKE_NONCOPYABLE(Array);
133 Array(PassRefPtr<RootObject>);
134 virtual ~Array();
  /libcore/luni/src/main/java/java/lang/reflect/
Array.java 38 public final class Array {
43 private Array(){
48 * Returns the element of the array at the specified index. This reproduces
49 * the effect of {@code array[index]}. If the array component is a primitive
52 * @param array
53 * the array
60 * if the array is null
62 * if {@code array} is not an array
    [all...]
  /external/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:

Completed in 776 milliseconds

1 23 4 5