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

1 2 3 4 5 6 7

  /external/google-breakpad/src/testing/scripts/generator/cpp/
keywords.py 36 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
57 # These only apply to methods, they can't be types by themselves.
59 return token in TYPES or token in TYPE_MODIFIERS
  /external/googletest/googlemock/scripts/generator/cpp/
keywords.py 36 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
57 # These only apply to methods, they can't be types by themselves.
59 return token in TYPES or token in TYPE_MODIFIERS
  /external/v8/testing/gmock/scripts/generator/cpp/
keywords.py 36 TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
49 ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
57 # These only apply to methods, they can't be types by themselves.
59 return token in TYPES or token in TYPE_MODIFIERS
  /frameworks/native/cmds/installd/
matchgen.py 19 TYPES = {
30 for gid, exts in TYPES.iteritems():
65 for t in TYPES:
66 for v in TYPES[t]:
  /system/bt/tools/scripts/
change_types.sh 4 # directory and replace all |TYPES| according to the list below.
25 TYPES=(
52 for tt in "${TYPES[@]}" ;
  /tools/loganalysis/src/com/android/loganalysis/item/
DvmLockSampleItem.java 46 private static final Map<String, Class<?>> TYPES = new HashMap<String, Class<?>>() {{
66 if (TYPES.get(attribute).isAssignableFrom(value.getClass())) {
72 " expected " + TYPES.get(attribute).getCanonicalName());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilities.java 20 * Count enum types
21 * @return the number of enum types available, starting at 0
24 return DebugUtilitiesData.TYPES.length;
DebugUtilitiesData.java 21 public static final String [] TYPES = {
  /external/python/cpython2/Lib/plat-sunos5/
DLFCN.py 2 from TYPES import *
STROPTS.py 50 from TYPES import *
57 from TYPES import *
72 from TYPES import *
327 from TYPES import *
332 from TYPES import *
345 from TYPES import *
348 from TYPES import *
351 from TYPES import *
362 from TYPES import *
428 from TYPES import
    [all...]
IN.py 50 from TYPES import *
55 from TYPES import *
60 from TYPES import *
75 from TYPES import *
330 from TYPES import *
335 from TYPES import *
348 from TYPES import *
351 from TYPES import *
354 from TYPES import *
365 from TYPES import
    [all...]
TYPES.py 1 # Generated by h2py from /usr/include/sys/types.h
232 from TYPES import *
272 from TYPES import *
303 from TYPES import *
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DebugUtilities.java 19 * Count enum types
20 * @return the number of enum types available, starting at 0
23 return DebugUtilitiesData.TYPES.length;
DebugUtilitiesData.java 20 public static final String [] TYPES = {
  /external/proguard/src/proguard/optimize/
DuplicateInitializerFixer.java 42 private static final char[] TYPES = new char[]
106 for (int arrayDimension = 0; arrayDimension < typeCounter / TYPES.length; arrayDimension++)
111 newDescriptorBuffer.append(TYPES[typeCounter % TYPES.length]);
  /external/boringssl/src/crypto/perlasm/
ppc-xlate.pl 14 my %TYPES;
23 $TYPES{$name} = $type;
35 my $type = \$TYPES{$name};
277 if ($TYPES{$label} =~ /function/) {
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java 45 * <p>Th following event types are seen by next()<dl>
147 // EVENT TYPES as reported by next()
322 * to a string. For example, the value of TYPES[START_TAG] is
330 String [] TYPES = {
700 * possible returned values for different types of events.
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ZenLog.java 43 private static final int[] TYPES = new int[SIZE];
214 TYPES[sNext] = type;
232 pw.print(typeToString(TYPES[j]));
  /frameworks/rs/script_api/
Specification.cpp 37 const NumericalType TYPES[] = {
51 const int NUM_TYPES = sizeof(TYPES) / sizeof(TYPES[0]);
56 // names, arguments, return types, and inlines.
63 // Returns the index in TYPES for the provided cType
66 if (cType == TYPES[i].cType) {
74 * For non-numerical types, we don't need to convert the abbreviation.
86 /* Second, we look for present numerical types. We do it this way
87 * so the order of numerical types is always the same, no matter
91 for (auto t : TYPES) {
    [all...]
GenerateTestFiles.cpp 41 if (s == TYPES[i].cType) {
42 *dataType = TYPES[i].rsDataType;
325 if (TYPES[param.typeIndex].kind == FLOATING_POINT) {
327 TYPES[param.compatibleTypeIndex],
328 TYPES[param.typeIndex]);
331 TYPES[param.compatibleTypeIndex],
332 TYPES[param.typeIndex]);
685 /* For basic types, populate the array with values, to help understand failures. We have had
690 mJava->indent() << "Arrays.fill(" << p.javaArrayName << ", (" << TYPES[p.typeIndex].javaType
    [all...]
  /development/build/tools/
mk_sdk_repo_xml.sh 9 TYPES="tool platform-tool build-tool platform sample doc add-on system-image source"
29 - type is one of ${TYPES// /, } (or their plural).
331 TYPE=$(check_enum "${1%%s}" $TYPES)
  /external/selinux/checkpolicy/
policy_scan.l 23 #include <sys/types.h>
87 TYPES |
88 types { return(TYPES); }
  /external/r8/tools/
run_on_app.py 20 TYPES = ['dex', 'deploy', 'proguarded']
35 choices=TYPES)
134 print('Valid types are {}'.format(version.keys()))
  /external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
X86DisassemblerDecoderCommon.h 125 * Opcode types, which determine which decode table to use, both in the Intel
250 #define TYPES \
328 TYPES
  /external/elfutils/libdwfl/
relocate.c 373 /* These are the types we can relocate. */
374 #define TYPES DO_TYPE (BYTE, Byte); DO_TYPE (HALF, Half); \
384 TYPES;
394 union { TYPES; } tmpbuf;
422 TYPES;
442 TYPES;

Completed in 938 milliseconds

1 2 3 4 5 6 7