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

1 2

  /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/clang/test/SemaCXX/
old-style-cast.cpp 3 void test1() {
6 (void**)x; // expected-warning {{use of old-style cast}} expected-warning {{expression result unused}}
8 (void)y;
9 typedef void VOID;
10 (VOID)y;
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlTextEscapingMode.java 82 VOID,
114 // http://www.w3.org/TR/html-markup/syntax.html#void-elements
115 .put("area", VOID)
116 .put("base", VOID)
117 .put("br", VOID)
118 .put("col", VOID)
119 .put("command", VOID)
120 .put("embed", VOID)
121 .put("hr", VOID)
122 .put("img", VOID)
    [all...]
  /external/chromium_org/v8/src/base/
win32-headers.h 64 #undef VOID
  /external/deqp/framework/randomshaders/
rsgVariableType.cpp 81 int VariableType::getScalarSize (void) const
180 const VariableType& VariableType::getElementType (void) const
204 void VariableType::tokenizeShortType (TokenStream& str) const
217 str << Token::VOID;
rsgToken.hpp 42 VOID,
127 Token (void);
135 ~Token (void);
145 inline Type getType (void) const { return m_type; }
147 const char* getIdentifier (void) const;
148 float getFloat (void) const;
149 int getInt (void) const;
150 bool getBool (void) const;
164 inline Token::Token (void)
199 inline const char* Token::getIdentifier (void) cons
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 61 /** The {@code void} primitive type. Only used as a return type. */
62 public static final TypeId<Void> VOID = new TypeId<Void>(com.android.dx.rop.type.Type.VOID);
81 PRIMITIVE_TO_TYPE.put(void.class, VOID);
124 public MethodId<T, Void> getConstructor(TypeId<?>... parameters) {
125 return new MethodId<T, Void>(this, VOID, "<init>", new TypeList(parameters))
    [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;
  /external/chromium_org/third_party/skia/third_party/lua/src/
luac.c 22 static void PrintFunction(const Proto* f, int full);
35 static void fatal(const char* message)
41 static void cannot(const char* what)
47 static void usage(const char* message)
119 static const char* reader(lua_State *L, void *ud, size_t *size)
156 static int writer(lua_State* L, const void* p, size_t size, void* u)
221 #define VOID(p) ((const void*)(p))
223 static void PrintString(const TString* ts
    [all...]
  /external/dexmaker/src/dx/java/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;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 45 * The sort of the <tt>void</tt> type. See {@link #getSort getSort}.
47 public static final int VOID = 0;
100 * The <tt>void</tt> type.
102 public static final Type VOID_TYPE = new Type(VOID);
231 } else if (c == Void.TYPE) {
387 * @return {@link #VOID VOID}, {@link #BOOLEAN BOOLEAN},
428 case VOID:
429 return "void";
514 private void getDescriptor(final StringBuffer buf) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 29 public static final int VOID=16;
48 public final void mT__21() throws RecognitionException {
68 public final void mT__22() throws RecognitionException {
88 public final void mT__23() throws RecognitionException {
108 public final void mT__24() throws RecognitionException {
128 public final void mT__25() throws RecognitionException {
148 public final void mT__26() throws RecognitionException {
168 public final void mFOR() throws RecognitionException {
189 public final void mINT_TYPE() throws RecognitionException {
210 public final void mCHAR() throws RecognitionException
    [all...]
SimpleCTP.java 10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
32 public static final int VOID=16;
57 public final void program() throws RecognitionException {
113 public final void declaration() throws RecognitionException {
205 public final void variable() throws RecognitionException {
242 public final void declarator() throws RecognitionException {
265 public final void functionHeader() throws RecognitionException {
332 public final void formalParameter() throws RecognitionException {
368 // SimpleCTP.g:34:1: type : ( 'int' | 'char' | 'void' | ID );
369 public final void type() throws RecognitionException
    [all...]
SimpleCParser.java 13 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
35 public static final int VOID=16;
54 public void setTreeAdaptor(TreeAdaptor adaptor) {
95 if ( (LA1_0==ID||(LA1_0>=INT_TYPE && LA1_0<=VOID)) ) {
491 if ( (LA4_0==ID||(LA4_0>=INT_TYPE && LA4_0<=VOID)) ) {
694 // SimpleC.g:43:1: type : ( 'int' | 'char' | 'void' | ID );
706 // SimpleC.g:44:5: ( 'int' | 'char' | 'void' | ID )
712 if ( input.LA(1)==ID||(input.LA(1)>=INT_TYPE && input.LA(1)<=VOID) ) {
791 else if ( ((LA5_0>=INT_TYPE && LA5_0<=VOID)) ) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 29 public static final int VOID=16;
48 public final void mT__21() throws RecognitionException {
68 public final void mT__22() throws RecognitionException {
88 public final void mT__23() throws RecognitionException {
108 public final void mT__24() throws RecognitionException {
128 public final void mT__25() throws RecognitionException {
148 public final void mT__26() throws RecognitionException {
168 public final void mFOR() throws RecognitionException {
189 public final void mINT_TYPE() throws RecognitionException {
210 public final void mCHAR() throws RecognitionException
    [all...]
SimpleCTP.java 10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
32 public static final int VOID=16;
57 public final void program() throws RecognitionException {
113 public final void declaration() throws RecognitionException {
205 public final void variable() throws RecognitionException {
242 public final void declarator() throws RecognitionException {
265 public final void functionHeader() throws RecognitionException {
332 public final void formalParameter() throws RecognitionException {
368 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:34:1: type : ( 'int' | 'char' | 'void' | ID );
369 public final void type() throws RecognitionException
    [all...]
SimpleCParser.java 13 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
35 public static final int VOID=16;
54 public void setTreeAdaptor(TreeAdaptor adaptor) {
95 if ( (LA1_0==ID||(LA1_0>=INT_TYPE && LA1_0<=VOID)) ) {
491 if ( (LA4_0==ID||(LA4_0>=INT_TYPE && LA4_0<=VOID)) ) {
694 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:43:1: type : ( 'int' | 'char' | 'void' | ID );
706 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:44:5: ( 'int' | 'char' | 'void' | ID )
712 if ( input.LA(1)==ID||(input.LA(1)>=INT_TYPE && input.LA(1)<=VOID) ) {
791 else if ( ((LA5_0>=INT_TYPE && LA5_0<=VOID)) ) {
    [all...]
  /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 36 /** basic type constant for {@code void} */
96 /** {@code non-null;} instance representing {@code void} */
97 public static final Type VOID = new Type("V", BT_VOID);
119 * Note: VOID isn't put in the intern table, since it's special and
206 * {@code non-null;} instance representing {@code java.lang.Void}; the
210 public static final Type VOID_CLASS = intern("Ljava/lang/Void;");
285 * {@code "V"} (that is, type {@code void}) as a valid
371 * for {@code void}. Other than that one caveat, this method
382 // This is the one special case where void may be returned.
383 return VOID;
    [all...]
  /external/dexmaker/src/dx/java/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/chromium_org/v8/src/base/platform/
platform-win32.cc 52 inline void MemoryBarrier() {
121 void Clear() {
127 void InitializeIfNeeded() {
225 void SetToCurrentTime();
306 void Win32Time::SetToCurrentTime() {
470 void OS::DisposeTimezoneCache(TimezoneCache* cache) {
475 void OS::ClearTimezoneCache(TimezoneCache* cache) {
561 static void VPrintHelper(FILE* stream, const char* format, va_list args) {
613 void OS::Print(const char* format, ...) {
621 void OS::VPrint(const char* format, va_list args)
    [all...]
  /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...]

Completed in 839 milliseconds

1 2