HomeSort by relevance Sort by last modified time
    Searched refs:ARRAY (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/dhcpcd/
showlease.c 22 #define ARRAY (1 << 9)
36 { 3, IPV4 | ARRAY | REQUEST, "routers" },
37 { 4, IPV4 | ARRAY, "time_servers" },
38 { 5, IPV4 | ARRAY, "ien116_name_servers" },
39 { 6, IPV4 | ARRAY, "domain_name_servers" },
40 { 7, IPV4 | ARRAY, "log_servers" },
41 { 8, IPV4 | ARRAY, "cookie_servers" },
42 { 9, IPV4 | ARRAY, "lpr_servers" },
43 { 10, IPV4 | ARRAY, "impress_servers" },
44 { 11, IPV4 | ARRAY, "resource_location_servers" }
    [all...]
dhcp.c 49 #define ARRAY (1 << 9)
77 { 33, IPV4 | ARRAY | REQUEST, "static_routes" },
78 { 3, IPV4 | ARRAY | REQUEST, "routers" },
80 { 4, IPV4 | ARRAY, "time_servers" },
81 { 5, IPV4 | ARRAY, "ien116_name_servers" },
84 { 6, IPV4 | ARRAY | REQUEST, "domain_name_servers" },
85 { 7, IPV4 | ARRAY, "log_servers" },
86 { 8, IPV4 | ARRAY, "cookie_servers" },
87 { 9, IPV4 | ARRAY, "lpr_servers" },
88 { 10, IPV4 | ARRAY, "impress_servers" }
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
ReflectedType002Test.java 46 * <BR>Starts ReflectedType002Debuggee then checks the following array
55 * <BR>&nbsp;&nbsp; - refTypeTag takes the TypeTag constant ARRAY
66 TypeSignatureAndTag[] array = new TypeSignatureAndTag[] { local
68 JDWPConstants.TypeTag.ARRAY),
70 JDWPConstants.TypeTag.ARRAY),
72 JDWPConstants.TypeTag.ARRAY),
73 new TypeSignatureAndTag("[C", JDWPConstants.TypeTag.ARRAY)
76 runReflectedTypeTest(array);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
PropertyOptions.java 39 public static final int ARRAY = 0x00000200;
194 * @return Return whether this property is an array. By itself this indicates a general
195 * unordered array. It is serialized using an <tt>rdf:Bag</tt> container.
199 return getOption(ARRAY);
209 setOption(ARRAY, value);
215 * @return Return whether this property is an ordered array. Appears in conjunction with
236 * @return Return whether this property is an alternative array. Appears in conjunction with
257 * @return Return whether this property is an alt-text array. Appears in conjunction with
259 * Each array element is a simple property with an <tt>xml:lang</tt> attribute.
307 * @return Returns whether the property is of composite type - an array or a struct
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ValueType.java 47 public static final int ARRAY = 0x1c;
  /libcore/luni/src/main/java/java/sql/
