/external/chromium_org/build/android/pylib/host_driven/ |
D | tests_annotations.py | 16 def _AddFunction(annotation, function): argument 61 def Smoke(function): argument 65 def SmallTest(function): argument 69 def MediumTest(function): argument 73 def LargeTest(function): argument 77 def EnormousTest(function): argument 81 def FlakyTest(function): argument 85 def DisabledTest(function): argument 90 def _AddFeatures(function): argument
|
/external/qemu/include/qemu/ |
D | module.h | 18 #define module_init(function, type) \ argument 32 #define block_init(function) module_init(function, MODULE_INIT_BLOCK) argument 33 #define device_init(function) module_init(function, MODULE_INIT_DEVICE) // TODO(digit): Remove thi… argument 34 #define machine_init(function) module_init(function, MODULE_INIT_MACHINE) argument 35 #define qapi_init(function) module_init(function, MODULE_INIT_QAPI) argument 36 #define type_init(function) module_init(function, MODULE_INIT_QOM) argument
|
/external/bison/build-aux/snippet/ |
D | warn-on-use.h | 68 # define _GL_WARN_ON_USE(function, message) \ argument 72 # define _GL_WARN_ON_USE(function, message) \ argument 75 # define _GL_WARN_ON_USE(function, message) \ argument 88 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument 93 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument 96 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument
|
/external/bison/linux-lib/ |
D | warn-on-use.h | 5 # define _GL_WARN_ON_USE(function, message) \ argument 9 # define _GL_WARN_ON_USE(function, message) \ argument 12 # define _GL_WARN_ON_USE(function, message) \ argument 25 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument 30 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument 33 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument
|
/external/bison/darwin-lib/ |
D | warn-on-use.h | 5 # define _GL_WARN_ON_USE(function, message) \ argument 9 # define _GL_WARN_ON_USE(function, message) \ argument 12 # define _GL_WARN_ON_USE(function, message) \ argument 25 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument 30 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument 33 # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ argument
|
/external/clang/test/Modules/Inputs/ |
D | redecl-add-after-load.h | 3 extern constexpr int function() { return 0; } in function() function 8 extern constexpr int function() { return 0; } in function() function 14 constexpr int C::function() { return 0; } in function() function 23 constexpr int D::function() { return 0; } in function() function
|
/external/chromium_org/extensions/browser/ |
D | api_unittest.cc | 57 UIThreadExtensionFunction* function, in RunFunctionAndReturnValue() 65 UIThreadExtensionFunction* function, in RunFunctionAndReturnDictionary() 80 UIThreadExtensionFunction* function, in RunFunctionAndReturnList() 95 UIThreadExtensionFunction* function, in RunFunctionAndReturnError() 101 void ApiUnitTest::RunFunction(UIThreadExtensionFunction* function, in RunFunction()
|
D | api_test_utils.cc | 63 virtual void OnSendResponse(UIThreadExtensionFunction* function, in OnSendResponse() 87 UIThreadExtensionFunction* function, in RunFunctionWithDelegateAndReturnSingleResult() 96 UIThreadExtensionFunction* function, in RunFunctionWithDelegateAndReturnSingleResult() 116 UIThreadExtensionFunction* function, in RunFunctionAndReturnSingleResult() 123 UIThreadExtensionFunction* function, in RunFunctionAndReturnSingleResult() 135 std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function, in RunFunctionAndReturnError() 141 std::string RunFunctionAndReturnError(UIThreadExtensionFunction* function, in RunFunctionAndReturnError() 156 bool RunFunction(UIThreadExtensionFunction* function, in RunFunction() 165 bool RunFunction(UIThreadExtensionFunction* function, in RunFunction() 177 bool RunFunction(UIThreadExtensionFunction* function, in RunFunction()
|
/external/cmockery/cmockery_0_1_2/src/google/ |
D | cmockery.h | 42 #define will_return(function, value) \ argument 44 #define will_return_count(function, value, count) \ argument 52 #define expect_check(function, parameter, check_function, check_data) \ argument 59 #define expect_in_set(function, parameter, value_array) \ argument 61 #define expect_in_set_count(function, parameter, value_array, count) \ argument 64 #define expect_not_in_set(function, parameter, value_array) \ argument 66 #define expect_not_in_set_count(function, parameter, value_array, count) \ argument 76 #define expect_in_range(function, parameter, minimum, maximum) \ argument 78 #define expect_in_range_count(function, parameter, minimum, maximum, count) \ argument 86 #define expect_not_in_range(function, parameter, minimum, maximum) \ argument [all …]
|
/external/chromium_org/chrome/browser/extensions/ |
D | extension_api_unittest.cc | 44 UIThreadExtensionFunction* function, const std::string& args) { in RunFunctionAndReturnValue() 54 UIThreadExtensionFunction* function, const std::string& args) { in RunFunctionAndReturnDictionary() 68 UIThreadExtensionFunction* function, const std::string& args) { in RunFunctionAndReturnList() 82 UIThreadExtensionFunction* function, const std::string& args) { in RunFunctionAndReturnError() 90 UIThreadExtensionFunction* function, const std::string& args) { in RunFunction()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ExecutionContextTask.h | 75 FunctionType function) in createSameThreadTask() 82 FunctionType function, in createSameThreadTask() 91 FunctionType function, in createSameThreadTask() 101 FunctionType function, in createSameThreadTask() 112 FunctionType function, in createSameThreadTask() 124 FunctionType function, in createSameThreadTask() 137 FunctionType function, in createSameThreadTask()
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | EnumsTest.java | 44 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); in testValueOfFunction() local 51 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); in testValueOfFunction_caseSensitive() local 58 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); in testValueOfFunction_nullWhenNotMatchingConstant() local 72 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class); in testValueOfFunction_serialization() local
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScript.cpp | 63 ScriptFunctionCall function(injectedScriptObject(), "evaluate"); in evaluate() local 74 ScriptFunctionCall function(injectedScriptObject(), "callFunctionOn"); in callFunctionOn() local 85 ScriptFunctionCall function(injectedScriptObject(), "evaluateOnCallFrame"); in evaluateOnCallFrame() local 99 ScriptFunctionCall function(injectedScriptObject(), "restartFrame"); in restartFrame() local 119 ScriptFunctionCall function(injectedScriptObject(), "getStepInPositions"); in getStepInPositions() local 139 ScriptFunctionCall function(injectedScriptObject(), "setVariableValue"); in setVariableValue() local 169 ScriptFunctionCall function(injectedScriptObject(), "getFunctionDetails"); in getFunctionDetails() local 183 ScriptFunctionCall function(injectedScriptObject(), "getCollectionEntries"); in getCollectionEntries() local 197 ScriptFunctionCall function(injectedScriptObject(), "getProperties"); in getProperties() local 213 ScriptFunctionCall function(injectedScriptObject(), "getInternalProperties"); in getInternalProperties() local [all …]
|
D | InjectedScriptCanvasModule.cpp | 78 ScriptFunctionCall function(injectedScriptObject(), functionName); in callWrapContextFunction() local 91 ScriptFunctionCall function(injectedScriptObject(), "markFrameEnd"); in markFrameEnd() local 109 ScriptFunctionCall function(injectedScriptObject(), functionName); in callStartCapturingFunction() local 128 ScriptFunctionCall function(injectedScriptObject(), functionName); in callVoidFunctionWithTraceLogIdArgument() local 139 ScriptFunctionCall function(injectedScriptObject(), "traceLog"); in traceLog() local 157 ScriptFunctionCall function(injectedScriptObject(), "replayTraceLog"); in replayTraceLog() local 180 ScriptFunctionCall function(injectedScriptObject(), "resourceState"); in resourceState() local 195 ScriptFunctionCall function(injectedScriptObject(), "evaluateTraceLogCallArgument"); in evaluateTraceLogCallArgument() local
|
/external/compiler-rt/lib/builtins/ |
D | int_util.c | 30 void compilerrt_abort_impl(const char *file, int line, const char *function) { in compilerrt_abort_impl() 44 void compilerrt_abort_impl(const char *file, int line, const char *function) { in compilerrt_abort_impl() 57 void compilerrt_abort_impl(const char *file, int line, const char *function) { in compilerrt_abort_impl()
|
/external/chromium_org/ui/gfx/geometry/ |
D | cubic_bezier_unittest.cc | 14 CubicBezier function(0.25, 0.0, 0.75, 1.0); in TEST() local 42 CubicBezier function(0.5, -1.0, 0.5, 2.0); in TEST() local 74 scoped_ptr<CubicBezier> function( in TEST() local 140 CubicBezier function(0.25, 0.0, 0.75, 1.0); in TEST() local
|
/external/chromium_org/tools/gn/ |
D | functions_target.cc | 29 const FunctionCallNode* function, in ExecuteGenericTarget() 147 const FunctionCallNode* function, in RunAction() 227 const FunctionCallNode* function, in RunActionForEach() 279 Value RunCopy(const FunctionCallNode* function, in RunCopy() 306 const FunctionCallNode* function, in RunExecutable() 346 const FunctionCallNode* function, in RunGroup() 375 const FunctionCallNode* function, in RunSharedLibrary() 422 const FunctionCallNode* function, in RunSourceSet() 452 const FunctionCallNode* function, in RunStaticLibrary()
|
D | functions.cc | 49 const FunctionCallNode* function, in FillTargetBlockScope() 84 void FillNeedsBlockError(const FunctionCallNode* function, Err* err) { in FillNeedsBlockError() 90 bool EnsureSingleStringArg(const FunctionCallNode* function, in EnsureSingleStringArg() 106 const FunctionCallNode* function, in MakeLabelForScope() 134 const FunctionCallNode* function, in RunAssert() 222 Value RunConfig(const FunctionCallNode* function, in RunConfig() 286 const FunctionCallNode* function, in RunDeclareArgs() 343 const FunctionCallNode* function, in RunDefined() 409 const FunctionCallNode* function, in RunGetEnv() 463 const FunctionCallNode* function, in RunImport() [all …]
|
/external/chromium_org/chrome/browser/extensions/api/easy_unlock_private/ |
D | easy_unlock_private_api_chromeos_unittest.cc | 75 UIThreadExtensionFunction* function) { in GetSingleBinaryResultAsString() 102 scoped_refptr<EasyUnlockPrivateGenerateEcP256KeyPairFunction> function( in TEST_F() local 130 scoped_refptr<EasyUnlockPrivatePerformECDHKeyAgreementFunction> function( in TEST_F() local 165 scoped_refptr<EasyUnlockPrivateCreateSecureMessageFunction> function( in TEST_F() local 213 scoped_refptr<EasyUnlockPrivateCreateSecureMessageFunction> function( in TEST_F() local 245 scoped_refptr<EasyUnlockPrivateCreateSecureMessageFunction> function( in TEST_F() local 286 scoped_refptr<EasyUnlockPrivateUnwrapSecureMessageFunction> function( in TEST_F() local 326 scoped_refptr<EasyUnlockPrivateUnwrapSecureMessageFunction> function( in TEST_F() local 358 scoped_refptr<EasyUnlockPrivateUnwrapSecureMessageFunction> function( in TEST_F() local
|
/external/chromium_org/base/mac/ |
D | scoped_objc_class_swizzler_unittest.mm | 11 + (NSInteger)function; class 17 + (NSInteger)function; class 24 + (NSInteger)function { class 42 + (NSInteger)function { class
|
/external/llvm/test/MC/ARM/Windows/ |
D | text-attributes.s | 13 .global function symbol 15 function: label
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | MainThread.cpp | 57 void callOnMainThread(MainThreadFunction* function, void* context) in callOnMainThread() 64 Function<void()>* function = static_cast<Function<void()>*>(context); in callFunctionObject() local 69 void callOnMainThread(const Function<void()>& function) in callOnMainThread()
|
/external/lldb/tools/debugserver/source/ |
D | PThreadMutex.cpp | 24 PThreadMutex::Locker::Locker(PThreadMutex& m, const char *function, const char *file, const int lin… in Locker() 34 PThreadMutex::Locker::Locker(PThreadMutex* m, const char *function, const char *file, const int lin… in Locker() 44 PThreadMutex::Locker::Locker(pthread_mutex_t *mutex, const char *function, const char *file, const … in Locker()
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
D | compare-map-elim2.js | 39 Base.prototype.__defineGetter__("value", function() { return 1; }); argument 45 Base.prototype.__defineGetter__("value", function() { return this.v_; }); argument 69 Base.prototype.__defineGetter__("value", function() { return 1; }); argument 75 Base.prototype.__defineGetter__("value", function() { return this.v_; }); argument
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | V8ObjectConstructor.cpp | 36 …::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function) in newInstance() 44 …ect> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function, int… in newInstance() 52 …ectConstructor::newInstanceInDocument(v8::Isolate* isolate, v8::Handle<v8::Function> function, int… in newInstanceInDocument()
|