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

1 2 3 4 5 6

  /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/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...]
AliasOptions.java 24 /** The actual is an unordered array, the alias is to the first element of the array. */
25 public static final int PROP_ARRAY = PropertyOptions.ARRAY;
26 /** The actual is an ordered array, the alias is to the first element of the array. */
28 /** The actual is an alternate array, the alias is to the first element of the array. */
31 * The actual is an alternate text array, the alias is to the 'x-default' element of the array.
163 case PROP_ARRAY : return "ARRAY";
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterParameter.h 47 ARRAY,
CustomFilterArrayParameter.h 79 : CustomFilterParameter(ARRAY, name)
  /external/skia/bench/
MathBench.cpp 317 ARRAY = SkBENCHLOOP(1000),
320 float fData[ARRAY];
327 for (int i = 0; i < ARRAY; ++i) {
349 for (int i = 0; i < ARRAY; ++i) {
356 for (int i = 0; i < ARRAY; ++i) {
376 ARRAY = SkBENCHLOOP(1000),
379 uint32_t fData[ARRAY];
388 for (int i = 0; i < ARRAY; ++i) {
409 for (int i = 0; i < ARRAY; ++i) {
416 for (int i = 0; i < ARRAY; ++i)
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 55 PropertyType.ARRAY: 'base::Value::TYPE_LIST',
72 PropertyType.ARRAY,
cpp_type_generator.py 118 elif type_.property_type == PropertyType.ARRAY:
139 PropertyType.ARRAY,
235 elif type_.property_type == PropertyType.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/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestTypedefs.idl 76 typedef Array 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
  /libcore/benchmarks/src/benchmarks/regression/
MutableIntBenchmark.java 27 ARRAY() {
  /frameworks/base/tools/aidl/
aidl_language_l.l 93 {brackets}+ { SET_BUFFER(ARRAY); return ARRAY; }
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 52 { ARRAY, "array", NULL },
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
gcov-io.h 417 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
418 ((ARRAY)[0] = (char)((VALUE) >> 24), \
419 (ARRAY)[1] = (char)((VALUE) >> 16), \
420 (ARRAY)[2] = (char)((VALUE) >> 8), \
421 (ARRAY)[3] = (char)((VALUE) >> 0))
642 /* An array describing the total number of load latency fields. */
644 /* The total number of entries in the load latency array. */
646 /* The total number of entries currently allocated in the array.
672 /* An array describing the total number of mispredict entries. */
674 /* The total number of entries in the above array. *
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
gcov-io.h 417 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
418 ((ARRAY)[0] = (char)((VALUE) >> 24), \
419 (ARRAY)[1] = (char)((VALUE) >> 16), \
420 (ARRAY)[2] = (char)((VALUE) >> 8), \
421 (ARRAY)[3] = (char)((VALUE) >> 0))
642 /* An array describing the total number of load latency fields. */
644 /* The total number of entries in the load latency array. */
646 /* The total number of entries currently allocated in the array.
672 /* An array describing the total number of mispredict entries. */
674 /* The total number of entries in the above array. *
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/gcov-src/
gcov-io.h 417 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
418 ((ARRAY)[0] = (char)((VALUE) >> 24), \
419 (ARRAY)[1] = (char)((VALUE) >> 16), \
420 (ARRAY)[2] = (char)((VALUE) >> 8), \
421 (ARRAY)[3] = (char)((VALUE) >> 0))
642 /* An array describing the total number of load latency fields. */
644 /* The total number of entries in the load latency array. */
646 /* The total number of entries currently allocated in the array.
672 /* An array describing the total number of mispredict entries. */
674 /* The total number of entries in the above array. *
    [all...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/gcov-src/
gcov-io.h 417 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
418 ((ARRAY)[0] = (char)((VALUE) >> 24), \
419 (ARRAY)[1] = (char)((VALUE) >> 16), \
420 (ARRAY)[2] = (char)((VALUE) >> 8), \
421 (ARRAY)[3] = (char)((VALUE) >> 0))
642 /* An array describing the total number of load latency fields. */
644 /* The total number of entries in the load latency array. */
646 /* The total number of entries currently allocated in the array.
672 /* An array describing the total number of mispredict entries. */
674 /* The total number of entries in the above array. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
gcov-io.h 417 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
418 ((ARRAY)[0] = (char)((VALUE) >> 24), \
419 (ARRAY)[1] = (char)((VALUE) >> 16), \
420 (ARRAY)[2] = (char)((VALUE) >> 8), \
421 (ARRAY)[3] = (char)((VALUE) >> 0))
642 /* An array describing the total number of load latency fields. */
644 /* The total number of entries in the load latency array. */
646 /* The total number of entries currently allocated in the array.
672 /* An array describing the total number of mispredict entries. */
674 /* The total number of entries in the above array. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
gcov-io.h 417 #define GCOV_UNSIGNED2STRING(ARRAY,VALUE) \
418 ((ARRAY)[0] = (char)((VALUE) >> 24), \
419 (ARRAY)[1] = (char)((VALUE) >> 16), \
420 (ARRAY)[2] = (char)((VALUE) >> 8), \
421 (ARRAY)[3] = (char)((VALUE) >> 0))
642 /* An array describing the total number of load latency fields. */
644 /* The total number of entries in the load latency array. */
646 /* The total number of entries currently allocated in the array.
672 /* An array describing the total number of mispredict entries. */
674 /* The total number of entries in the above array. *
    [all...]

Completed in 410 milliseconds

1 2 3 4 5 6