Types.java 34 * The type code that identifies the SQL type {@code ARRAY}.
36 public static final int ARRAY = 2003;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 18 int_array = ARRAY(fmt, alen)
43 CharArray = ARRAY(c_char, 3)
71 numarray = ARRAY(c_int, alen)
90 self.assertTrue(not ARRAY(c_int, 3) is ARRAY(c_int, 4))
91 self.assertTrue(ARRAY(c_int, 3) is ARRAY(c_int, 3))
120 # Array types are cached internally in the _ctypes extension,
121 # in a WeakValueDictionary. Make sure the array type is
128 # Create a new array type based on it
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 18 int_array = ARRAY(fmt, alen)
43 CharArray = ARRAY(c_char, 3)
71 numarray = ARRAY(c_int, alen)
90 self.assertTrue(not ARRAY(c_int, 3) is ARRAY(c_int, 4))
91 self.assertTrue(ARRAY(c_int, 3) is ARRAY(c_int, 3))
120 # Array types are cached internally in the _ctypes extension,
121 # in a WeakValueDictionary. Make sure the array type is
128 # Create a new array type based on it
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SimpleVerifier.java 116 boolean isArray = type.getSort() == Type.ARRAY;
146 && ("Lnull;".equals(t.getDescriptor()) || t.getSort() == Type.ARRAY);
154 if (arrayType.getSort() == Type.ARRAY) {
173 case Type.ARRAY:
178 || type.getSort() == Type.ARRAY)
194 && (t.getSort() == Type.OBJECT || t.getSort() == Type.ARRAY))
197 && (u.getSort() == Type.OBJECT || u.getSort() == Type.ARRAY))
211 // TODO case of array classes of the same dimension
276 if (t.getSort() == Type.ARRAY) {
  /external/chromium_org/third_party/skia/bench/
MathBench.cpp 336 ARRAY = 1000,
338 float fData[ARRAY];
345 for (int i = 0; i < ARRAY; ++i) {
370 for (int i = 0; i < ARRAY; ++i) {
377 for (int i = 0; i < ARRAY; ++i) {
397 ARRAY = 1000,
399 uint32_t fData[ARRAY];
406 for (int i = 0; i < ARRAY; ++i) {
430 for (int i = 0; i < ARRAY; ++i) {
437 for (int i = 0; i < ARRAY; ++i)
    [all...]
  /external/skia/bench/
MathBench.cpp 336 ARRAY = 1000,
338 float fData[ARRAY];
345 for (int i = 0; i < ARRAY; ++i) {
370 for (int i = 0; i < ARRAY; ++i) {
377 for (int i = 0; i < ARRAY; ++i) {
397 ARRAY = 1000,
399 uint32_t fData[ARRAY];
406 for (int i = 0; i < ARRAY; ++i) {
430 for (int i = 0; i < ARRAY; ++i) {
437 for (int i = 0; i < ARRAY; ++i)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseArrayEncodedValue.java 63 public int getValueType() { return ValueType.ARRAY; }
  /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...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 90 * The sort of array reference types. See {@link #getSort getSort}.
92 public static final int ARRAY = 9;
218 return new Type(buf[0] == '[' ? ARRAY : OBJECT, buf, 0, buf.length);
369 return new Type(ARRAY, buf, off, len + 1);
390 * {@link #DOUBLE DOUBLE}, {@link #ARRAY ARRAY} or
398 * Returns the number of dimensions of this array type. This method should
399 * only be used for an array type.
401 * @return the number of dimensions of this array type.
412 * Returns the type of the elements of this array type. This method should
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 112 public static final byte ARRAY = 16;
134 if ((status & ARRAY) == ARRAY)
135 returnValue += "|ARRAY";
158 public static final byte ARRAY = 3;
173 case ARRAY:
174 return "ARRAY";
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
AllClassesTest.java 51 * <BR>&nbsp;&nbsp; - there are no classes with the 'ARRAY' or
81 if ( (status & JDWPConstants.ClassStatus.ARRAY) != 0 ){
88 + Integer.toHexString(JDWPConstants.ClassStatus.ARRAY)
90 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.ARRAY)
120 * 'CLASS', 'INTERFACE', 'ARRAY';
184 assertTrue(refTypeTag == JDWPConstants.TypeTag.ARRAY
201 assertTrue(refTypeTag == JDWPConstants.TypeTag.ARRAY
AllClassesWithGenericTest.java 52 * <BR>&nbsp;&nbsp; - there are no classes with the 'ARRAY' or
83 if ( (status & JDWPConstants.ClassStatus.ARRAY) != 0 ){
91 + Integer.toHexString(JDWPConstants.ClassStatus.ARRAY)
93 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.ARRAY)
125 * 'CLASS', 'INTERFACE', 'ARRAY';
192 assertTrue(refTypeTag == JDWPConstants.TypeTag.ARRAY
211 refTypeTag == JDWPConstants.TypeTag.ARRAY
  /external/deqp/framework/delibs/debase/
deDefs.h 225 /** Length of array. C++ version does compile time check that passed value is an array reference. */
227 template <typename T, size_t N> char (&deArraySizeHelper(T (&array)[N]))[N];
228 # define DE_LENGTH_OF_ARRAY(ARRAY) ((int)(sizeof(deArraySizeHelper(ARRAY))))
230 # define DE_LENGTH_OF_ARRAY(ARRAY) ((int)(sizeof(ARRAY) / sizeof((ARRAY)[0])))
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/gcov-src/
gcov-io.h 233 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
234 ((ARRAY)[0] = (char)((VALUE) >> 24), \
235 (ARRAY)[1] = (char)((VALUE) >> 16), \
236 (ARRAY)[2] = (char)((VALUE) >> 8), \
237 (ARRAY)[3] = (char)((VALUE) >> 0))
463 /* Number of data points in the working set summary array. Using 128
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/gcov-src/
gcov-io.h 233 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
234 ((ARRAY)[0] = (char)((VALUE) >> 24), \
235 (ARRAY)[1] = (char)((VALUE) >> 16), \
236 (ARRAY)[2] = (char)((VALUE) >> 8), \
237 (ARRAY)[3] = (char)((VALUE) >> 0))
463 /* Number of data points in the working set summary array. Using 128
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/gcov-src/
gcov-io.h 233 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
234 ((ARRAY)[0] = (char)((VALUE) >> 24), \
235 (ARRAY)[1] = (char)((VALUE) >> 16), \
236 (ARRAY)[2] = (char)((VALUE) >> 8), \
237 (ARRAY)[3] = (char)((VALUE) >> 0))
463 /* Number of data points in the working set summary array. Using 128
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceTest.java 54 * <BR>Creates new instance of array by ArrayType.NewInstance command,
89 JDWPConstants.TypeTag.ARRAY, refInitTypeTag,
90 JDWPConstants.TypeTag.getName(JDWPConstants.TypeTag.ARRAY),
119 // Let's check array length
129 assertEquals("ArrayReference::Length command returned ivalid array length,",
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 61 PropertyType.ARRAY: 'base::Value::TYPE_LIST',
79 PropertyType.ARRAY,
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 29 assertEquals(ARRAY, 2003);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 115 int ARRAY = 'A'; // array access

Completed in 983 milliseconds

1 2 3 4 5 6 7 8