/external/dhcpcd/ |
H A D | showlease.c | 22 #define ARRAY (1 << 9) macro 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_server [all...] |
H A D | dhcp.c | 49 #define ARRAY (1 << 9) macro 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_server [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
H A D | PropertyOptions.java | 39 public static final int ARRAY = 0x00000200; field in class:PropertyOptions 199 return getOption(ARRAY); 209 setOption(ARRAY, value); 311 return (getOptions() & (ARRAY | STRUCT)) > 0; 320 return (getOptions() & (ARRAY | STRUCT)) == 0; 362 ~(ARRAY | ARRAY_ORDERED | ARRAY_ALTERNATE | ARRAY_ALT_TEXT)) == 0; 378 ARRAY | 399 case ARRAY : return "ARRAY"; 418 if ((options & STRUCT) > 0 && (options & ARRAY) > [all...] |
H A D | AliasOptions.java | 25 public static final int PROP_ARRAY = PropertyOptions.ARRAY; 163 case PROP_ARRAY : return "ARRAY";
|
/external/skia/bench/ |
H A D | MathBench.cpp | 336 ARRAY = 1000, enumerator in enum:FloorBench::__anon26187 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, enumerator in enum:CLZBench::__anon26188 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; 459 ARRAY =1000, enumerator in enum:NormalizeBench::__anon26189 [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
H A D | cpp_util.py | 61 PropertyType.ARRAY: 'base::Value::TYPE_LIST', 79 PropertyType.ARRAY,
|
H A D | ppapi_generator.py | 138 if type_.property_type == model.PropertyType.ARRAY: 163 entity.property_type != model.PropertyType.ARRAY): 184 elif type_.property_type == model.PropertyType.ARRAY: 250 if type_.property_type == model.PropertyType.ARRAY: 255 if type_.property_type == model.PropertyType.ARRAY:
|
H A D | cpp_type_generator.py | 118 elif type_.property_type == PropertyType.ARRAY: 139 PropertyType.ARRAY, 235 elif type_.property_type == PropertyType.ARRAY:
|
H A D | dart_generator.py | 317 elif p.type_.property_type is PropertyType.ARRAY: 687 return (type_.property_type is PropertyType.ARRAY and 696 return (type_.property_type is PropertyType.ARRAY and 712 or (type_.property_type is PropertyType.ARRAY 757 elif prop_type is PropertyType.ARRAY:
|
H A D | model_test.py | 71 self.assertEquals(model.PropertyType.ARRAY,
|
H A D | cc_generator.py | 109 elif type_.property_type == PropertyType.ARRAY: 156 t.property_type == PropertyType.ARRAY or 476 elif underlying_type.property_type == PropertyType.ARRAY: 658 elif underlying_type.property_type == PropertyType.ARRAY:
|
H A D | model.py | 181 self.property_type = PropertyType.ARRAY 447 ARRAY = _PropertyTypeInfo(False, "array") variable in class:PropertyType
|
H A D | h_generator.py | 191 elif type_.property_type == PropertyType.ARRAY:
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
H A D | TestTypedefs.idl | 73 typedef Array ARRAY;
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
H A D | TypesTest.java | 29 assertEquals(ARRAY, 2003);
|
/external/javassist/src/main/javassist/compiler/ |
H A D | TokenId.java | 115 int ARRAY = 'A'; // array access field in interface:TokenId
|
H A D | TypeChecker.java | 223 if (e.getOperator() == ARRAY) { 580 else if (token == ARRAY) 927 if (e.getOperator() == ARRAY) {
|
/external/mksh/src/ |
H A D | var.c | 187 if (vp && (vp->flag & (DEFINED|ASSOC|ARRAY)) == 785 if (set_refflag == SRF_DISABLE && (vp->flag & (ARRAY|ASSOC)) == ASSOC) 788 if (vp->flag & ARRAY) { 800 vp->flag &= ~ARRAY; 807 vpbase = (vp->flag & ARRAY) ? global(arrayname(var)) : vp; 928 if ((vp->flag & ARRAY) && (flags & 1)) { 946 vp->flag &= SPECIAL | ((flags & 1) ? 0 : ARRAY|DEFINED); 1336 vp->flag = (vp->flag | (ARRAY|DEFINED)) & ~ASSOC;
|
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
H A D | TocInsertor.pm | 228 @files = (ref($aFile) =~ m/ARRAY/) ? @$aFile : ($aFile); 776 @files = (ref($aFile) =~ m/ARRAY/) ? @$aFile : ($aFile);
|
/external/chromium_org/dbus/ |
H A D | values_util.cc | 171 case Message::ARRAY: {
|
H A D | message.h | 78 ARRAY = DBUS_TYPE_ARRAY, enumerator in enum:dbus::Message::DataType
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
H A D | api_data_source.py | 259 if type_.property_type == model.PropertyType.ARRAY: 317 elif type_.property_type == model.PropertyType.ARRAY:
|
/external/chromium_org/chromeos/dbus/ |
H A D | shill_client_unittest_base.cc | 260 case dbus::Message::ARRAY:
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
H A D | s_span.c | 785 #define SHIFT_ARRAY(ARRAY, SHIFT, LEN) \ 786 memmove(ARRAY, ARRAY + (SHIFT), (LEN) * sizeof(ARRAY[0]))
|
/external/mesa3d/src/mesa/swrast/ |
H A D | s_span.c | 785 #define SHIFT_ARRAY(ARRAY, SHIFT, LEN) \ 786 memmove(ARRAY, ARRAY + (SHIFT), (LEN) * sizeof(ARRAY[0]))
|