Searched refs:function (Results 51 - 75 of 1935) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptModule.cpp54 ScriptFunctionCall function(injectedScript.injectedScriptObject(), "module");
55 function.appendArgument(name());
57 ScriptValue resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
61 ScriptFunctionCall function(injectedScript.injectedScriptObject(), "injectModule");
62 function.appendArgument(name());
63 function.appendArgument(source());
64 resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
H A DInjectedScript.cpp63 ScriptFunctionCall function(injectedScriptObject(), "evaluate");
64 function.appendArgument(expression);
65 function.appendArgument(objectGroup);
66 function.appendArgument(includeCommandLineAPI);
67 function.appendArgument(returnByValue);
68 function.appendArgument(generatePreview);
69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
74 ScriptFunctionCall function(injectedScriptObject(), "callFunctionOn");
75 function.appendArgument(objectId);
76 function
[all...]
/external/clang/test/Modules/Inputs/
H A Dredecl-add-after-load-decls.h3 extern constexpr int function();
4 constexpr int test(bool b) { return b ? variable : function(); }
9 extern constexpr int function();
12 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
16 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
21 static constexpr int function(); // expected-note {{here}}
24 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
/external/chromium_org/chrome/browser/extensions/
H A Dextension_api_unittest.cc44 UIThreadExtensionFunction* function, const std::string& args) {
45 function->set_extension(extension());
47 function->SetRenderViewHost(contents_->GetRenderViewHost());
49 utils::RunFunctionAndReturnSingleResult(function, args, browser()));
54 UIThreadExtensionFunction* function, const std::string& args) {
55 base::Value* value = RunFunctionAndReturnValue(function, args).release();
68 UIThreadExtensionFunction* function, const std::string& args) {
69 base::Value* value = RunFunctionAndReturnValue(function, args).release();
82 UIThreadExtensionFunction* function, const std::string& args) {
83 function
43 RunFunctionAndReturnValue( UIThreadExtensionFunction* function, const std::string& args) argument
53 RunFunctionAndReturnDictionary( UIThreadExtensionFunction* function, const std::string& args) argument
67 RunFunctionAndReturnList( UIThreadExtensionFunction* function, const std::string& args) argument
81 RunFunctionAndReturnError( UIThreadExtensionFunction* function, const std::string& args) argument
89 RunFunction( UIThreadExtensionFunction* function, const std::string& args) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as64 public function ANTLRStringStream(input:String = null, lineDelimiter:String = "\n") {
76 public function reset():void {
83 public function consume():void {
94 public function LA(i:int):int {
111 public function LT(i:int):int {
119 public function get index():int {
123 public function get size():int {
127 public function mark():int {
148 public function rewindTo(m:int):void {
157 public function rewin
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTree.as53 public function CommonTree(node:CommonTree = null) {
62 public static function createFromToken(t:Token):CommonTree {
68 public function get token():Token {
72 public override function dupNode():Tree {
76 public override function get isNil():Boolean {
80 public override function get type():int {
87 public override function get text():String {
94 public override function get line():int {
104 public override function get charPositionInLine():int {
114 public override function ge
[all...]
H A DTreeRuleReturnScope.as45 public override function get tree():Object {
49 public function set tree(tree:Object):void {
53 public function get values():Object {
57 public override function get start():Object {
61 public function set start(value:Object):void {
/external/guava/guava/src/com/google/common/collect/
H A DByFunctionOrdering.java31 * function on those elements.
36 final Function<F, ? extends T> function; field in class:ByFunctionOrdering
40 Function<F, ? extends T> function, Ordering<T> ordering) {
41 this.function = checkNotNull(function);
46 return ordering.compare(function.apply(left), function.apply(right));
55 return this.function.equals(that.function)
62 return Objects.hashCode(function, orderin
39 ByFunctionOrdering( Function<F, ? extends T> function, Ordering<T> ordering) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/
H A Dgl-matrix.js.erb30 (function() {
35 if(typeof define == 'function' && typeof define.amd == 'object' && define.amd) {
37 define(function() {
50 (function(exports) {
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delfglobal.asm2 ; program that calls function with eax=constant, thus exiting err=0
4 GLOBAL function
8 function: label
H A Delftypesize.asm8 type a function
16 type c function
/external/chromium_org/tools/gn/
H A Dfunction_set_defaults.cc44 const FunctionCallNode* function,
48 if (!EnsureSingleStringArg(function, args, err))
68 *err = Err(function->function(),
74 FillNeedsBlockError(function, err);
87 block_scope.NonRecursiveMergeTo(dest, Scope::MergeOptions(), function,
43 RunSetDefaults(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
/external/chromium_org/chrome/browser/extensions/api/browser/
H A Dbrowser_apitest.cc29 scoped_refptr<api::BrowserOpenTabFunction> function = local
32 function->set_extension(extension.get());
34 function.get(),
/external/chromium_org/extensions/browser/
H A Dapi_unittest.cc57 UIThreadExtensionFunction* function,
59 function->set_extension(extension());
61 function, args, browser_context()));
65 UIThreadExtensionFunction* function,
67 base::Value* value = RunFunctionAndReturnValue(function, args).release();
80 UIThreadExtensionFunction* function,
82 base::Value* value = RunFunctionAndReturnValue(function, args).release();
95 UIThreadExtensionFunction* function,
97 function->set_extension(extension());
98 return utils::RunFunctionAndReturnError(function, arg
56 RunFunctionAndReturnValue( UIThreadExtensionFunction* function, const std::string& args) argument
64 RunFunctionAndReturnDictionary( UIThreadExtensionFunction* function, const std::string& args) argument
79 RunFunctionAndReturnList( UIThreadExtensionFunction* function, const std::string& args) argument
94 RunFunctionAndReturnError( UIThreadExtensionFunction* function, const std::string& args) argument
101 RunFunction(UIThreadExtensionFunction* function, const std::string& args) argument
[all...]
/external/llvm/test/MC/ELF/
H A Dtype-propagate.s13 .type sym02, @function
18 .type sym03, @function
30 .type sym10, @function
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8ObjectConstructor.cpp36 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function) argument
38 if (function.IsEmpty())
41 return V8ScriptRunner::instantiateObject(isolate, function);
44 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[]) argument
46 if (function.IsEmpty())
49 return V8ScriptRunner::instantiateObject(isolate, function, argc, argv);
52 v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Isolate* isolate, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], Document* document) argument
54 if (function.IsEmpty())
56 return V8ScriptRunner::instantiateObjectInDocument(isolate, function, document, argc, argv);
/external/chromium_org/base/debug/
H A Ddump_without_crashing.h17 // Before calling this function, call SetDumpWithoutCrashingFunction to pass a
18 // function pointer, typically chrome!DumpProcessWithoutCrash. See example code
22 // Sets a function that'll be invoked to dump the current process when
24 BASE_EXPORT void SetDumpWithoutCrashingFunction(void (CDECL *function)());
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DShaderExecutable9.cpp17 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable) argument
18 : ShaderExecutable(function, length)
24 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable) argument
25 : ShaderExecutable(function, length)
/external/cmockery/cmockery_0_1_2/src/google/
H A Dcmockery.h35 // Retrieves a return value for the current function.
38 /* Stores a value to be returned by the specified function later.
42 #define will_return(function, value) \
43 _will_return(#function, __FILE__, __LINE__, (void*)value, 1)
44 #define will_return_count(function, value, count) \
45 _will_return(#function, __FILE__, __LINE__, (void*)value, count)
47 /* Add a custom parameter checking function. If the event parameter is NULL
48 * the event structure is allocated internally by this function. If event
52 #define expect_check(function, parameter, check_function, check_data) \
53 _expect_check(#function, #paramete
299 UnitTestFunction function; member in struct:UnitTest
[all...]
/external/compiler-rt/lib/builtins/
H A Dint_util.h13 * library. The function definitions themselves are all contained in int_util.c
27 const char *function) __attribute__((noreturn));
/external/compiler-rt/test/asan/TestCases/
H A Ddeep_thread_stack.cc29 void *RunnerThread(void *function) { argument
31 pthread_create(&thread, NULL, (callback_type)function, NULL);
36 void RunThread(callback_type function) { argument
38 pthread_create(&runner, NULL, RunnerThread, (void*)function);
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/
H A Doperator_bool.pass.cpp12 // class function<R(ArgTypes...)>
24 std::function<int(int)> f;
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dalloc.pass.cpp12 // class function<R(ArgTypes...)>
14 // template<class A> function(allocator_arg_t, const A&);
23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>());
H A Dalloc_nullptr.pass.cpp12 // class function<R(ArgTypes...)>
14 // template<class A> function(allocator_arg_t, const A&, nullptr_t);
23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>(), nullptr);
/external/llvm/test/MC/ELF/ARM/
H A Dgnu-type-hash.s6 // CHECK: .type TYPE,%function
8 .type type #function
9 // CHECK: .type type,%function
12 // CHECK: .type comma_TYPE,%function
14 .type comma_type, #function
15 // CHECK: .type comma_type,%function

Completed in 930 milliseconds

1234567891011>>