Searched defs:Function (Results 51 - 75 of 125) sorted by relevance

12345

/external/guava/guava-tests/test/com/google/common/base/
H A DSuppliersTest.java52 Function<Number, Integer> intValueFunction =
53 new Function<Number, Integer>() {
75 Function<List<Integer>, List<Integer>> addElementFunction =
76 new Function<List<Integer>, List<Integer>>() {
238 Function<Supplier<Boolean>, Supplier<Boolean>> memoizer =
239 new Function<Supplier<Boolean>, Supplier<Boolean>>() {
251 Function<Supplier<Boolean>, Supplier<Boolean>> memoizer =
252 new Function<Supplier<Boolean>, Supplier<Boolean>>() {
262 Function<Supplier<Boolean>, Supplier<Boolean>> memoizer)
373 Function<Supplie
261 testSupplierThreadSafe( Function<Supplier<Boolean>, Supplier<Boolean>> memoizer) argument
[all...]
/external/libedit/src/editline/
H A Dreadline.h40 typedef int Function(const char *, int); typedef
65 Function *function;
111 extern Function *rl_completion_entry_function;
120 extern Function *rl_pre_input_hook;
121 extern Function *rl_startup_hook;
197 int rl_add_defun(const char *, Function *, int);
/external/llvm/include/llvm/MC/
H A DMCWin64EH.h66 Function(nullptr), PrologEnd(nullptr), Symbol(nullptr),
72 const MCSymbol *Function; member in struct:llvm::MCWin64EHUnwindInfo
/external/llvm/include/llvm/Target/
H A DTargetJITInfo.h25 class Function;
68 virtual void *emitFunctionStub(const Function* F, void *Target,
103 virtual void relocate(void *Function, MachineRelocation *MR, argument
/external/mesa3d/src/mesa/main/
H A DAPIspec.py100 func = Function(tmpl_node, func_node, self.is_impl,
122 class Function(object): class in inherits:object
/external/llvm/lib/IR/
H A DFunction.cpp1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the IR library.
14 #include "llvm/IR/Function.h"
36 template class llvm::SymbolTableListTraits<Argument, Function>;
37 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
45 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
57 void Argument::setParent(Function *parent) {
68 const Function *F = getParent();
71 Function::const_arg_iterator AI = F->arg_begin();
187 // Helper Methods in Function
218 Function::Function(FunctionType *Ty, LinkageTypes Linkage, function in class:Function
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h1060 class Function;
1063 class Function<R()> : public FunctionBase { class in namespace:WTF
1065 Function() function in class:WTF::Function
1069 Function(PassRefPtr<FunctionImpl<R()> > impl) function in class:WTF::Function
1082 class Function<R(A1)> : public FunctionBase { class in namespace:WTF
1084 Function() function in class:WTF::Function
1088 Function(PassRefPtr<FunctionImpl<R(A1)> > impl) function in class:WTF::Function
1101 class Function<R(A1, A2)> : public FunctionBase { class in namespace:WTF
1103 Function() function in class:WTF::Function
1107 Function(PassRefPt function in class:WTF::Function
1120 class Function<R(A1, A2, A3)> : public FunctionBase { class in namespace:WTF
1122 Function() function in class:WTF::Function
1126 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3)> > impl) function in class:WTF::Function
1139 class Function<R(A1, A2, A3, A4)> : public FunctionBase { class in namespace:WTF
1141 Function() function in class:WTF::Function
1145 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3, A4)> > impl) function in class:WTF::Function
1158 class Function<R(A1, A2, A3, A4, A5)> : public FunctionBase { class in namespace:WTF
1160 Function() function in class:WTF::Function
1164 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3, A4, A5)> > impl) function in class:WTF::Function
1177 class Function<R(A1, A2, A3, A4, A5, A6)> : public FunctionBase { class in namespace:WTF
1179 Function() function in class:WTF::Function
1183 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3, A4, A5, A6)> > impl) function in class:WTF::Function
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dvirtualsocketserver.h103 typedef std::vector<Point> Function; typedef in class:rtc::VirtualSocketServer
105 static Function* CreateDistribution(uint32 mean, uint32 stddev,
176 static Function* Accumulate(Function* f);
177 static Function* Invert(Function* f);
178 static Function* Resample(Function* f, double x1, double x2, uint32 samples);
179 static double Evaluate(Function* f, double x);
228 Function* delay_dist
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py96 class Function(Node,Parser): class in inherits:Node,Parser
305 node = Function()
H A Dgenpyx.py152 class Function(object): class in inherits:object
177 if isinstance(node,Function):
433 """ used in Function; may lack an identifier """
/external/chromium_org/tools/json_schema_compiler/
H A Dmodel.py97 - |functions| a map of function names to their model.Function
98 - |events| a map of event names to their model.Function
162 - |functions| a map of function names to their model.Function
257 self.function = Function(self, function_name, json, namespace, origin)
262 class Function(object): class in inherits:object
263 """A Function defined in the API.
275 - |optional| whether the Function is "optional"; this only makes sense to be
276 present when the Function is representing a callback property
277 - |simple_name| the name of this Function without a namespace
321 self.callback = Function(sel
[all...]
/external/chromium_org/v8/src/
H A Druntime.h788 struct Function { struct in class:v8::internal::Runtime
812 static const Function* FunctionForName(Handle<String> name);
815 static const Function* FunctionForId(FunctionId id);
818 static const Function* FunctionForEntry(Address ref);
H A Druntime.js25 var $Function = global.Function;
/external/chromium_org/v8/test/webkit/fast/js/
H A DObject-getOwnPropertyNames.js37 // Function objects
38 "new Function()": "['arguments', 'caller', 'length', 'name', 'prototype']",
39 "(function(){var x=new Function();x.__proto__=[1,2,3];return x;})()": "['arguments', 'caller', 'length', 'name', 'prototype']",
76 "Function": "['arguments', 'caller', 'length', 'name', 'prototype']",
77 "Function.prototype": "['apply', 'arguments', 'bind', 'call', 'caller', 'constructor', 'length', 'name', 'toString']",
122 "Function",
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc265 ValueHandle Function) {
268 Location Loc = getFunctionLocation(Function, &FName);
278 ValueHandle Function) {
279 __ubsan_handle_function_type_mismatch(Data, Function);
263 __ubsan_handle_function_type_mismatch( FunctionTypeMismatchData *Data, ValueHandle Function) argument
276 __ubsan_handle_function_type_mismatch_abort( FunctionTypeMismatchData *Data, ValueHandle Function) argument
/external/deqp/framework/randomshaders/
H A DrsgShader.hpp39 class Function class in namespace:rsg
42 Function (void);
43 Function (const char* name);
44 ~Function (void);
100 Function& getMain (void) { return m_mainFunction; }
101 Function& allocateFunction (void);
126 std::vector<Function*> m_functions;
127 Function m_mainFunction;
/external/llvm/bindings/python/llvm/
H A Dcore.py28 "Function",
239 if not isinstance(self.function, Function):
256 return Function(lib.LLVMGetFirstFunction(self))
260 return Function(lib.LLVMGetLastFunction(self))
269 class Function(Value): class in inherits:Value
277 return f and Function(f)
282 return f and Function(f)
317 return Function.__bb_iterator(self)
320 return Function.__bb_iterator(self, reverse=True)
535 library.LLVMGetNextFunction.argtypes = [Function]
[all...]
/external/llvm/lib/Target/ARM/
H A DARMJITInfo.cpp20 #include "llvm/IR/Function.h"
160 void *ARMJITInfo::emitFunctionStub(const Function* F, void *Fn,
268 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, argument
271 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
/external/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp19 #include "llvm/IR/Function.h"
203 void *MipsJITInfo::emitFunctionStub(const Function *F, void *Fn,
248 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, argument
252 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp17 #include "llvm/IR/Function.h"
377 void *PPCJITInfo::emitFunctionStub(const Function* F, void *Fn,
424 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, argument
427 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
/external/llvm/lib/Target/Sparc/
H A DSparcJITInfo.cpp229 void *SparcJITInfo::emitFunctionStub(const Function *F, void *Fn,
276 void SparcJITInfo::relocate(void *Function, MachineRelocation *MR, argument
279 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp18 #include "llvm/IR/Function.h"
477 void *X86JITInfo::emitFunctionStub(const Function* F, void *Target,
548 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, argument
551 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
564 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dstatetracker.py530 class Function(object): class in inherits:object
803 The current Function object.
918 function = Function(self._block_depth, is_assigned, doc, name)
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValues.h152 Function = 0x100001, enumerator in enum:blink::CSSParserValue::__anon11029
274 unit = Function;
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dstatetracker.py652 class Function(object): class in inherits:object
957 The current Function object.
1099 function = Function(self._block_depth, is_assigned, doc, name)

Completed in 4884 milliseconds

12345