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

1 2 3 4

  /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/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 41 private static final int[] TYPES = new int[SIZE];
162 TYPES[sNext] = type;
180 pw.print(typeToString(TYPES[j]));
  /frameworks/rs/api/
gen_runtime.cpp 122 int typeIndex; // Index in the TYPES array.
123 int compatibleTypeIndex; // Index in TYPES for which the test data must also fit.
330 // Write code to create a random allocation for which the data must be compatible for two types.
384 // For floats, number of bits of the exponent. 0 for integer types.
388 const Type TYPES[] = {{"f16", "FLOAT_16", "half", "half", FLOATING_POINT, 11, 5},
400 const int NUM_TYPES = sizeof(TYPES) / sizeof(TYPES[0]);
402 // Returns the index in TYPES for the provided cType
405 if (cType == TYPES[i].cType) {
676 javaBaseType = TYPES[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/checkpolicy/
policy_scan.l 23 #include <sys/types.h>
87 TYPES |
88 types { return(TYPES); }
policy_parse.y 32 #include <sys/types.h>
100 %token TYPES
475 role_type_def : ROLE identifier TYPES names ';'
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 131 final String[] TYPES = new String[] {"???", "Ins", "Upd", "Del", "Assert"};
161 sb.append(TYPES[type]);
  /external/elfutils/0.153/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;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 31 public static final String[] TYPES = {"default", "*"};
55 assertEquals(a1.types.length, a2.types.length);
57 for (i = 0; i < a1.types.length; i++) {
58 assertEquals(a1.types[i], a2.types[i]);
140 String[] types = {"default", "*"}; local
144 types, "IPV4V6", "IP", true, 14, 0, false, 0, 0, 0, 0, "", "");
  /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());
  /packages/apps/Launcher3/util/com/android/launcher3/
DecoderRing.java 73 private static Class[] TYPES = {
143 type = TYPES[key.type];
235 MessageNano proto;// other types are wrapped in a checksum message
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoderCommon.h 277 // Opcode types, which determine which decode table to use, both in the Intel
370 #define TYPES \
461 TYPES
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeXmlBlockParser.java 356 throw new XmlPullParserException("expected " + TYPES[type]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 794 * Types are one of the built-in types (CDATA, ID, IDREF, IDREFS, ENTITY,
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
directory_contents.js 279 * The search types on the Drive File System.
296 {query: '', types: this.searchType_, maxResults: 500},
430 * and filling the fileList. Different descendants handle various types of
727 var TYPES = 'filesystem|drive';
729 this.context_.metadataCache.getLatest(entries, TYPES, callback);
731 this.context_.metadataCache.get(entries, TYPES, callback);
  /external/elfutils/0.153/src/
strip.c     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-xml-3.3.jar 
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 271 throw new XmlPullParserException( "expected "+ TYPES[ type ]+getPositionDescription());
377 // Note: don't attempt to convert any other types, because
387 // Note: don't attempt to convert any other types, because
396 // Note: don't attempt to convert any other types, because
406 // Note: don't attempt to convert any other types, because
416 // Note: don't attempt to convert any other types, because
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_optparse.py 13 import types namespace
171 type(output) is types.StringType,
439 self.parser.add_option("-s", type=types.StringType)
441 self.parser.add_option("-x", type=types.IntType)
459 TYPES = Option.TYPES + ('duration',)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/plat-linux2/
IN.py 174 # Included from bits/types.h
358 from TYPES import *
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_optparse.py 13 import types namespace
171 type(output) is types.StringType,
439 self.parser.add_option("-s", type=types.StringType)
441 self.parser.add_option("-x", type=types.IntType)
459 TYPES = Option.TYPES + ('duration',)
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-xml-4.0.jar 

Completed in 5246 milliseconds

1 2 3 4