Searched refs:function (Results 351 - 375 of 1483) sorted by relevance

<<11121314151617181920>>

/external/bison/linux-lib/
H A Dwctype.h69 * For providing a substitute for a function that is missing on some
83 * For providing a replacement for a function that exists on all platforms,
102 * For providing a replacement for a function that exists on some platforms
135 declares a replacement function, named rpl_func, with the given prototype,
147 declares the system function, named func, with the given prototype,
178 except that the C function rpl_func may have a slightly different
196 that redirects to the system provided function func, if GNULIB_NAMESPACE
221 except that the C function func may have a slightly different declaration.
239 except that the C function is picked among a set of overloaded functions,
245 The inner cast: When the function i
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dcommon.h81 void LogAssert(const char * function, const char * file, int line,
84 inline bool Assert(bool result, const char * function, const char * file, argument
87 LogAssert(function, file, line, expression);
/external/chromium_org/chrome/browser/extensions/api/power/
H A Dpower_api_manager.cc50 CreateBlockerFunction function) {
51 create_blocker_function_ = !function.is_null() ? function :
49 SetCreateBlockerFunctionForTesting( CreateBlockerFunction function) argument
/external/chromium_org/content/plugin/
H A Dplugin_carbon_interpose_mac.cc113 #define INTERPOSE_FUNCTION(function) \
114 { reinterpret_cast<const void*>(ChromePlugin##function), \
115 reinterpret_cast<const void*>(function) }
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8PerContextData.h91 UnsafePersistent<v8::Function> function = m_constructorMap.get(type); local
92 if (!function.isEmpty())
93 return function.newLocal(v8::Isolate::GetCurrent());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8HTMLDocumentCustom.cpp93 v8::Local<v8::Value> function = global->Get(v8::String::NewSymbol("open")); local
94 // If the open property is not a function throw a type error.
95 if (!function->IsFunction()) {
96 throwTypeError("open is not a function", args.GetIsolate());
99 // Wrap up the arguments and call the function.
104 v8SetReturnValue(args, frame->script()->callFunction(v8::Local<v8::Function>::Cast(function), global, args.Length(), params.get()));
/external/libffi/src/powerpc/
H A Dasm.h43 /* If compiled for profiling, call `_mcount' at the start of each function. */
79 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
98 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
109 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
/external/stlport/src/
H A Dsparc_atomic.s10 .type _STLP_atomic_exchange,#function
30 .type _STLP_atomic_increment,#function
51 .type _STLP_atomic_decrement,#function
H A Dsparc_atomic64.s8 .type _STLP_atomic_exchange,#function
28 .type _STLP_atomic_increment,#function
47 .type _STLP_atomic_decrement,#function
/external/valgrind/main/coregrind/m_dispatch/
H A Ddispatch-ppc64-linux.S82 .type .VG_(disp_run_translations),@function
402 .type .VG_(disp_cp_chain_me_to_slowEP),@function
427 .type .VG_(disp_cp_chain_me_to_fastEP),@function
452 .type .VG_(disp_cp_xindir),@function
503 .type .VG_(disp_cp_xassisted),@function
520 .type .VG_(disp_cp_evcheck_fail),@function
/external/valgrind/main/memcheck/tests/amd64-linux/
H A Ddefcfaexpr.S53 .type bbb, @function
72 .type aaa, @function
80 .type main, @function
/external/v8/src/arm/
H A Ddeoptimizer-arm.cc47 void Deoptimizer::DeoptimizeFunction(JSFunction* function) { argument
51 if (!function->IsOptimized()) return;
54 Code* code = function->code();
100 // Set the code for the function to non-optimized version.
101 function->ReplaceCode(function->shared()->code());
105 function->PrintName();
106 PrintF(" / %x]\n", reinterpret_cast<uint32_t>(function));
242 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator.Next())); local
243 USE(function);
364 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); local
462 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); local
586 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); local
[all...]
/external/v8/src/mips/
H A Ddeoptimizer-mips.cc45 void Deoptimizer::DeoptimizeFunction(JSFunction* function) { argument
49 if (!function->IsOptimized()) return;
52 Code* code = function->code();
99 // Set the code for the function to non-optimized version.
100 function->ReplaceCode(function->shared()->code());
104 function->PrintName();
105 PrintF(" / %x]\n", reinterpret_cast<uint32_t>(function));
162 // Exact opposite of the function above.
232 JSFunction* function local
354 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); local
452 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); local
576 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); local
[all...]
/external/ceres-solver/internal/ceres/
H A Dline_search.cc179 // Select step size by interpolating the function and gradient values
185 // Two point interpolation using function values and the
190 // Three point interpolation, using function values and the
195 // Two point interpolation using the function values and the gradients.
199 // Three point interpolation using the function values and
227 Function* function = options().function; local
243 static_cast<const LineSearchFunction*>(function)->DirectionInfinityNorm();
248 function->Evaluate(current.x,
296 function
434 Function* function = options().function; local
589 Function* function = options().function; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextensions_quota_service.cc39 ExtensionFunction* function,
44 if (function->ShouldSkipQuotaLimiting())
47 // Lookup function list for extension.
50 // Lookup heuristics for function, create if necessary.
51 QuotaLimitHeuristics& heuristics = functions[function->name()];
53 function->GetQuotaLimitHeuristics(&heuristics);
37 Assess( const std::string& extension_id, ExtensionFunction* function, const base::ListValue* args, const base::TimeTicks& event_time) argument
/external/chromium_org/content/app/
H A Dstartup_helper_win.cc21 void InvalidParameter(const wchar_t* expression, const wchar_t* function, argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCommon.h105 BLINK_COMMON_EXPORT void failedAssertion(const char* file, int line, const char* function, const char* assertion);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-object-private.hh162 inline void trace (const char *function) const {
168 function,
180 static inline void hb_object_trace (const Type *obj, const char *function) argument
182 obj->header.trace (function);
/external/chromium_org/tools/cygprofile/
H A Dpatch_orderfile.py46 sys.stderr.write ("ERROR: did not find function in binary: addr: " +
74 # patched order file pulls in all symbols with the same name. Multiple function
75 # addresses for the same function name may also be due to ".clone" symbols,
95 for function in profiled_list:
97 addrs = functionAddressMap[function]
101 # sys.stderr.write ("WARNING: could not find symbol " + function + "\n")
114 for function in functions:
115 print ".text." + function
/external/chromium_org/v8/src/
H A Dlazy-instance.h30 // useful for places you would normally use a function-level static, but you
72 // critical path. Consider adding your initialization code to a function
173 static void Init(OnceType* once, Function function, Storage storage) { argument
174 CallOnce(once, function, storage);
182 static void Init(OnceType* once, Function function, Storage storage) { argument
184 function(storage);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-template-callback.cpp42 void function(C<void(void)>) {} function
43 // CHECK: "\01?function@@YAXV?$C@$$A6AXXZ@@@Z"
/external/compiler-rt/make/
H A Doptions.mk15 # Whether optimized function implementations should be used.
18 # Whether function definitions should use hidden visibility. This adds the
/external/guava/guava-gwt/src/com/google/common/collect/
H A DByFunctionOrdering_CustomFieldSerializer.java45 writer.writeObject(instance.function);
/external/harfbuzz_ng/src/
H A Dhb-object-private.hh162 inline void trace (const char *function) const {
168 function,
180 static inline void hb_object_trace (const Type *obj, const char *function) argument
182 obj->header.trace (function);
/external/kernel-headers/original/linux/
H A Dlinkage.h48 .type name, @function; \

Completed in 657 milliseconds

<<11121314151617181920>>