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

1 2 3 4 5

  /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
  /system/bt/tools/scripts/
change_types.sh 4 # directory and replace all |TYPES| according to the list below.
25 TYPES=(
44 for tt in "${TYPES[@]}" ;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
AbstractVisitor.java 50 * Types for <code>operand</code> parameter of the
54 public static final String[] TYPES;
87 TYPES = new String[12];
91 TYPES[i++] = s.substring(j, l);
ASMifierMethodVisitor.java 154 ? TYPES[operand]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilities.java 18 * Count enum types
19 * @return the number of enum types available, starting at 0
22 return DebugUtilitiesData.TYPES.length;
DebugUtilitiesData.java 18 public static final String [] TYPES = {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DebugUtilities.java 17 * Count enum types
18 * @return the number of enum types available, starting at 0
21 return DebugUtilitiesData.TYPES.length;
DebugUtilitiesData.java 17 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]);
  /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/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;
318 if (TYPES[param.typeIndex].kind == FLOATING_POINT) {
320 TYPES[param.compatibleTypeIndex],
321 TYPES[param.typeIndex]);
324 TYPES[param.compatibleTypeIndex],
325 TYPES[param.typeIndex]);
678 /* For basic types, populate the array with values, to help understand failures. We have had
683 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 support"
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/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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
BasePullParser.java 242 throw new XmlPullParserException("expected " + TYPES[type] + getPositionDescription());
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoderCommon.h 282 // Opcode types, which determine which decode table to use, both in the Intel
390 #define TYPES \
478 TYPES
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 110 CASE(TYPES);
  /prebuilts/tools/common/m2/repository/xmlpull/xmlpull/1.1.3.1/
xmlpull-1.1.3.1.jar 
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeXmlBlockParser.java 356 throw new XmlPullParserException("expected " + TYPES[type]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Http2.java 177 // Implementations MUST discard frames that have unknown or unsupported types.
671 String formattedType = type < TYPES.length ? TYPES[type] : format("0x%02x", type);
684 switch (type) { // Special case types that have 0 or 1 flag.
695 // Special case types that have overlap flag values.
704 /** Lookup table for valid frame types. */
705 private static final String[] TYPES = new String[] {
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 795 * Types are one of the built-in types (CDATA, ID, IDREF, IDREFS, ENTITY,
    [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
cuda_test.hpp 252 //! return vector with types from specified range.
253 CV_EXPORTS std::vector<MatType> types(int depth_start, int depth_end, int cn_start, int cn_end);
255 //! return vector with all types (depth: CV_8U-CV_64F, channels: 1-4).
259 #define TYPES(depth_start, depth_end, cn_start, cn_end) testing::ValuesIn(types(depth_start, depth_end, cn_start, cn_end))
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-xml-3.3.jar 

Completed in 976 milliseconds

1 2 3 4 5