/external/webkit/Source/WebCore/dom/ |
D | EventNames.h | 30 #define DOM_EVENT_NAMES_FOR_EACH(macro) \ argument 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/bytecode/ |
D | Opcode.h | 40 #define FOR_EACH_OPCODE_ID(macro) \ argument 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/JavaScriptCore/runtime/ |
D | CommonIdentifiers.h | 29 #define JSC_COMMON_IDENTIFIERS_EACH_PROPERTY_NAME(macro) \ argument 30 macro(__defineGetter__) \ 31 macro(__defineSetter__) \ 32 macro(__lookupGetter__) \ 33 macro(__lookupSetter__) \ 34 macro(apply) \ 35 macro(arguments) \ 36 macro(call) \ 37 macro(callee) \ 38 macro(caller) \ [all …]
|
/external/webkit/Source/WebKit2/Shared/ |
D | WebPreferencesStore.h | 39 #define FOR_EACH_WEBKIT_BOOL_PREFERENCE(macro) \ argument 40 macro(JavaScriptEnabled, javaScriptEnabled, Bool, bool, true) \ 41 macro(LoadsImagesAutomatically, loadsImagesAutomatically, Bool, bool, true) \ 42 …macro(LoadsSiteIconsIgnoringImageLoadingPreference, loadsSiteIconsIgnoringImageLoadingPreference, … 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) \ 48 macro(XSSAuditorEnabled, xssAuditorEnabled, Bool, bool, true) \ [all …]
|
/external/webkit/Source/WebCore/css/ |
D | MediaFeatureNames.h | 28 #define CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(macro) \ argument 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/ |
D | ForEachCoClass.h | 35 #define WEB_DATABASE_MANAGER(macro) macro(WebDatabaseManager) argument 37 #define WEB_DATABASE_MANAGER(macro) argument 41 #define FOR_EACH_COCLASS(macro) \ argument 42 macro(CFDictionaryPropertyBag) \ 43 macro(WebCache) \ 44 WEB_DATABASE_MANAGER(macro) \ 45 macro(WebDownload) \ 46 macro(WebError) \ 47 macro(WebHistory) \ 48 macro(WebHistoryItem) \ [all …]
|
/external/clang/test/SemaObjCXX/ |
D | reserved-keyword-methods.mm | 4 #define FOR_EACH_KEYWORD(macro) \ 5 macro(asm) \ 6 macro(bool) \ 7 macro(catch) \ 8 macro(class) \ 9 macro(const_cast) \ 10 macro(delete) \ 11 macro(dynamic_cast) \ 12 macro(explicit) \ 13 macro(export) \ [all …]
|
/external/v8/src/ |
D | 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 …]
|
/external/webkit/Source/WebKit/qt/docs/ |
D | qtwebkit.qdocconf | 18 macro.aring.HTML = "å" 19 macro.Auml.HTML = "Ä" 20 macro.author = "\\bold{Author:}" 21 macro.br.HTML = "<br />" 22 macro.BR.HTML = "<br />" 23 macro.aacute.HTML = "á" 24 macro.eacute.HTML = "é" 25 macro.iacute.HTML = "í" 26 macro.gui = "\\bold" 27 macro.hr.HTML = "<hr />" [all …]
|
/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGNode.h | 81 #define FOR_EACH_DFG_OP(macro) \ argument 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) \ 95 macro(BitXor, NodeResultInt32) \ [all …]
|
/external/clang/test/Index/ |
D | get-cursor-macro-args.m | 2 // RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \ 3 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \ 4 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:9 \ 5 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:22 \ 6 // RUN: -cursor-at=%S/get-cursor-macro-args.h:15:12 \ 7 // RUN: -cursor-at=%S/get-cursor-macro-args.h:15:20 \ 8 // RUN: %s -include %S/get-cursor-macro-args.h | FileCheck %s 11 // RUN: c-index-test -write-pch %t.pch -x objective-c-header %S/get-cursor-macro-args.h 12 // RUN: c-index-test -cursor-at=%S/get-cursor-macro-args.h:9:12 \ 13 // RUN: -cursor-at=%S/get-cursor-macro-args.h:9:21 \ [all …]
|
D | annotate-macro-args.m | 2 …UN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:9:1:10:1 %s -include %S/annotate-m… 3 …N: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:15:1:16:1 %s -include %S/annotate-m… 6 // RUN: c-index-test -write-pch %t.pch -x objective-c-header %S/annotate-macro-args.h -Xclang -deta… 7 // RUN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:9:1:10:1 %s -include-pch %t.pch… 8 // RUN: c-index-test -test-annotate-tokens=%S/annotate-macro-args.h:15:1:16:1 %s -include-pch %t.pc… 10 // CHECK1: Identifier: "MACRO" [9:3 - 9:8] macro expansion=MACRO:6:9 18 // CHECK2: Identifier: "INVOKE" [15:3 - 15:9] macro expansion=INVOKE:12:9
|
D | complete-preprocessor.m | 17 // CHECK-CC1: NotImplemented:{TypedText define}{HorizontalSpace }{Placeholder macro} (40) 18 // CHECK-CC1-NEXT: NotImplemented:{TypedText define}{HorizontalSpace }{Placeholder macro}{LeftPare… 21 // CHECK-CC1-NEXT: NotImplemented:{TypedText ifdef}{HorizontalSpace }{Placeholder macro} (40) 22 // CHECK-CC1-NEXT: NotImplemented:{TypedText ifndef}{HorizontalSpace }{Placeholder macro} (40) 32 // CHECK-CC1-NEXT: NotImplemented:{TypedText undef}{HorizontalSpace }{Placeholder macro} (40) 35 // CHECK-CC2: NotImplemented:{TypedText define}{HorizontalSpace }{Placeholder macro} (40) 36 // CHECK-CC2-NEXT: NotImplemented:{TypedText define}{HorizontalSpace }{Placeholder macro}{LeftPare… 42 // CHECK-CC2-NEXT: NotImplemented:{TypedText ifdef}{HorizontalSpace }{Placeholder macro} (40) 43 // CHECK-CC2-NEXT: NotImplemented:{TypedText ifndef}{HorizontalSpace }{Placeholder macro} (40) 53 // CHECK-CC2-NEXT: NotImplemented:{TypedText undef}{HorizontalSpace }{Placeholder macro} (40) [all …]
|
/external/llvm/test/MC/AsmParser/ |
D | macros.s | 4 .macro .test0 7 .macro .test1 22 .macro test2 27 .macro test3 37 .macro test4 47 .macro test5 _a 54 .macro test6 $a 61 .macro test7 .a 68 .macro test8 _a, _b, _c 72 .macro test9 _a _b _c
|
D | 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/kernel-headers/original/asm-mips/ |
D | 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/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/ |
D | MacroGroup.java | 44 public void addMacro(Macro macro) { in addMacro() argument 45 macros.add(macro); in addMacro() 48 public void removeMacro(Macro macro) { in removeMacro() argument 49 macros.remove(macro); in removeMacro() 56 Macro macro = (Macro)iter.next(); in getMacroByTitle() local 57 if (macro.getTitle().equalsIgnoreCase(title)) { in getMacroByTitle() 58 return macro; in getMacroByTitle() 122 for (Macro macro : getMacros()) in toXML() 125 buf.append("<title>" + macro.getTitle() + "</title>"); in toXML() 126 buf.append("<type>" + macro.getType() + "</type>"); in toXML() [all …]
|
/external/clang/test/Modules/ |
D | submodules-preprocess.cpp | 8 # error HAVE_VECTOR macro is not available (but should be) 12 # error HAVE_TYPE_TRAITS_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) 52 # error HAVE_VECTOR macro is not available (but should be) 56 # error HAVE_TYPE_TRAITS_MAP macro is not available (but should be) 60 # error HAVE_HASH_MAP macro is not available (but should be)
|
D | ignored_macros.m | 20 …es -DIGNORED=1 -fmodules -I %S/Inputs -include-pch %t.pch -fmodules-ignore-macro=IGNORED %s -verify 22 // Fourth trial: pass -DIGNORED=1 and -fmodules-ignore-macro=IGNORED 24 // macro. 26 // RUN: %clang_cc1 -fmodules-cache-path=%t.modules -DIGNORED=1 -fmodules-ignore-macro=IGNORED -fmod… 27 …%S/Inputs -include-pch %t.pch -fmodules-ignore-macro=IGNORED -DNO_IGNORED_ANYWHERE -fmodules-ignor… 29 // Fifth trial: pass -DIGNORED=1 and -fmodules-ignore-macro=IGNORED=1 31 // macro. 33 // RUN: %clang_cc1 -fmodules-cache-path=%t.modules -DIGNORED=1 -fmodules-ignore-macro=IGNORED=1 -fm… 34 …S/Inputs -include-pch %t.pch -fmodules-ignore-macro=IGNORED=1 -DNO_IGNORED_ANYWHERE -fmodules-igno…
|
/external/stlport/test/unit/ |
D | macro_checks.cpp | 22 # error Weird CHAR_MIN or CHAR_MAX macro values. 34 # error Weird INT_MIN or INT_MAX macro values. 46 # error Weird LONG_MIN or LONG_MAX macro values. 58 # error Weird SCHAR_MIN or SCHAR_MAX macro values. 70 # error Weird SHRT_MIN or SHRT_MAX macro values. 82 # error Weird WCHAR_MIN or WCHAR_MAX macro value. 90 # error Weird UCHAR_MAX macro value. 98 # error Weird UINT_MAX macro value. 106 # error Weird ULONG_MAX macro value. 114 # error Weird USHRT_MAX macro value.
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1008 #define LLVM_FOR_EACH_VALUE_SUBCLASS(macro) \ argument 1009 macro(Argument) \ 1010 macro(BasicBlock) \ 1011 macro(InlineAsm) \ 1012 macro(MDNode) \ 1013 macro(MDString) \ 1014 macro(User) \ 1015 macro(Constant) \ 1016 macro(BlockAddress) \ 1017 macro(ConstantAggregateZero) \ [all …]
|
/external/elfutils/libdw/ |
D | dwarf_macro_param2.c | 59 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) in dwarf_macro_param2() argument 61 if (macro == NULL) in dwarf_macro_param2() 65 *paramp = macro->param2.u; in dwarf_macro_param2() 67 *strp = macro->param2.s; in dwarf_macro_param2()
|
/external/libvpx/libvpx/vpx_ports/ |
D | x86_abi_support.asm | 41 %macro movq 2 153 ; This macro aligns the stack to the given alignment (in bytes). The stack 155 ; argument on the stack (ie, the inverse of this macro is 'pop rsp.') 156 ; This macro uses one temporary register, which is not preserved, and thus 158 %macro ALIGN_STACK 2 183 %macro GET_GOT 1 201 %macro GET_GOT 1 224 %macro GET_GOT 1 238 %macro GET_GOT 1 250 %macro SHADOW_ARGS_TO_STACK 1 [all …]
|
/external/srtp/doc/ |
D | crypto_kernel.txt | 25 * @warning May be implemented as a macro. 34 * @warning May be implemented as a macro. 42 * @warning May be implemented as a macro. 50 * @warning May be implemented as a macro. 58 * @warning May be implemented as a macro. 65 * @warning May be implemented as a macro.
|
/external/valgrind/main/drd/tests/ |
D | annotate_barrier.stderr.exp | 2 The annotation macro ANNOTATE_BARRIER_INIT has not yet been implemented in <valgrind/drd.h> 8 The annotation macro ANNOTATE_BARRIER_WAIT_BEFORE has not yet been implemented in <valgrind/drd.h> 14 The annotation macro ANNOTATE_BARRIER_WAIT_AFTER has not yet been implemented in <valgrind/drd.h> 19 The annotation macro ANNOTATE_BARRIER_WAIT_BEFORE has not yet been implemented in <valgrind/drd.h> 34 The annotation macro ANNOTATE_BARRIER_WAIT_AFTER has not yet been implemented in <valgrind/drd.h> 40 The annotation macro ANNOTATE_BARRIER_DESTROY has not yet been implemented in <valgrind/drd.h>
|