/external/llvm/test/MC/AsmParser/ |
bad-macro.s | 3 .macro 23 5 // CHECK: expected identifier in '.macro' directive 7 .macro abc 33 9 // CHECK: expected identifier in '.macro' directive
|
macros-darwin.s | 3 .macro test1
|
macro-def-in-instantiation.s | 3 .macro .make_macro 9 .make_macro .macro,.mybyte,.byte,$0,.endmacro
|
macros-parsing.s | 4 .macro .test0 14 // CHECK-ERRORS: macro '.test0' is already defined 15 .macro .test0 22 .macro dummy
|
macro-err1.s | 4 .macro foo bar
|
macros.s | 4 .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 37 .macro test4 47 .macro test5 _a 54 .macro test6 $a 61 .macro test7 . [all...] |
macro-args.s | 3 .macro GET var,re2g 7 .macro GET_DEFAULT var, re2g=%ebx, re3g=%ecx 20 .macro bar 31 .macro top 34 .macro middle 40 .macro bottom 55 .macro foo
|
/external/webkit/Source/WebCore/dom/ |
EventNames.h | 30 #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(blur) [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
CommonIdentifiers.h | 27 // 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(callee) [all...] |
/dalvik/vm/mterp/armv5te/ |
platform.S | 8 * Macro for data memory barrier; not meaningful pre-ARMv6K. 10 .macro SMP_DMB 14 * Macro for data memory barrier; not meaningful pre-ARMv6K. 16 .macro SMP_DMB_ST
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
Opcode.h | 40 #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_object, 2) [all...] |
/external/webkit/Source/WebCore/css/ |
MediaFeatureNames.h | 28 #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_ratio, "-webkit-device-pixel-ratio") [all...] |
/external/webkit/Source/WebKit/win/ |
ForEachCoClass.h | 35 #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(WebError) [all...] |
/external/elfutils/libdw/ |
dwarf_macro_opcode.c | 1 /* Return macro opcode. 59 dwarf_macro_opcode (Dwarf_Macro *macro, unsigned int *opcodep) 61 if (macro == NULL) 64 *opcodep = macro->opcode;
|
dwarf_macro_param1.c | 1 /* Return first macro parameter. 59 dwarf_macro_param1 (Dwarf_Macro *macro, Dwarf_Word *paramp) 61 if (macro == NULL) 64 *paramp = macro->param1;
|
dwarf_macro_param2.c | 1 /* Return second macro parameter. 59 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) 61 if (macro == NULL) 65 *paramp = macro->param2.u; 67 *strp = macro->param2.s;
|
/external/clang/test/Preprocessor/ |
_Pragma.c | 6 _Pragma("#define macro") // expected-warning {{unknown pragma ignored}} 8 #ifdef macro
|
/external/webkit/Source/WebKit2/Shared/ |
WebPreferencesStore.h | 37 // 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(DatabasesEnabled, databasesEnabled, Bool, bool, true) [all...] |
/external/v8/src/ |
macros.py | 94 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_REGEXP(arg) = (%_IsRegExp(arg)) [all...] |
/dalvik/vm/mterp/armv7-a/ |
platform.S | 12 * Macro for data memory barrier. 14 .macro SMP_DMB 23 * Macro for data memory barrier (store/store variant). 25 .macro SMP_DMB_ST
|
/dalvik/vm/mterp/mips/ |
platform.S | 12 * Macro for data memory barrier. 14 .macro SMP_DMB 23 * Macro for data memory barrier (store/store variant). 25 .macro SMP_DMB_ST
|
/external/clang/test/Misc/ |
include-stack-for-note-flag.cpp | 12 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/ |
prefetch.h | 47 .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/llvm/test/MC/MachO/ |
gen-dwarf-macro-cpp.s | 5 .macro switcher 10 // PR14264 was a crash in the code caused by the .macro not handled correctly 16 // CHECK: file_names[ 1] 1 0x00000000 0x00000000 gen-dwarf-macro-cpp.s
|
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGNode.h | 80 // 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(BitOr, NodeResultInt32) [all...] |