Searched refs:function (Results 101 - 125 of 1935) sorted by relevance

1234567891011>>

/external/skia/tools/lua/
H A Ddumpops.lua0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
25 function sk_scrape_accumulate(t)
33 function sk_scrape_summarize() end
H A Dcount_effects.lua0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
27 function count_fields(t)
35 function sk_scrape_accumulate(t)
42 function sk_scrape_summarize()
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke.pass.cpp12 // class function<R(ArgTypes...)>
43 // function
45 std::function<void (int)> r1(f_void_1);
51 // function pointer
54 std::function<void (int)> r1(fp);
63 std::function<void (int)> r1(a0);
69 // member function pointer
72 std::function<void (A_void_1)> r1(fp);
78 std::function<void (A_void_1*)> r2 = fp;
83 // const member function pointe
[all...]
H A Dinvoke_void_0.pass.cpp12 // class function<R(ArgTypes...)>
39 // function
41 std::function<void ()> r1(f_void_0);
46 // function pointer
49 std::function<void ()> r1(fp);
57 std::function<void ()> r1(a0);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptCanvasModule.cpp78 ScriptFunctionCall function(injectedScriptObject(), functionName);
79 function.appendArgument(context);
81 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
91 ScriptFunctionCall function(injectedScriptObject(), "markFrameEnd");
93 makeCall(function, &resultValue);
109 ScriptFunctionCall function(injectedScriptObject(), functionName);
111 makeCall(function, &resultValue);
128 ScriptFunctionCall function(injectedScriptObject(), functionName);
129 function.appendArgument(traceLogId);
131 callFunctionWithEvalEnabled(function, hadExceptio
[all...]
/external/chromium_org/sandbox/win/src/
H A Dinterception_unittest.cc45 FunctionInfo *function = reinterpret_cast<FunctionInfo*>( local
49 ASSERT_EQ(0u, function->record_bytes % sizeof(size_t));
51 char* name = function->function;
62 EXPECT_TRUE(NULL == function->interceptor_address);
64 EXPECT_TRUE(NULL != function->interceptor_address);
68 function = reinterpret_cast<FunctionInfo*>(
69 reinterpret_cast<char*>(function) + function->record_bytes);
87 // Any pointer will do for a function pointe
88 void* function = &interceptions; local
175 void* function = &interceptions; local
[all...]
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DActions.py39 Internal Plex action which causes a function to be called.
42 def __init__(self, function):
43 self.function = function
46 return self.function(token_stream, text)
49 return "Call(%s)" % self.function.__name__
52 return isinstance(other, Call) and self.function is other.function
/external/clang/test/Modules/
H A Dredecl-add-after-load.cpp11 extern constexpr int function();
12 constexpr int test(bool b) { return b ? variable : function(); }
17 extern constexpr int function();
20 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
24 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
29 static constexpr int function(); // expected-note {{here}}
32 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
/external/llvm/test/MC/ARM/
H A Deh-directive-unwind_raw-diagnostics.s6 .type require_fnstart,%function
14 .type check_arguments,%function
24 .type check_stack_offset,%function
34 .type comma_check,%function
44 .type require_opcode,%function
54 .type require_opcode_constant,%function
64 .type check_opcode_range,%function
H A Darm-qualifier-diagnostics.s5 .type function,%function
6 function: label
H A Dbkpt.s7 .type thumb_default_bkpt, %function
16 .type normal_bkpt, %function
26 .type arm_default_bkpt, %function
H A Dthumb-st_other.s1 @ Check the value of st_other for thumb function.
3 @ ARM does not define any st_other flags for thumb function. The value
14 .type main,%function
H A Dtarget-expressions.s7 .type function,%function
8 function: label
12 .type external,%function
16 .type test,%function
18 movw r0, :lower16:function
19 movt r0, :upper16:function
21 movw r1, #:lower16:function
22 movt r1, #:upper16:function
49 @ CHECK: movw r0, :lower16:function
[all...]
/external/chromium_org/extensions/browser/
H A Dapi_test_utils.h35 // Run |function| with |args| and return the result. Adds an error to the
36 // current test if |function| returns an error. Takes ownership of
37 // |function|. The caller takes ownership of the result.
39 UIThreadExtensionFunction* function,
44 UIThreadExtensionFunction* function,
53 UIThreadExtensionFunction* function,
57 UIThreadExtensionFunction* function,
62 // Run |function| with |args| and return the resulting error. Adds an error to
63 // the current test if |function| returns a result. Takes ownership of
64 // |function|
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.as32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
49 public function nextNode():Object {
63 protected override function dup(el:Object):Object {
H A DCommonTreeNodeStream.as95 public function CommonTreeNodeStream(tree:Object, adaptor:TreeAdaptor = null, initialBufferSize:int = DEFAULT_INITIAL_BUFFER_SIZE) {
97 // return uninitalized for static resuse function
114 public static function reuse(parent:CommonTreeNodeStream, start:int, stop:int):CommonTreeNodeStream {
128 protected function fillBuffer():void {
134 public function fillBufferTo(t:Object):void {
158 protected function getNodeIndex(node:Object):int {
175 protected function addNavigationNode(ttype:int):void {
196 public function getNode(i:int):Object {
203 public function LT(k:int):Object {
220 public function ge
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_extension_function_details.h26 // Constructs a new ChromeExtensionFunctionDetails instance for |function|.
27 // This instance does not own |function| and must outlive it.
28 explicit ChromeExtensionFunctionDetails(UIThreadExtensionFunction* function);
33 // Returns true if this function (and the profile and extension that it was
66 UIThreadExtensionFunction* function() { return function_; } function in class:ChromeExtensionFunctionDetails
67 const UIThreadExtensionFunction* function() const { return function_; } function in class:ChromeExtensionFunctionDetails
70 // The function for which these details have been created. Must outlive the
/external/chromium_org/third_party/skia/tools/lua/
H A Dcount_effects.lua0 function tostr(t)
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
27 function count_fields(t)
35 function sk_scrape_accumulate(t)
42 function sk_scrape_summarize()
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAllocaHoisting.cpp21 bool NVPTXAllocaHoisting::runOnFunction(Function &function) { argument
23 Function::iterator I = function.begin();
26 for (Function::iterator E = function.end(); I != E; ++I) {
/external/llvm/test/MC/ARM/Windows/
H A Dtext-attributes.s9 .def function
13 .global function
15 function: label
/external/chromium_org/v8/src/
H A Druntime-profiler.cc25 // Number of times a function has to be seen on the stack before it is
28 // If the function optimization was disabled due to high deoptimization count,
29 // but the function is hot and has been seen on the stack this number of times,
30 // then we try to reenable optimization for this function.
32 // If a function does not have enough type info (according to
41 // Maximum size in bytes of generate code for a function to allow OSR.
48 // Maximum size in bytes of generated code for a function to be optimized
83 void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) { argument
84 DCHECK(function->IsOptimizable());
86 if (FLAG_trace_opt && function
121 AttemptOnStackReplacement(JSFunction* function, int loop_nesting_levels) argument
171 JSFunction* function = frame->function(); local
[all...]
/external/llvm/bindings/ocaml/transforms/ipo/
H A Dllvm_ipo.mli19 (** See llvm::createConstantMergePass function. *)
23 (** See llvm::createDeadArgEliminationPass function. *)
27 (** See llvm::createFunctionAttrsPass function. *)
31 (** See llvm::createFunctionInliningPass function. *)
35 (** See llvm::createAlwaysInlinerPass function. *)
39 (** See llvm::createGlobalDCEPass function. *)
43 (** See llvm::createGlobalOptimizerPass function. *)
47 (** See llvm::createIPConstantPropagationPass function. *)
51 (** See llvm::createPruneEHPass function. *)
55 (** See llvm::createIPSCCPPass function
[all...]
/external/chromium_org/tools/gn/
H A Dfunctions.cc49 const FunctionCallNode* function,
56 FillNeedsBlockError(function, err);
67 function, "target defaults", err))
71 // The name is the single argument to the target function.
72 if (!EnsureSingleStringArg(function, args, err))
78 block_scope->SetValue(target_name, Value(function, args[0].string_value()),
79 function);
84 void FillNeedsBlockError(const FunctionCallNode* function, Err* err) { argument
85 *err = Err(function->function(), "Thi
48 FillTargetBlockScope(const Scope* scope, const FunctionCallNode* function, const std::string& target_type, const BlockNode* block, const std::vector<Value>& args, Scope* block_scope, Err* err) argument
90 EnsureSingleStringArg(const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
105 MakeLabelForScope(const Scope* scope, const FunctionCallNode* function, const std::string& name) argument
133 RunAssert(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
222 RunConfig(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
285 RunDeclareArgs(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
342 RunDefined(Scope* scope, const FunctionCallNode* function, const ListNode* args_list, Err* err) argument
408 RunGetEnv(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
462 RunImport(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
540 RunSetSourcesAssignmentFilter(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
577 RunPrint(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
720 RunFunction(Scope* scope, const FunctionCallNode* function, const ListNode* args_list, BlockNode* block, Err* err) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DEarlyExitException.as34 public function EarlyExitException(decisionNumber:int, input:IntStream) {
H A DLexer.as39 public function Lexer(input:CharStream = null, state:RecognizerSharedState = null) {
44 public override function reset():void {
65 public function nextToken():Token {
105 public function skip():void {
110 public function mTokens():void {
111 // abstract function
116 public function set charStream(input:CharStream):void {
122 public function get charStream():CharStream {
126 public override function get sourceName():String {
135 public function emitToke
[all...]

Completed in 2448 milliseconds

1234567891011>>