HomeSort by relevance Sort by last modified time
    Searched defs:VOID (Results 1 - 24 of 24) sorted by null

  /external/clang/test/CXX/temp/temp.param/
p7.cpp 4 // floating point, class, or void type.
13 typedef void VOID;
14 template<VOID a> class X01; // expected-error{{cannot have type}}
  /external/v8/src/
win32-headers.h 82 #undef VOID
platform-win32.cc 155 inline void MemoryBarrier() {
186 void OS::MemCopy(void* dest, const void* src, size_t size) {
256 void SetToCurrentTime();
291 static void TzSet();
388 void Time::TzSet() {
446 void Time::SetToCurrentTime() {
573 void OS::Setup() {
688 static void VPrintHelper(FILE* stream, const char* format, va_list args)
    [all...]
  /dalvik/dx/src/com/android/dx/gen/
Type.java 53 /** The {@code void} primitive type. Only used as a return type. */
54 public static final Type<Void> VOID = new Type<Void>(com.android.dx.rop.type.Type.VOID);
73 PRIMITIVE_TO_TYPE.put(void.class, VOID);
116 public MethodId<T, Void> getConstructor(Type<?>... parameters) {
117 return new MethodId<T, Void>(this, VOID, "<init>", new TypeList(parameters))
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/
basicdefs.h 74 /* (VOID *) is the generic pointer type; some ancient compilers
75 don't know about (void *), and typically use (char *) instead.
76 VCAST() is used to cast to and from (VOID *)s --- but if the
77 compiler *does* support (void *) make this a no-op, so that
81 #ifndef VOID
82 # define VOID void
90 #define REALLOC(x,n,t) (VCAST(t *)ck_realloc(VCAST(VOID *)(x),(n)*sizeof(t)))
91 #define MEMDUP(x,n,t) (VCAST(t *)ck_memdup(VCAST(VOID *)(x),(n)*sizeof(t)))
92 #define FREE(x) (ck_free(VCAST(VOID *)x)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 58 /** {@code non-null;} instance corresponding to the class {@code Void} */
59 public static final CstType VOID = intern(Type.VOID_CLASS);
113 case Type.BT_VOID: return VOID;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 58 /** {@code non-null;} instance corresponding to the class {@code Void} */
59 public static final CstType VOID = intern(Type.VOID_CLASS);
113 case Type.BT_VOID: return VOID;
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 34 *! 11-Aug-2000 ag: Added 'typedef void VOID'.
91 #define NULL ((void *)0) /* Null pointer. */
136 #ifndef VOID
137 #define VOID void
140 typedef VOID *PVOID; /* p */
190 typedef VOID *LPVOID; /*lp */
191 typedef VOID *LPCVOID; /*lpcvoid */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 34 *! 11-Aug-2000 ag: Added 'typedef void VOID'.
91 #define NULL ((void *)0) /* Null pointer. */
136 #ifndef VOID
137 #define VOID void
140 typedef VOID *PVOID; /* p */
190 typedef VOID *LPVOID; /*lp */
191 typedef VOID *LPCVOID; /*lpcvoid */
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 38 /** basic type constant for {@code void} */
98 /** {@code non-null;} instance representing {@code void} */
99 public static final Type VOID = new Type("V", BT_VOID);
121 * Note: VOID isn't put in the intern table, since it's special and
137 CLASS_TYPE_MAP.put(void.class, VOID);
222 * {@code non-null;} instance representing {@code java.lang.Void}; the
226 public static final Type VOID_CLASS = intern("Ljava/lang/Void;");
301 * {@code "V"} (that is, type {@code void}) as a valid
316 * {@code "V"} (that is, type {@code void}) as a vali
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 37 /** basic type constant for {@code void} */
97 /** {@code non-null;} instance representing {@code void} */
98 public static final Type VOID = new Type("V", BT_VOID);
120 * Note: VOID isn't put in the intern table, since it's special and
207 * {@code non-null;} instance representing {@code java.lang.Void}; the
211 public static final Type VOID_CLASS = intern("Ljava/lang/Void;");
286 * {@code "V"} (that is, type {@code void}) as a valid
372 * for {@code void}. Other than that one caveat, this method
383 // This is the one special case where void may be returned.
384 return VOID;
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 63 /** Represents the void primitive type */
64 public static final Type VOID = new Type(CtClass.voidType);
113 prims.put(CtClass.voidType, VOID);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 63 int VOID = 344;
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ralink.h 92 #define VOID void
96 typedef VOID *PVOID;
  /external/wpa_supplicant_8/src/drivers/
driver_ralink.h 93 #define VOID void
97 typedef VOID *PVOID;
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_lib.h 41 typedef NJ_VOID VOID;
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 103 public static final int VOID=75;
164 public final void mLONGLITERAL() throws RecognitionException {
185 public final void mINTLITERAL() throws RecognitionException {
205 public final void mIntegerNumber() throws RecognitionException {
367 public final void mHexPrefix() throws RecognitionException {
421 public final void mHexDigit() throws RecognitionException {
445 public final void mLongSuffix() throws RecognitionException {
469 public final void mNonIntegerNumber() throws RecognitionException {
858 public final void mExponent() throws RecognitionException {
938 public final void mFloatSuffix() throws RecognitionException
    [all...]
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
248 public static final int VOID=75;
429 public void incRuleLevel() { ruleLevel++; }
430 public void decRuleLevel() { ruleLevel--; }
466 public final void compilationUnit() throws RecognitionException {
598 if ( (LA4_0==IDENTIFIER||LA4_0==ABSTRACT||LA4_0==BOOLEAN||LA4_0==BYTE||(LA4_0>=CHAR && LA4_0<=CLASS)||LA4_0==DOUBLE||LA4_0==ENUM||LA4_0==FINAL||LA4_0==FLOAT||(LA4_0>=INT && LA4_0<=NATIVE)||(LA4_0>=PRIVATE && LA4_0<=PUBLIC)||(LA4_0>=SHORT && LA4_0<=STRICTFP)||LA4_0==SYNCHRONIZED||LA4_0==TRANSIENT||(LA4_0>=VOID && LA4_0<=VOLATILE)||LA4_0==SEMI||LA4_0==MONKEYS_AT||LA4_0==LT) ) {
654 public final void packageDeclaration() throws RecognitionException
    [all...]
  /prebuilt/common/asm/
asm-3.1.jar 
  /prebuilt/common/jarjar/
jarjar-1.0rc8.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1123 milliseconds