Searched refs:function (Results 251 - 275 of 1483) sorted by relevance

<<11121314151617181920>>

/external/llvm/test/MC/ARM/
H A Deh-directive-pad.s24 .type func1,%function
53 .type func2a,%function
66 .type func2b,%function
94 .type func3a,%function
107 .type func3b,%function
136 .type func4a,%function
149 .type func4b,%function
179 .type func4a,%function
192 .type func5b,%function
205 .type func5c,%function
[all...]
H A Deh-directive-setfp.s7 @ the stack pointer. This is required for the function that will change
8 @ the stack pointer out of the function prologue. If the exception is thrown,
31 .type func1,%function
60 .type func2a,%function
73 .type func2b,%function
103 .type func3a,%function
116 .type func3b,%function
146 .type func4a,%function
159 .type func4b,%function
191 .type func5a,%function
[all...]
/external/stlport/stlport/
H A Dfunctional119 # include <boost/function.hpp>
124 class function;
126 void swap(function<Signature, Allocator>& f1, function<Signature, Allocator>& f2);
135 using ::boost::function;
/external/chromium_org/chrome/browser/extensions/api/browsing_data/
H A Dbrowsing_data_test.cc90 scoped_refptr<BrowsingDataRemoveFunction> function = local
94 function.get(),
111 scoped_refptr<BrowsingDataRemoveFunction> function = local
115 function.get(),
123 scoped_refptr<ShortcutFunction> function = local
127 function.get(),
138 scoped_refptr<BrowsingDataSettingsFunction> function = local
142 function.get(), std::string("[]"), browser()));
157 // Even a synchronous function takes nonzero time, but the difference
158 // between when the function wa
187 scoped_refptr<BrowsingDataSettingsFunction> function = local
241 scoped_refptr<BrowsingDataRemoveFunction> function = local
265 scoped_refptr<BrowsingDataRemoveFunction> function = local
308 scoped_refptr<BrowsingDataRemoveFunction> function = local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h37 // Functional.h provides a very simple way to bind a function pointer and arguments together into a function object
40 // A FunctionWrapper is a class template that can wrap a function pointer or a member function pointer and
41 // provide a unified interface for calling that function.
52 explicit FunctionWrapper(R (*function)()) argument
53 : m_function(function)
71 explicit FunctionWrapper(R (*function)(P1)) argument
72 : m_function(function)
90 explicit FunctionWrapper(R (*function)(P argument
109 FunctionWrapper(R (function)P1, P2, P3)) argument
128 FunctionWrapper(R (function)P1, P2, P3, P4)) argument
147 FunctionWrapper(R (function)P1, P2, P3, P4, P5)) argument
582 bind(FunctionType function) argument
588 bind(FunctionType function, const A1& a1) argument
594 bind(FunctionType function, const A1& a1, const A2& a2) argument
600 bind(FunctionType function, const A1& a1, const A2& a2, const A3& a3) argument
606 bind(FunctionType function, const A1& a1, const A2& a2, const A3& a3, const A4& a4) argument
612 bind(FunctionType function, const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5) argument
618 bind(FunctionType function, const A1& a1, const A2& a2, const A3& a3, const A4& a4, const A5& a5, const A6& a6) argument
[all...]
/external/chromium/base/win/
H A Di18n.cc39 // in |languages|. |function| identifies the function to call and |flags| is
40 // the function-specific flags (callers must not specify MUI_LANGUAGE_ID or
43 bool GetMUIPreferredUILanguageList(LanguageFunction function, ULONG flags, argument
45 DCHECK(0 <= function && NUM_FUNCTIONS > function);
55 GetProcAddress(kernel32, kLanguageFunctionNames[function]));
120 bool GetPreferredUILanguageList(LanguageFunction function, ULONG flags, argument
126 if (GetMUIPreferredUILanguageList(function, flags, &buffer)) {
/external/chromium_org/base/win/
H A Di18n.cc39 // in |languages|. |function| identifies the function to call and |flags| is
40 // the function-specific flags (callers must not specify MUI_LANGUAGE_ID or
43 bool GetMUIPreferredUILanguageList(LanguageFunction function, ULONG flags, argument
45 DCHECK(0 <= function && NUM_FUNCTIONS > function);
55 GetProcAddress(kernel32, kLanguageFunctionNames[function]));
120 bool GetPreferredUILanguageList(LanguageFunction function, ULONG flags, argument
126 if (GetMUIPreferredUILanguageList(function, flags, &buffer)) {
/external/chromium_org/tools/json_schema_compiler/
H A Ddart_generator.py35 # self._types, make a _FindType(self, type_) function that looks at
115 # Check whether this type has function members. If it does, don't allow
171 else self._GenerateFunction(prop.type_.function))
275 """Returns the Code object for the given function.
294 """Given a function (assumed to be a callback), generates the proxied
295 version of this function, which calls |callback_name| if it is defined.
350 """Given a function, returns True if this function's callback needs to be
359 """Given a function, returns True if it needs to be proxied, False if not.
361 A function need
[all...]
/external/chromium_org/v8/src/
H A Doptimizing-compiler-thread.cc103 // The function may have already been optimized by OSR. Simply continue.
108 // The function may have already been optimized by OSR. Simply continue.
129 Handle<JSFunction> function = info->closure(); local
130 function->ReplaceCode(function->shared()->code());
143 Handle<JSFunction> function = info->closure(); local
144 function->ReplaceCode(function->shared()->code());
/external/llvm/test/Bindings/Ocaml/
H A Danalysis.ml34 if not (verify_function fn) then bomb "valid function failed verification!";
46 if verify_function fn then bomb "invalid function passed verification!";
51 (* Don't bother to test assert_valid_{module,function}. *)
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dexperimental_identity_apitest.cc63 virtual void OnSendResponse(UIThreadExtensionFunction* function,
82 // Asynchronous function runner allows tests to manipulate the browser window
84 void RunFunctionAsync(UIThreadExtensionFunction* function, argument
87 function->set_test_delegate(response_delegate_.get());
90 << "Could not parse extension function arguments: " << args;
91 function->SetArgs(parsed_args.get());
93 if (!function->GetExtension()) {
95 function->set_extension(empty_extension.get());
98 function->set_profile(browser()->profile());
99 function
103 WaitForError(UIThreadExtensionFunction* function) argument
109 WaitForSingleResult(UIThreadExtensionFunction* function) argument
[all...]
/external/bison/darwin-lib/
H A Dfcntl.h83 * For providing a substitute for a function that is missing on some
97 * For providing a replacement for a function that exists on all platforms,
116 * For providing a replacement for a function that exists on some platforms
149 declares a replacement function, named rpl_func, with the given prototype,
161 declares the system function, named func, with the given prototype,
192 except that the C function rpl_func may have a slightly different
210 that redirects to the system provided function func, if GNULIB_NAMESPACE
235 except that the C function func may have a slightly different declaration.
253 except that the C function is picked among a set of overloaded functions,
259 The inner cast: When the function i
[all...]
H A Dtime.h50 * For providing a substitute for a function that is missing on some
64 * For providing a replacement for a function that exists on all platforms,
83 * For providing a replacement for a function that exists on some platforms
116 declares a replacement function, named rpl_func, with the given prototype,
128 declares the system function, named func, with the given prototype,
159 except that the C function rpl_func may have a slightly different
177 that redirects to the system provided function func, if GNULIB_NAMESPACE
202 except that the C function func may have a slightly different declaration.
220 except that the C function is picked among a set of overloaded functions,
226 The inner cast: When the function i
[all...]
/external/bison/linux-lib/
H A Dfcntl.h83 * For providing a substitute for a function that is missing on some
97 * For providing a replacement for a function that exists on all platforms,
116 * For providing a replacement for a function that exists on some platforms
149 declares a replacement function, named rpl_func, with the given prototype,
161 declares the system function, named func, with the given prototype,
192 except that the C function rpl_func may have a slightly different
210 that redirects to the system provided function func, if GNULIB_NAMESPACE
235 except that the C function func may have a slightly different declaration.
253 except that the C function is picked among a set of overloaded functions,
259 The inner cast: When the function i
[all...]
H A Dtime.h50 * For providing a substitute for a function that is missing on some
64 * For providing a replacement for a function that exists on all platforms,
83 * For providing a replacement for a function that exists on some platforms
116 declares a replacement function, named rpl_func, with the given prototype,
128 declares the system function, named func, with the given prototype,
159 except that the C function rpl_func may have a slightly different
177 that redirects to the system provided function func, if GNULIB_NAMESPACE
202 except that the C function func may have a slightly different declaration.
220 except that the C function is picked among a set of overloaded functions,
226 The inner cast: When the function i
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas69 function Pop: T;
75 function Peek: T;
89 function GetCurrent: TPair<TKey, TValue>;
91 function DoGetCurrent: TPair<TKey, TValue>; override;
92 function DoMoveNext: Boolean; override;
95 function MoveNext: Boolean;
104 function GetItem(const Key: TKey): TValue;
106 function GetCount: Integer;
112 function TryGetValue(const Key: TKey; out Value: TValue): Boolean;
114 function ContainsKe
[all...]
/external/arduino/libraries/Wire/
H A DWire.cpp206 // behind the scenes function that is called when data is received
231 // behind the scenes function that is called when data is requested
246 // sets function called on slave write
247 void TwoWire::onReceive( void (*function)(int) )
249 user_onReceive = function;
252 // sets function called on slave read
253 void TwoWire::onRequest( void (*function)(void) )
255 user_onRequest = function;
/external/chromium/net/socket/
H A Dnss_ssl_util.cc76 // be called before any other NSS SSL functions. This function is
128 // The default error mapping function.
214 // to a call to an NSS function. Used instead of SSLErrorParams with
219 SSLFailedNSSFunctionParams(const std::string& function, argument
221 : function_(function), param_(param), ssl_lib_error_(PR_GetError()) {
226 dict->SetString("function", function_);
240 const char* function,
244 make_scoped_refptr(new SSLFailedNSSFunctionParams(function, param)));
239 LogFailedNSSFunction(const BoundNetLog& net_log, const char* function, const char* param) argument
/external/chromium_org/android_webview/public/browser/
H A Ddraw_sw.h40 // Method that returns the current Skia function.
44 typedef bool (AwIsSkiaVersionCompatibleFunction)(SkiaVersionFunction function);
/external/chromium_org/base/debug/
H A Dprofiler.cc137 FARPROC function; member in struct:base::debug::__anon3705::FunctionSearchContext
140 // Callback function to PEImage::EnumImportChunks.
149 DCHECK_EQ(static_cast<FARPROC>(NULL), context->function);
152 // at this point. Let's retrieve the first such function and use it to
157 // Retrieve the module by a function in the module.
166 // See whether this module exports the function we're looking for.
169 // We found it, return the function and terminate the enumeration.
170 context->function = exported_func;
189 return reinterpret_cast<FunctionType>(ctx.function);
/external/chromium_org/chrome/browser/resources/signin_internals/
H A Dsignin_index.css70 -webkit-animation-timing-function: linear;
76 -webkit-animation-timing-function: linear;
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dweb_view.h57 // Calls a JavaScript function in a specified frame with the given args and
61 // function.
63 const std::string& function,
67 // Calls a JavaScript function in a specified frame with the given args and
69 // The second may be used to report an error. This function waits until
72 const std::string& function,
78 // to the function. Also, |kJavaScriptError| or |kScriptTimeout| is used
81 const std::string& function,
87 // JavaScript function. |frame| is a frame ID or an empty string for the main
90 const std::string& function,
[all...]
/external/chromium_org/sandbox/win/src/
H A Dinterception_internal.h34 char function[1]; // placeholder for null terminated name member in struct:sandbox::FunctionInfo
35 // char interceptor[] // followed by the interceptor function
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dcommon.h93 void LogAssert(const char* function, const char* file, int line,
96 typedef void (*AssertLogger)(const char* function,
119 inline bool Assert(bool result, const char* function, const char* file, argument
122 LogAssert(function, file, line, expression);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dcallback.h40 explicit FunctionCallback4(FunctionType* function) : function_(function) {} argument
73 R (*function)(A1, A2, A3, A4)) {
74 return new FunctionCallback4<R, A1, A2, A3, A4>(function);
72 NewPermanentCallback( R (function)A1, A2, A3, A4)) argument

Completed in 842 milliseconds

<<11121314151617181920>>