| /external/clang/lib/CodeGen/ |
| CodeGenModule.h | 40 class Function; 222 /// CodeGenModule - This class organizes the cross-function state that is used 315 typedef std::pair<OrderGlobalInits, llvm::Function*> GlobalInitData; 574 /// GetAddrOfFunction - Return the address of the given function. If Ty is 575 /// non-null, then this function will use the specified type if it has to 710 /// getBuiltinLibFunction - Given a builtin id for a function like 711 /// "__builtin_fabsf", return a Function* for "fabsf". 715 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = 731 /// destructor function. 736 /// CreateRuntimeFunction - Create a new runtime function with the specifie [all...] |
| CGBuiltin.cpp | 29 /// getBuiltinLibFunction - Given a builtin id for a function like 30 /// "__builtin_fabsf", return a Function* for "fabsf". 175 /// \arg CGF The current codegen function. [all...] |
| /external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
| JSTestObj.cpp | 199 { "voidMethod", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionVoidMethod), (intptr_t)0 THUNK_GENERATOR(0) }, 200 { "voidMethodWithArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionVoidMethodWithArgs), (intptr_t)3 THUNK_GENERATOR(0) }, 201 { "intMethod", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionIntMethod), (intptr_t)0 THUNK_GENERATOR(0) }, 202 { "intMethodWithArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionIntMethodWithArgs), (intptr_t)3 THUNK_GENERATOR(0) }, 203 { "objMethod", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionObjMethod), (intptr_t)0 THUNK_GENERATOR(0) }, 204 { "objMethodWithArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionObjMethodWithArgs), (intptr_t)3 THUNK_GENERATOR(0) }, 205 { "methodThatRequiresAllArgs", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionMethodThatRequiresAllArgs), (intptr_t)2 THUNK_GENERATOR(0) }, 206 { "methodThatRequiresAllArgsAndThrows", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionMethodThatRequiresAllArgsAndThrows), (intptr_t)2 THUNK_GENERATOR(0) }, 207 { "serializedValue", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionSerializedValue), (intptr_t)1 THUNK_GENERATOR(0) }, 208 { "idbKey", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsTestObjPrototypeFunctionIdbKey), (intptr_t)1 THUNK_GENERA (…) [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| CodeGenPrepare.cpp | 1 //===- CodeGenPrepare.cpp - Prepare a function for code generation --------===// 10 // This pass munges the code in the input function to better prepare it for 29 #include "llvm/IR/Function.h" 106 bool runOnFunction(Function &F); 117 bool EliminateFallThrough(Function &F); 118 bool EliminateMostlyEmptyBlocks(Function &F); 130 bool PlaceDbgValues(Function &F); 145 bool CodeGenPrepare::runOnFunction(Function &F) { 160 for (Function::iterator I = F.begin(); I != F.end(); I++) 176 for (Function::iterator I = F.begin(); I != F.end(); ) [all...] |
| /external/llvm/lib/Transforms/IPO/ |
| GlobalOpt.cpp | 84 bool OptimizeEmptyGlobalCXXDtors(Function *CXAAtExitFn); 141 /// null/false. When the first accessing function is noticed, it is recorded. 142 /// When a second different accessing function is noticed, 144 const Function *AccessingFunction; 207 const Function *F = I->getParent()->getParent(); [all...] |
| /external/clang/lib/Sema/ |
| SemaTemplateInstantiate.cpp | 43 /// dealing with a specialization. This is only relevant for function 49 /// friend function template specializations. 98 // Add template arguments from a function template specialization. 99 else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) { 101 (Function->getTemplateSpecializationKind() == 103 !Function->getClassScopeSpecializationPattern())) 107 = Function->getTemplateSpecializationArgs()) { 111 // If this function was instantiated from a specialized member that is 112 // a function template, we're done. 113 assert(Function->getPrimaryTemplate() && "No function template?") [all...] |
| SemaTemplateDeduction.cpp | 38 /// \brief Within template argument deduction from a function call, we are 42 /// \brief Within template argument deduction from a function call, we 45 /// \brief Within template argument deduction from a function call, 50 /// template argument deduction from a function call where conversions 100 /// performing template argument deduction for partial ordering of function 569 /// \brief Helper function to build a TemplateParameter when we don't 671 /// function types (C++ [temp.deduct.type]p10). 738 // If the original function parameter associated with A is a function 739 // parameter pack and the function parameter associated with P is no [all...] |
| /external/llvm/lib/Transforms/ObjCARC/ |
| ObjCARCOpts.cpp | 714 /// Declaration for ObjC runtime function 717 /// Declaration for ObjC runtime function objc_autoreleaseReturnValue. 719 /// Declaration for ObjC runtime function objc_release. 721 /// Declaration for ObjC runtime function objc_retain. 723 /// Declaration for ObjC runtime function objc_retainBlock. 725 /// Declaration for ObjC runtime function objc_autorelease. 729 /// is in fact used in the current function. 750 void OptimizeRetainCall(Function &F, Instruction *Retain); 751 bool OptimizeRetainRVCall(Function &F, Instruction *RetainRV); 752 void OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV [all...] |
| ObjCARC.h | 190 InstructionClass GetFunctionClass(const Function *F); 199 if (const Function *F = CI->getCalledFunction()) 308 // It seemes intuitive to exclude function pointer types as well, since 310 // bitcasts retainable object pointers to function-pointer type temporarily.
|
| /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
| DFA.as | 32 public function DFA(recognizer:BaseRecognizer, decisionNumber:int, description:String, 34 specialStateTransitionFunction:Function = null, errorFunction:Function = null) { 61 public function predict(input:IntStream):int { 153 protected function noViableAlt(s:int, input:IntStream):void { 168 public var error:Function = function(nvae:NoViableAltException):NoViableAltException { return nvae; } 170 public var specialStateTransition:Function = function(dfa:DFA, s:int, input:IntStream):int { 174 public function get description():String [all...] |
| /external/clang/lib/Serialization/ |
| ASTCommon.cpp | 114 // Each function, method, and block declaration is its own DeclContext. 115 case Decl::Function: 160 case Decl::Function:
|
| /external/guava/guava/src/com/google/common/collect/ |
| SortedMaps.java | 31 import com.google.common.base.Function; 52 * function. All other properties of the map, such as iteration order, are 56 * Function<Integer, Double> sqrt = 57 * new Function<Integer, Double>() { 73 * null values provided that the function is capable of accepting null input. 74 * The transformed map might contain null values, if the function sometimes 80 * <p>The function is applied lazily, invoked when needed. This is necessary 81 * for the returned map to be a view, but it means that the function will be 83 * {@code Map.toString()}. For this to perform well, {@code function} should 87 * @deprecated Use {@link Maps#transformValues(SortedMap, Function)} [all...] |
| /external/guava/guava/src/com/google/common/util/concurrent/ |
| AtomicLongMap.java | 8 import com.google.common.base.Function; 277 Maps.transformValues(map, new Function<AtomicLong, Long>() {
|
| /external/guava/guava-tests/test/com/google/common/cache/ |
| CacheReferencesTest.java | 22 import com.google.common.base.Function; 56 new Function<CacheBuilder<Object, Object>, LoadingCache<Key, String>>() {
|
| /external/llvm/include/llvm/Analysis/ |
| MemoryDependenceAnalysis.h | 27 class Function; 90 /// dependency in the specified function. 143 /// that is transparent to the start of the function. 335 bool runOnFunction(Function &); 395 /// the query instruction as well; this function may take advantage of 412 /// location value, then this function returns the size in bytes of the
|
| /external/llvm/include/llvm/ |
| PassManagers.h | 108 ON_FUNCTION_MSG, // "' on Function '" + FunctionName + "'...\n" 184 /// the manager. Remove dead passes. This is a recursive function. 300 virtual Pass *getOnTheFlyPass(Pass *P, AnalysisID PI, Function &F); 405 /// It batches all function passes and basic block pass managers together and 406 /// sequence them to process one function at a time before processing next 407 /// function. 416 bool runOnFunction(Function &F); 427 /// doInitialization - Run all of the initializers for the function passes. 436 /// doFinalization - Run all of the finalizers for the function passes. 452 return "Function Pass Manager" [all...] |
| /external/llvm/lib/Analysis/ |
| TypeBasedAliasAnalysis.cpp | 146 virtual ModRefBehavior getModRefBehavior(const Function *F); 266 TypeBasedAliasAnalysis::getModRefBehavior(const Function *F) {
|
| /external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| IntelJITEventListener.cpp | 20 #include "llvm/IR/Function.h" 60 virtual void NotifyFunctionEmitted(const Function &F, 116 // Adds the just-emitted function to the symbol table. 118 const Function &F, void *FnStart, size_t FnSize, 154 // JIT function 160 // If we have no file name yet for the function, use the filename from 218 // Build the function loaded notification message 255 // registered function addresses for each loaded object. We will 256 // use the MethodIDs map to get the registered ID for each function. 264 // Get the object's function list from LoadedObjectMa [all...] |
| /external/llvm/lib/IR/ |
| Dominators.cpp | 71 bool DominatorTree::runOnFunction(Function &F) { 79 Function &F = *getRoot()->getParent();
|
| Globals.cpp | 72 if (const Function *F = dyn_cast<Function>(this))
|
| /external/llvm/lib/Transforms/Utils/ |
| ValueMapper.cpp | 10 // This file defines the MapValue function, which is shared by various parts of 17 #include "llvm/IR/Function.h" 111 Function *F = 112 cast<Function>(MapValue(BA->getFunction(), VM, Flags, TypeMapper));
|
| /external/llvm/unittests/IR/ |
| DominatorTreeTest.cpp | 27 virtual bool runOnFunction(Function &F) { 29 Function::iterator FI = F.begin();
|
| /external/v8/test/mjsunit/ |
| fun-name.js | 28 function strip(s) { 32 assertEquals('function(){}', strip((function () { }).toString())); 33 assertEquals('functionanonymous(){}', strip(new Function().toString()));
|
| function-bind.js | 28 // Tests the Function.prototype.bind (ES 15.3.4.5) method. 31 function foo(x, y, z) { 65 function f_bound_this(z) { 177 function bar(x, y, z) { 222 bind(Function.prototype, 3); 227 assertFalse(obj3 instanceof Function); 247 function soo(x, y, z) { 270 // and both get and set is the ThrowTypeError function). 284 assertTrue(cdesc.get instanceof Function); 288 assertThrows(function() { return f.caller; }, TypeError) [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-110509.js | 32 function foo() { 34 new Function("");
|