Searched refs:Function (Results 151 - 175 of 723) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/v8/
H A DScheduledAction.h49 ScheduledAction(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
68 v8::Persistent<v8::Function> m_function;
H A DV8WindowErrorHandler.cpp54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
H A DV8WorkerContextErrorHandler.cpp54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
H A DV8LazyEventListener.cpp61 v8::Local<v8::Function> handlerFunction = v8::Local<v8::Function>::Cast(listenerObject);
126 v8::Local<v8::Function> wrappedFunction = v8::Local<v8::Function>::Cast(value);
139 v8::Local<v8::Function> toStringFunction;
H A DDateExtension.cpp92 v8::Handle<v8::Function>::Cast(sleepFunctionHandle)->Call(v8::Object::New(), 1, argv);
111 v8::Handle<v8::Function> enableSleepDetectionFunction = v8::Handle<v8::Function>::Cast(args[1]);
H A DScheduledAction.cpp46 ScheduledAction::ScheduledAction(v8::Handle<v8::Context> context, v8::Handle<v8::Function> func, int argc, v8::Handle<v8::Value> argv[])
50 m_function = v8::Persistent<v8::Function>::New(func);
119 proxy->callFunction(v8::Persistent<v8::Function>::Cast(m_function), v8Context->Global(), m_argc, m_argv);
/external/llvm/lib/CodeGen/
H A DShadowStackGC.cpp59 bool performCustomLowering(Function &F);
63 Constant *GetFrameMap(Function &F);
64 Type* GetConcreteStackEntryType(Function &F);
65 void CollectRoots(Function &F);
89 Function &F;
94 Function::iterator StateBB, StateE;
98 EscapeEnumerator(Function &F, const char *N = "cleanup")
130 for (Function::iterator BB = F.begin(),
202 Constant *ShadowStackGC::GetFrameMap(Function &F) {
258 Type* ShadowStackGC::GetConcreteStackEntryType(Function
[all...]
H A DDwarfEHPrepare.cpp16 #include "llvm/Function.h"
41 bool InsertUnwindResumeCalls(Function &Fn);
52 virtual bool runOnFunction(Function &Fn);
110 bool DwarfEHPrepare::InsertUnwindResumeCalls(Function &Fn) {
113 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
180 bool DwarfEHPrepare::runOnFunction(Function &Fn) {
H A DStackProtector.cpp23 #include "llvm/Function.h"
46 Function *F;
80 virtual bool runOnFunction(Function &Fn);
92 bool StackProtector::runOnFunction(Function &Fn) {
115 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
149 for (Function::iterator I = F->begin(), E = F->end(); I != E; ) {
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp59 #include "llvm/Function.h"
87 virtual bool runOnFunction(Function &F);
149 bool TailCallElim::runOnFunction(Function &F) {
168 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
184 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
217 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
278 Function *F = CI->getParent()->getParent();
279 for (Function::arg_iterator AI = F->arg_begin(); &*AI != Arg; ++AI)
306 Function *F = CI->getParent()->getParent();
309 for (Function
[all...]
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp59 bool IsFunctionMallocLike(Function *F,
60 SmallPtrSet<Function*, 8> &) const;
88 SmallPtrSet<Function*, 8> SCCNodes;
99 Function *F = (*I)->getFunction();
202 Function *F = (*I)->getFunction();
274 ArgumentUsesTracker(const SmallPtrSet<Function*, 8> &SCCNodes)
285 Function *F = CS.getCalledFunction();
288 Function::arg_iterator AI = F->arg_begin(), AE = F->arg_end();
308 const SmallPtrSet<Function*, 8> &SCCNodes;
343 SmallPtrSet<Function*,
[all...]
H A DIPConstantPropagation.cpp44 bool PropagateConstantsIntoArguments(Function &F);
45 bool PropagateConstantReturn(Function &F);
80 bool IPCP::PropagateConstantsIntoArguments(Function &F) {
106 Function::arg_iterator Arg = F.arg_begin();
134 Function::arg_iterator AI = F.arg_begin();
159 bool IPCP::PropagateConstantReturn(Function &F) {
178 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp213 llvm::Function *createFunction(llvm::Module &module,
223 llvm::Function *ret =
224 llvm::Function::Create(functType, linkage, functName, &module);
230 for (llvm::Function::arg_iterator argIndex = ret->arg_begin();
249 static llvm::AllocaInst *createEntryBlockAlloca(llvm::Function &function,
877 llvm::Function *printFunct = module.getFunction("printStr");
919 llvm::Function &printFunct,
971 llvm::Function &toAddTo,
1047 llvm::Function &toAddTo,
1097 llvm::Function *createCatchWrappedInvokeFunctio
[all...]
/external/llvm/lib/Analysis/
H A DProfileInfo.cpp28 template<> char ProfileInfoT<Function,BasicBlock>::ID = 0;
42 ProfileInfoT<Function, BasicBlock>::ProfileInfoT() {
46 ProfileInfoT<Function, BasicBlock>::~ProfileInfoT() {
54 const double ProfileInfoT<Function,BasicBlock>::MissingValue = -1;
60 ProfileInfoT<Function,BasicBlock>::getExecutionCount(const BasicBlock *BB) {
61 std::map<const Function*, BlockCounts>::iterator J =
138 double ProfileInfoT<Function,BasicBlock>::getExecutionCount(const Function *F) {
139 std::map<const Function*, double>::iterator J =
167 void ProfileInfoT<Function,BasicBloc
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DLookup.h81 ThunkGenerator generator() const { ASSERT(m_attributes & Function); return m_u.function.generator; }
83 NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionValue; }
84 unsigned char functionLength() const { ASSERT(m_attributes & Function); return static_cast<unsigned char>(m_u.function.length); }
86 GetFunction propertyGetter() const { ASSERT(!(m_attributes & Function)); return m_u.property.get; }
87 PutFunction propertyPutter() const { ASSERT(!(m_attributes & Function)); return m_u.property.put; }
197 if (entry->attributes() & Function)
214 if (entry->attributes() & Function)
275 ASSERT(!(entry->attributes() & Function));
293 ASSERT(!(entry->attributes() & Function));
313 if (entry->attributes() & Function) { // functio
[all...]
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp143 Function *Codegen();
154 Function *Codegen();
392 Function *CalleeF = TheModule->getFunction(Callee);
409 Function *PrototypeAST::Codegen() {
416 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
440 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
451 Function *FunctionAST::Codegen() {
454 Function *TheFunctio
[all...]
/external/llvm/unittests/VMCore/
H A DPassManagerTest.cpp22 #include "llvm/Function.h"
178 virtual bool runOnFunction(Function &F) {
239 virtual bool doInitialization(Function &F) {
248 virtual bool doFinalization(Function &F) {
271 Function &F = *I;
369 SCOPED_TRACE("Function pass");
422 // Function Declarations
424 Function* func_test1 = Function::Create(
432 Function* func_test
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheBuilderFactory.java17 import com.google.common.base.Function;
97 new Function<List<Object>, CacheBuilder<Object, Object>>() {
112 private static final Function<Object, Optional<?>> NULLABLE_TO_OPTIONAL =
113 new Function<Object, Optional<?>>() {
119 private static final Function<Optional<?>, Object> OPTIONAL_TO_NULLABLE =
120 new Function<Optional<?>, Object>() {
142 new Function<List<Optional<?>>, List<Object>>() {
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTestCommon.h89 llvm::Function *buildFunction(const SourceLocations& DebugLocations) {
104 Function *Result = Function::Create(
124 llvm::Function* f = buildFunction(DebugLocations);
139 llvm::Function* f = buildFunction(DebugLocations);
161 llvm::Function* f = buildFunction(DebugLocations);
190 llvm::Function* f = buildFunction(DebugLocations);
/external/clang/tools/libclang/
H A DCIndexCXX.cpp110 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
111 Template = Function->getPrimaryTemplate();
113 Template = Function->getInstantiatedFromMemberFunction();
/external/guava/guava/src/com/google/common/collect/
H A DInterners.java22 import com.google.common.base.Function;
111 public static <E> Function<E, E> asFunction(Interner<E> interner) {
115 private static class InternerFunction<E> implements Function<E, E> {
/external/guava/guava-tests/test/com/google/common/collect/
H A DComputingConcurrentHashMapTest.java27 import com.google.common.base.Function;
54 MapMaker maker, Function<? super K, ? extends V> computingFunction) {
60 MapMaker maker, Function<? super K, ? extends V> computingFunction) {
74 Function<Object, Object> computingFunction = new Function<Object, Object>() {
101 Function<Object, Object> computingFunction = new ConstantLoader<Object, Object>(null);
248 Function<Object, Object> computingFunction = new Function<Object, Object>() {
306 private static class CountingFunction implements Function<Object, Object> {
322 Function<Objec
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp19 #include "llvm/Function.h"
157 void *MipsJITInfo::emitFunctionStub(const Function* F, void *Fn,
195 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, argument
199 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp200 Function *Codegen();
211 Function *Codegen();
562 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
588 Function *F = TheModule->getFunction(std::string("binary")+Op);
597 Function *CalleeF = TheModule->getFunction(Callee);
623 Function *TheFunction = Builder.GetInsertBlock()->getParent();
688 Function *TheFunction = Builder.GetInsertBlock()->getParent();
758 Function *PrototypeAST::Codegen() {
765 Function *F = Function
[all...]
/external/llvm/lib/Analysis/IPA/
H A DGlobalsModRef.cpp89 std::map<const Function*, FunctionRecord> FunctionInfo;
124 ModRefBehavior getModRefBehavior(const Function *F) {
143 if (const Function* F = CS.getCalledFunction())
171 FunctionRecord *getFunctionInfo(const Function *F) {
172 std::map<const Function*, FunctionRecord>::iterator I =
181 bool AnalyzeUsesOfPointer(Value *V, std::vector<Function*> &Readers,
182 std::vector<Function*> &Writers,
204 std::vector<Function*> Readers, Writers;
246 std::vector<Function*> &Readers,
247 std::vector<Function*>
[all...]

Completed in 756 milliseconds

1234567891011>>