Searched refs:macro (Results 1 - 25 of 145) sorted by relevance

123456

/external/llvm/test/MC/AsmParser/
H A Dbad-macro.s3 .macro 23
5 // CHECK: expected identifier in '.macro' directive
7 .macro abc 33
9 // CHECK: expected identifier in '.macro' directive
H A Dmacro-def-in-instantiation.s3 .macro .make_macro
9 .make_macro .macro,.mybyte,.byte,$0,.endmacro
H A Dmacros-parsing.s4 .macro .test0
14 // CHECK-ERRORS: macro '.test0' is already defined
15 .macro .test0
22 .macro dummy
H A Dmacros.s4 .macro .test0
7 .macro .test1
15 // CHECK-ERRORS: <instantiation>:1:1: note: while in macro instantiation
18 // CHECK-ERRORS: 11:1: note: while in macro instantiation
22 .macro test2
27 .macro test3
34 .macro test4
41 .macro test5 _a
48 .macro test6 $a
55 .macro test
[all...]
H A Dmacro-err1.s4 .macro foo bar
H A Dmacro-args.s3 .macro GET var,re2g
12 .macro bar
23 .macro top
26 .macro middle
32 .macro bottom
47 .macro foo
/external/webkit/Source/WebCore/dom/
H A DEventNames.h30 #define DOM_EVENT_NAMES_FOR_EACH(macro) \
32 macro(abort) \
33 macro(beforecopy) \
34 macro(beforecut) \
35 macro(beforeload) \
36 macro(beforepaste) \
37 macro(beforeprocess) \
38 macro(beforeunload) \
39 macro(blocked) \
40 macro(blu
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DCommonIdentifiers.h27 // MarkedArgumentBuffer of property names, passed to a macro so we can do set them up various
29 #define JSC_COMMON_IDENTIFIERS_EACH_PROPERTY_NAME(macro) \
30 macro(__defineGetter__) \
31 macro(__defineSetter__) \
32 macro(__lookupGetter__) \
33 macro(__lookupSetter__) \
34 macro(apply) \
35 macro(arguments) \
36 macro(call) \
37 macro(calle
[all...]
/external/webkit/Source/JavaScriptCore/bytecode/
H A DOpcode.h40 #define FOR_EACH_OPCODE_ID(macro) \
41 macro(op_enter, 1) \
42 macro(op_create_activation, 2) \
43 macro(op_init_lazy_reg, 2) \
44 macro(op_create_arguments, 2) \
45 macro(op_create_this, 3) \
46 macro(op_get_callee, 2) \
47 macro(op_convert_this, 2) \
48 macro(op_convert_this_strict, 2) \
50 macro(op_new_objec
[all...]
/external/webkit/Source/WebCore/css/
H A DMediaFeatureNames.h28 #define CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(macro) \
29 macro(color, "color") \
30 macro(grid, "grid") \
31 macro(monochrome, "monochrome") \
32 macro(height, "height") \
33 macro(width, "width") \
34 macro(orientation, "orientation") \
35 macro(aspect_ratio, "aspect-ratio") \
36 macro(device_aspect_ratio, "device-aspect-ratio") \
37 macro(device_pixel_rati
[all...]
/external/webkit/Source/WebKit/win/
H A DForEachCoClass.h35 #define WEB_DATABASE_MANAGER(macro) macro(WebDatabaseManager)
37 #define WEB_DATABASE_MANAGER(macro)
40 // Items may only be added to the end of this macro. No items may be removed from it.
41 #define FOR_EACH_COCLASS(macro) \
42 macro(CFDictionaryPropertyBag) \
43 macro(WebCache) \
44 WEB_DATABASE_MANAGER(macro) \
45 macro(WebDownload) \
46 macro(WebErro
[all...]
/external/elfutils/libdw/
H A Ddwarf_macro_opcode.c1 /* Return macro opcode.
59 dwarf_macro_opcode (Dwarf_Macro *macro, unsigned int *opcodep) argument
61 if (macro == NULL)
64 *opcodep = macro->opcode;
H A Ddwarf_macro_param1.c1 /* Return first macro parameter.
59 dwarf_macro_param1 (Dwarf_Macro *macro, Dwarf_Word *paramp) argument
61 if (macro == NULL)
64 *paramp = macro->param1;
H A Ddwarf_macro_param2.c1 /* Return second macro parameter.
59 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) argument
61 if (macro == NULL)
65 *paramp = macro->param2.u;
67 *strp = macro->param2.s;
/external/clang/test/Preprocessor/
H A D_Pragma.c6 _Pragma("#define macro") // expected-warning {{unknown pragma ignored}}
8 #ifdef macro
/external/webkit/Source/WebKit2/Shared/
H A DWebPreferencesStore.h37 // macro(KeyUpper, KeyLower, TypeNameUpper, TypeName, DefaultValue)
39 #define FOR_EACH_WEBKIT_BOOL_PREFERENCE(macro) \
40 macro(JavaScriptEnabled, javaScriptEnabled, Bool, bool, true) \
41 macro(LoadsImagesAutomatically, loadsImagesAutomatically, Bool, bool, true) \
42 macro(LoadsSiteIconsIgnoringImageLoadingPreference, loadsSiteIconsIgnoringImageLoadingPreference, Bool, bool, false) \
43 macro(PluginsEnabled, pluginsEnabled, Bool, bool, true) \
44 macro(JavaEnabled, javaEnabled, Bool, bool, true) \
45 macro(OfflineWebApplicationCacheEnabled, offlineWebApplicationCacheEnabled, Bool, bool, false) \
46 macro(LocalStorageEnabled, localStorageEnabled, Bool, bool, true) \
47 macro(DatabasesEnable
[all...]
/external/clang/test/Misc/
H A Dinclude-stack-for-note-flag.cpp12 bool macro(int x, int y) { function
21 // STACK: note: expanded from macro
28 // STACKLESS: note: expanded from macro
/external/kernel-headers/original/asm-mips/
H A Dprefetch.h47 .macro __pref hint addr
53 .macro pref_load addr
57 .macro pref_store addr
61 .macro pref_load_streamed addr
65 .macro pref_store_streamed addr
69 .macro pref_load_retained addr
73 .macro pref_store_retained addr
77 .macro pref_wback_inv addr
81 .macro pref_prepare_for_store addr
/external/v8/src/
H A Dmacros.py94 macro IS_NULL(arg) = (arg === null);
95 macro IS_NULL_OR_UNDEFINED(arg) = (arg == null);
96 macro IS_UNDEFINED(arg) = (typeof(arg) === 'undefined');
97 macro IS_NUMBER(arg) = (typeof(arg) === 'number');
98 macro IS_STRING(arg) = (typeof(arg) === 'string');
99 macro IS_BOOLEAN(arg) = (typeof(arg) === 'boolean');
100 macro IS_OBJECT(arg) = (%_IsObject(arg));
101 macro IS_ARRAY(arg) = (%_IsArray(arg));
102 macro IS_FUNCTION(arg) = (%_IsFunction(arg));
103 macro IS_REGEX
[all...]
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGNode.h80 // This macro defines a set of information about all known node types, used to populate NodeId, NodeType below.
81 #define FOR_EACH_DFG_OP(macro) \
83 macro(JSConstant, NodeResultJS | NodeIsConstant) \
84 macro(Int32Constant, NodeResultJS | NodeIsConstant) \
85 macro(DoubleConstant, NodeResultJS | NodeIsConstant) \
86 macro(ConvertThis, NodeResultJS) \
89 macro(GetLocal, NodeResultJS) \
90 macro(SetLocal, NodeMustGenerate) \
93 macro(BitAnd, NodeResultInt32) \
94 macro(BitO
[all...]
/external/clang/test/Modules/
H A Dmacros.c10 # error INTEGER macro should be visible
14 # error FLOAT macro should not be visible
18 # error MODULE macro should not be visible
25 #__public_macro WIBBLE // expected-error{{no macro named 'WIBBLE'}}
29 int i = INTEGER; // the value was exported, the macro was not.
H A Dsubmodules-preprocess.cpp8 # error HAVE_VECTOR macro is not available (but should be)
12 # error HAVE_TYPE_TRAITS_MAP macro is available (but shouldn't be)
16 # error HAVE_HASH_MAP macro is available (but shouldn't be)
22 # error HAVE_VECTOR macro is not available (but should be)
26 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
30 # error HAVE_HASH_MAP macro is available (but shouldn't be)
38 # error HAVE_VECTOR macro is not available (but should be)
42 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be)
46 # error HAVE_HASH_MAP macro is available (but shouldn't be)
52 # error HAVE_VECTOR macro i
[all...]
/external/llvm/include/llvm/Config/
H A DAsmParsers.def.in12 |* the LLVM_ASM_PARSER macro to be a function-like macro with a *|
24 # error Please define the macro LLVM_ASM_PARSER(TargetName)
H A DAsmPrinters.def.in12 |* the LLVM_ASM_PRINTER macro to be a function-like macro with a *|
24 # error Please define the macro LLVM_ASM_PRINTER(TargetName)
H A DDisassemblers.def.in12 |* the LLVM_DISASSEMBLER macro to be a function-like macro with a *|
24 # error Please define the macro LLVM_DISASSEMBLER(TargetName)

Completed in 238 milliseconds

123456