Home
last modified time | relevance | path

Searched refs:DECL (Results 1 – 25 of 44) sorted by relevance

12

/external/libxml2/
DHTMLparser.c767 #define DECL (const char**) macro
772 DECL html_inline , NULL , DECL a_attrs , DECL target_attr, NULL
775 DECL html_inline , NULL , DECL html_attrs, NULL, NULL
778 DECL html_inline , NULL , DECL html_attrs, NULL, NULL
781 DECL inline_p , NULL , DECL html_attrs, NULL, NULL
784 DECL flow_param , NULL , NULL , DECL applet_attrs, NULL
787 EMPTY , NULL , DECL area_attrs , DECL target_attr, DECL alt_attr
790 DECL html_inline , NULL , DECL html_attrs, NULL, NULL
793 EMPTY , NULL , NULL , DECL target_attr, DECL href_attrs
796 EMPTY , NULL , NULL, DECL basefont_attrs, NULL
[all …]
/external/clang/test/Index/
Dannotate-parameterized-classes.m18 …s=%s:7:1:9:1 %s -target x86_64-apple-macosx10.7.0 | FileCheck -check-prefix=CHECK-INTERFACE-DECL %s
19 // CHECK-INTERFACE-DECL: Identifier: "T" [7:14 - 7:15] TemplateTypeParameter=T:7:14
20 // CHECK-INTERFACE-DECL: Identifier: "id" [7:18 - 7:20] TypeRef=id:0:0
21 // CHECK-INTERFACE-DECL: Identifier: "U" [7:22 - 7:23] TemplateTypeParameter=U:7:22
22 // CHECK-INTERFACE-DECL: Identifier: "NSObject" [7:26 - 7:34] ObjCClassRef=NSObject:4:12
24 …=%s:10:1:12:1 %s -target x86_64-apple-macosx10.7.0 | FileCheck -check-prefix=CHECK-CATEGORY-DECL %s
25 // CHECK-CATEGORY-DECL: Identifier: "T" [10:14 - 10:15] TemplateTypeParameter=T:10:14
26 // CHECK-CATEGORY-DECL: Identifier: "id" [10:18 - 10:20] TypeRef=id:0:0
27 // CHECK-CATEGORY-DECL: Identifier: "U" [10:22 - 10:23] TemplateTypeParameter=U:10:22
28 // CHECK-CATEGORY-DECL: Identifier: "NSObject" [10:26 - 10:34] ObjCClassRef=NSObject:4:12
/external/clang/test/CoverageMapping/
Dmacro-expressions.cpp5 #define DECL(T, x) T x macro
70 for (ASSIGN(DECL(int, j), 0); LT(j, i); INC(j)) {} in foo()
72 ASSIGN(DECL(int, k), 0); in foo()
83 for (DECL(int, j) : ARR(int, 1, 2, 3)) {} in foo()
/external/v8/src/heap/
Dheap.h311 #define DECL(type, name, camel_name) k##camel_name##RootIndex, macro
312 STRONG_ROOT_LIST(DECL)
313 #undef DECL
315 #define DECL(name, str) k##name##RootIndex, macro
316 INTERNALIZED_STRING_LIST(DECL)
317 #undef DECL
319 #define DECL(name) k##name##RootIndex, macro
320 PRIVATE_SYMBOL_LIST(DECL)
321 #undef DECL
323 #define DECL(name, description) k##name##RootIndex, macro
[all …]
/external/clang/lib/AST/
DDeclBase.cpp40 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; macro
41 #define ABSTRACT_DECL(DECL) argument
48 #define DECL(DERIVED, BASE) \ macro
52 #define ABSTRACT_DECL(DECL) argument
106 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; in getDeclKindName() macro
107 #define ABSTRACT_DECL(DECL) in getDeclKindName() argument
126 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; in getDeclKindName() macro
127 #define ABSTRACT_DECL(DECL) in getDeclKindName() argument
141 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; in PrintStats() macro
142 #define ABSTRACT_DECL(DECL) in PrintStats() argument
[all …]
DASTTypeTraits.cpp32 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, macro
79 #define DECL(DERIVED, BASE) \ in getFromNode() macro
/external/clang/include/clang/AST/
DDeclVisitor.h40 #define DECL(DERIVED, BASE) \ in Visit() macro
42 #define ABSTRACT_DECL(DECL) in Visit() argument
50 #define DECL(DERIVED, BASE) \ macro
DASTFwd.h21 #define DECL(DERIVED, BASE) class DERIVED##Decl; macro
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DCommonTreeAdaptor.as36 * token DECL, but you need to create it as a payload or whatever for
37 * the DECL node as in ^(DECL type ID).
48 * token DECL, but you need to create it as a payload or whatever for
49 * the DECL node as in ^(DECL type ID).
DBaseTreeAdaptor.as215 * token DECL, but you need to create it as a payload or whatever for
216 * the DECL node as in ^(DECL type ID).
227 * token DECL, but you need to create it as a payload or whatever for
228 * the DECL node as in ^(DECL type ID).
/external/antlr/runtime/ObjC/Framework/examples/treeparser/
DLang.g8 tokens {DECL;} // an imaginary node
12 decl : type ID ';' -> ^(DECL type ID)
DLangDumpDecl.m87 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]];
118 …3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:8:1: decl : ^( DECL type declarator ) ;
131 …ntlr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:8:6: ( ^( DECL type declarator ) )…
132 …/antlr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:8:8: ^( DECL type declarator ) /…
136 [self match:input TokenType:DECL Follow:FOLLOW_DECL_in_decl45];
DLangParser.m184 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]];
302 …3/runtime/ObjC/Framework/examples/treeparser/Lang.g:12:1: decl : type ID ';' -> ^( DECL type ID ) ;
334 …ntime/ObjC/Framework/examples/treeparser/Lang.g:12:6: ( type ID ';' -> ^( DECL type ID ) ) // rule…
370 // 12:20: -> ^( DECL type ID )
372 …source/antlr/code/antlr3/runtime/ObjC/Framework/examples/treeparser/Lang.g:12:23: ^( DECL type ID )
376 [[treeAdaptor createTree:DECL Text:@"DECL"] retain]
Doutput1 tree: (DECL int a)
DLangDumpDecl.tokens2 DECL=4
DLang.tokens2 DECL=4
DLangDumpDecl.g8 decl : ^(DECL type declarator)
DREADME.txt10 tree: (DECL int a)
/external/libvpx/libvpx/vpx_dsp/x86/
Dvariance_sse2.c426 #define DECL(w, opt) \ macro
432 DECL(4, opt1); \
433 DECL(8, opt1); \
434 DECL(16, opt1)
439 #undef DECL
496 #define DECL(w, opt) \ macro
503 DECL(4, opt1); \
504 DECL(8, opt1); \
505 DECL(16, opt1)
509 #undef DECL
Dhighbd_variance_sse2.c252 #define DECL(w, opt) \ macro
258 DECL(8, opt); \
259 DECL(16, opt)
264 #undef DECL
405 #define DECL(w, opt) \ macro
412 DECL(16, opt1) \
413 DECL(8, opt1)
416 #undef DECL
/external/antlr/runtime/ObjC/Framework/
DCommonTreeAdaptor.m64 * token DECL, but you need to create it as a payload or whatever for
65 * the DECL node as in ^(DECL type ID).
83 * token DECL, but you need to create it as a payload or whatever for
84 * the DECL node as in ^(DECL type ID).
DBaseTreeAdaptor.m356 * token DECL, but you need to create it as a payload or whatever for
357 * the DECL node as in ^(DECL type ID).
369 * token DECL, but you need to create it as a payload or whatever for
370 * the DECL node as in ^(DECL type ID).
/external/libaom/libaom/aom_dsp/x86/
Dvariance_sse2.c333 #define DECL(w, opt) \ macro
339 DECL(4, opt); \
340 DECL(8, opt); \
341 DECL(16, opt)
346 #undef DECL
407 #define DECL(w, opt) \ macro
414 DECL(4, opt); \
415 DECL(8, opt); \
416 DECL(16, opt)
420 #undef DECL
/external/compiler-rt/test/asan/TestCases/Posix/
Dcoverage-direct-large.cc39 #define DECL(x) __attribute__((noinline)) static void x() {} macro
42 F4(DECL, f) in F4() argument
/external/clang/test/CodeGen/
Dcfstring-windows.c16 #if defined(DECL)

12