Searched refs:function (Results 176 - 200 of 1483) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dmember-init.cpp72 Y::Y() try { // expected-note{{in instantiation of member function 'PR10578::X<int>::X' requested here}}
79 class function : base { class in namespace:PR14838
80 ~function() {} // expected-note {{implicitly declared private here}}
82 function(...) {} function in class:PR14838::function
87 // expected-error@-1 {{temporary of type 'const PR14838::function' has private destructor}}
89 const function &r; // expected-note {{reference member declared here}}
/external/harfbuzz/src/
H A Dharfbuzz-debug.c11 const char* function, const char* format, ...) {
10 Android_Debug(const char* file, int line, const char* function, const char* format, ...) argument
/external/libxslt/libxslt/
H A Dpreproc.h30 xsltTransformFunction function);
/external/llvm/test/MC/ELF/
H A Dcall-abs.s5 .type f,@function
/external/stlport/test/eh/
H A Drandom_number.cpp22 # include <function.h>
/external/skia/tools/lua/
H A Dglyph-usage.lua0 function tostr(t)
34 function sk_scrape_startcanvas(c, fileName)
41 function sk_scrape_endcanvas(c, fileName)
50 function round(x, mul)
57 function dump_array_as_C(array)
66 function make_strike_key(paint)
72 function array_union(array, other)
79 function bools_to_values(t)
88 function array_count(array)
96 function sk_scrape_accumulat
[all...]
H A Dbbh_filter.lua10 function count_entries(table)
20 function reset_current()
34 function tostr(t)
54 function sk_scrape_startcanvas(c, fileName) end
56 function sk_scrape_endcanvas(c, fileName)
62 function sk_scrape_accumulate(t)
73 function sk_scrape_summarize()
80 table.sort(meta, function (a,b) return a.value > b.value; end)
102 function calculate_weight(verbs)
116 function output_with_metri
[all...]
/external/chromium_org/chrome/browser/extensions/api/tabs/
H A Dtabs_interactive_test.cc36 scoped_refptr<extensions::WindowsGetLastFocusedFunction> function = local
39 function->set_extension(extension.get());
41 utils::RunFunctionAndReturnSingleResult(function.get(),
51 function = new extensions::WindowsGetLastFocusedFunction();
52 function->set_extension(extension.get());
54 utils::RunFunctionAndReturnSingleResult(function.get(),
87 scoped_refptr<extensions::TabsQueryFunction> function = local
90 utils::RunFunctionAndReturnSingleResult(function.get(),
105 function = new extensions::TabsQueryFunction();
107 utils::RunFunctionAndReturnSingleResult(function
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptEventListener.cpp101 v8::Handle<v8::Object> function = v8Listener->getListenerObject(document); local
102 if (function.IsEmpty())
105 return toWebCoreStringWithNullCheck(function);
117 v8::Handle<v8::Object> function = v8Listener->getListenerObject(document); local
118 if (function.IsEmpty())
120 return ScriptValue(function);
146 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(object);
147 v8::Handle<v8::Value> scriptIdValue = function->GetScriptId();
149 v8::ScriptOrigin origin = function->GetScriptOrigin();
154 lineNumber = function
[all...]
/external/chromium_org/v8/src/
H A Dcodegen.cc78 PrintF("[generating %s code for %s function: ", kind, ftype);
84 PrintF("%s", *info->function()->debug_name()->ToCString());
92 PrettyPrinter().PrintProgram(info->function()));
97 AstPrinter().PrintProgram(info->function()));
136 FunctionLiteral* function = info->function(); local
144 function->start_position());
148 function->end_position() - function->start_position() + 1;
159 *function
[all...]
H A Darguments.cc42 static uint32_t Hash(void* function) { argument
43 uintptr_t as_int = reinterpret_cast<uintptr_t>(function);
44 if (sizeof(function) == 4) return static_cast<uint32_t>(as_int);
55 bool CallbackTable::Contains(void* function) { argument
56 ASSERT(function != NULL);
57 return map_.Lookup(function, Hash(function), false) != NULL;
62 void* function,
64 if (function == NULL) return;
73 Entry* entry = table->map_.Lookup(function, Has
61 InsertCallback(Isolate* isolate, void* function, bool returns_void) argument
[all...]
/external/v8/src/
H A Dcodegen.cc78 PrintF("*** Generate code for %s function: ", ftype);
79 info->function()->name()->ShortPrint();
85 PrettyPrinter().PrintProgram(info->function()));
90 AstPrinter().PrintProgram(info->function()));
122 FunctionLiteral* function = info->function(); local
127 stream.Seek(function->start_position());
131 function->end_position() - function->start_position() + 1;
141 *function
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas73 function CreateNode(const Payload: IToken): IANTLRInterface; overload;
77 function DupNode(const TreeNode: IANTLRInterface): IANTLRInterface;
80 function DupTree(const Tree: IANTLRInterface): IANTLRInterface;
87 function GetNilNode: IANTLRInterface;
105 function ErrorNode(const Input: ITokenStream; const Start, Stop: IToken;
111 function IsNil(const Tree: IANTLRInterface): Boolean;
162 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload;
178 function RulePostProcessing(const Root: IANTLRInterface): IANTLRInterface;
198 function GetUniqueID(const Node: IANTLRInterface): Integer;
209 function BecomeRoo
[all...]
/external/chromium_org/tools/gn/
H A Dfunction_toolchain.cc43 const FunctionCallNode* function,
47 if (!EnsureNotProcessingImport(function, scope, err) ||
48 !EnsureNotProcessingBuildConfig(function, scope, err))
54 const SourceDir& input_dir = SourceDirForFunctionCall(function);
79 toolchain, function->GetRange(), err);
93 const FunctionCallNode* function,
98 // function will set a property pointing to it that we'll pick up.
102 *err = Err(function->function(), "tool() called outside of toolchain().",
103 "The tool() function ca
42 RunToolchain(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
92 RunTool(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DFunctionsTest.java91 Function<String, Integer> function = Functions.forMap(map);
93 assertEquals(1, function.apply("One").intValue());
94 assertEquals(3, function.apply("Three").intValue());
95 assertNull(function.apply("Null"));
98 function.apply("Two");
104 .addEqualityGroup(function, Functions.forMap(map))
119 Function<String, Integer> function = Functions.forMap(map, 42);
121 assertEquals(1, function.apply("One").intValue());
122 assertEquals(42, function.apply("Two").intValue());
123 assertEquals(3, function
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRFileStream.as10 public function ANTLRFileStream(file:File, encoding:String = null) {
14 public function load(file:File, encoding:String = null):void {
32 public override function get sourceName():String {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptBase.cpp74 ScriptValue InjectedScriptBase::callFunctionWithEvalEnabled(ScriptFunctionCall& function, bool& hadException) const argument
88 ScriptValue resultValue = function.call(hadException);
97 void InjectedScriptBase::makeCall(ScriptFunctionCall& function, RefPtr<JSONValue>* result) argument
105 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
117 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) argument
120 makeCall(function, &result);
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dperf_profiler.py107 {function: period} dict of the |number| hottests functions.
122 function = fields[4].partition(' ')[2]
123 function = re.sub('<.*>', '', function) # Strip template params.
124 function = re.sub('[(].*[)]', '', function) # Strip function params.
125 period_by_function[function] = period
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DPointer.java51 /** This variable indicates if the field is a function pointer. */
52 public boolean function; field in class:Pointer
58 * @param function
59 * this variable indicates if the field is a function pointer
63 public Pointer(int pointerLevel, boolean function, BlenderContext blenderContext) { argument
65 this.function = function;
99 Pointer p = new Pointer(pointerLevel - 1, this.function, blenderContext);
122 * This method indicates if this pointer points to a function.
123 * @return <b>true</b> if this is a function pointe
[all...]
/external/srec/portable/include/
H A Dplog.h77 * Flushes internal buffer. This function can be left unimplemented if no
87 * Destroys the logger. This function is responsible to deallocate any
122 * Initializes the LOG library. This function must be called before any
123 * logging can take place. PtrdInit() must be called before this function on
154 * Shutdowns the LOG library. Once this function is called, no logging
164 * Sets the format of the logging messages. If this function is never called,
180 * the function returns ESR_INVALID_ARGUMENT.
253 * Runs a function, checks its return-code. In case of an error, logs it and jumps to
257 #define CHKLOG(rc, function) do { rc = (function); i
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp28 // The vprintf_stderr_common function triggers this error in the Mac build.
189 static void printCallSite(const char* file, int line, const char* function) argument
192 _CrtDbgReport(_CRT_WARN, file, line, NULL, "%s\n", function);
197 printf_stderr_common("%s(%d) : %s\n", file, line, function);
201 void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion) argument
207 printCallSite(file, line, function);
210 void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) argument
217 printCallSite(file, line, function);
220 void WTFReportArgumentAssertionFailure(const char* file, int line, const char* function, const char* argName, const char* assertion) argument
223 printCallSite(file, line, function);
285 WTFSetCrashHook(WTFCrashHookFunction function) argument
332 WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) argument
342 WTFReportError(const char* file, int line, const char* function, const char* format, ...) argument
363 WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_function_dispatcher.cc92 // Adds all function names to 'names'.
355 ExtensionFunction* function = iter->second(); local
356 function->set_name(name);
357 return function;
480 scoped_refptr<ExtensionFunction> function(
482 function->set_dispatcher_peer(peer_);
483 function->set_profile(profile_);
484 function->set_extension_id(extension_id());
485 function->SetArgs(&params.arguments);
486 function
518 SendResponse(ExtensionFunction* function, bool success) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Druntime_numeric_diff_cost_function.cc47 bool EvaluateJacobianForParameterBlock(const CostFunction* function, argument
64 int num_residuals = function->num_residuals();
97 if (!function->Evaluate(parameters, &residuals[0], NULL)) {
110 // Compute the function on the other side of x(j).
113 if (!function->Evaluate(parameters, &residuals[0], NULL)) {
134 RuntimeNumericDiffCostFunction(const CostFunction* function, argument
137 : function_(function),
140 *mutable_parameter_block_sizes() = function->parameter_block_sizes();
141 set_num_residuals(function->num_residuals());
149 // Get the function valu
[all...]
/external/chromium_org/base/
H A Dbind_internal_win.h33 explicit RunnableAdapter(R(__stdcall *function)()) argument
34 : function_(function) {
51 explicit RunnableAdapter(R(__fastcall *function)()) argument
52 : function_(function) {
69 explicit RunnableAdapter(R(__stdcall *function)(A1)) argument
70 : function_(function) {
87 explicit RunnableAdapter(R(__fastcall *function)(A1)) argument
88 : function_(function) {
105 explicit RunnableAdapter(R(__stdcall *function)(A1, A2)) argument
106 : function_(function) {
124 R(__fastcall *function) argument
143 R(__stdcall *function) argument
163 R(__fastcall *function) argument
183 R(__stdcall *function) argument
204 R(__fastcall *function) argument
226 R(__stdcall *function) argument
249 R(__fastcall *function) argument
272 R(__stdcall *function) argument
296 R(__fastcall *function) argument
320 R(__stdcall *function) argument
345 R(__fastcall *function) argument
[all...]
/external/chromium_org/base/debug/
H A Dprofiler.h41 // hook on function exits. This class of profilers uses some form of entry hook,
43 // time a function is invoked. The hook then switches the return address on the
44 // stack for the address of an exit hook function, and pushes the original
47 // does on function exit, then arrange to return to the original return address.
51 // the V8 data structures associated to the JS function involved.
52 // A return address resolution function is used to fix this. It allows such
59 typedef void (*DynamicFunctionEntryHook)(uintptr_t function,
69 typedef void (*DynamicFunctionEntryHook)(uintptr_t function,
79 // If this binary is instrumented and the instrumentation supplies a function
80 // for each of those purposes, find and return the function i
[all...]

Completed in 910 milliseconds

1234567891011>>