HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 501 - 525 of 897) sorted by null

<<21222324252627282930>>

  /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...]
  /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.
334 bool runOnFunction(Function &);
408 /// location value, then this function returns the size in bytes of the
DebugInfo.h 28 class Function;
81 Function *getFunctionField(unsigned Elt) const;
391 /// other types, like a function or struct.
455 /// DISubprogram - This is a wrapper for a subprogram (e.g. a function).
556 /// information for the function F.
557 bool describes(const Function *F);
559 Function *getFunction() const { return getFunctionField(16); }
676 /// information for an inlined function arguments.
677 bool isInlinedFnArgument(const Function *CurFn);
774 /// to hold function specific information
    [all...]
  /external/llvm/include/llvm/
PassManagers.h 107 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);
406 /// It batches all function passes and basic block pass managers together and
407 /// sequence them to process one function at a time before processing next
408 /// function.
417 bool runOnFunction(Function &F);
423 /// doInitialization - Run all of the initializers for the function passes.
427 /// doFinalization - Run all of the finalizers for the function passes.
443 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/Transforms/Scalar/
Reassociate.cpp 16 // function arguments are rank = 1, and other values are assigned ranks
17 // corresponding to the reverse post order traversal of current function
28 #include "llvm/Function.h"
87 bool runOnFunction(Function &F);
93 void BuildRankMap(Function &F);
148 void Reassociate::BuildRankMap(Function &F) {
151 // Assign distinct ranks to function arguments
152 for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I)
155 ReversePostOrderTraversal<Function*> RPOT(&F);
156 for (ReversePostOrderTraversal<Function*>::rpo_iterator I = RPOT.begin()
    [all...]
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 10 // This file defines the MapValue function, which is shared by various parts of
17 #include "llvm/Function.h"
96 Function *F =
97 cast<Function>(MapValue(BA->getFunction(), VM, Flags, TypeMapper));
  /external/llvm/lib/VMCore/
Globals.cpp 71 if (const Function *F = dyn_cast<Function>(this))
AsmWriter.cpp 58 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
310 /// TheFunction - The function for which we are holding slot numbers.
311 const Function* TheFunction;
318 /// fMap - The slot map for the function level data.
328 /// Construct from a function, starting out in incorp state.
329 explicit SlotTracker(const Function *F);
337 /// If you'd like to deal with a function instead of just a module, use
339 void incorporateFunction(const Function *F) {
345 /// most recently incorporated function from the SlotTracker. This
356 /// This function does the actual initialization
    [all...]
  /external/v8/src/mips/
virtual-frame-mips.h 105 // Construct an initial virtual frame on entry to a JS function.
263 // The function frame slot.
264 MemOperand Function() { return MemOperand(fp, kFunctionOffset); }
282 // Call JS function from top of the stack with arguments
288 void CallRuntime(const Runtime::Function* f, int arg_count);
459 // (the fp register). The parameters, receiver, function, and context
471 // The index of the function slot in the frame. It is below the frame
  /external/v8/test/mjsunit/
fun-name.js 28 function strip(s) {
32 assertEquals('function(){}', strip((function () { }).toString()));
33 assertEquals('functionanonymous(){}', strip(new Function().toString()));
unusual-constructor.js 30 var obj = new (Function.__proto__)();
  /external/v8/test/mjsunit/regress/
regress-1209.js 28 function crashMe(n) {
32 return Function.apply(null, nasty);
regress-874178.js 28 function foo(){}
29 assertTrue(Function.prototype.isPrototypeOf(foo));
  /external/webkit/Source/WebCore/bindings/js/
JSHistoryCustom.cpp 70 if (entry->attributes() & Function) {
71 if (entry->function() == jsHistoryPrototypeFunctionBack) {
74 } else if (entry->function() == jsHistoryPrototypeFunctionForward) {
77 } else if (entry->function() == jsHistoryPrototypeFunctionGo) {
111 if (entry->attributes() & Function) {
112 if (entry->function() == jsHistoryPrototypeFunctionBack) {
116 } else if (entry->function() == jsHistoryPrototypeFunctionForward) {
120 } else if (entry->function() == jsHistoryPrototypeFunctionGo) {
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 64 v8::Local<v8::Function> shadowConstructor = shadowTemplate->GetFunction();
143 v8::Local<v8::Value> function = global->Get(v8::String::New("open")); local
144 // If the open property is not a function throw a type error.
145 if (!function->IsFunction()) {
146 throwError("open is not a function");
149 // Wrap up the arguments and call the function.
157 v8::Local<v8::Value> result = proxy->callFunction(v8::Local<v8::Function>::Cast(function), global, args.Length(), params);
V8InjectedScriptManager.cpp 57 v8::Local<v8::Function> function = V8InjectedScriptHost::GetTemplate()->GetFunction(); local
58 if (function.IsEmpty()) {
62 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
94 // a single anonymous function(it's anonymous to avoid cluttering the global object with
95 // inspector's stuff) the function is called a few lines below with InjectedScriptHost wrapper,
96 // injected script id and explicit reference to the inspected global object. The function is expected
108 v8::Local<v8::Value> injectedScriptValue = v8::Function::Cast(*v)->Call(windowGlobal, 3, args);
  /hardware/ril/mock-ril/src/cpp/
experiments.cpp 71 // Get the onRilRequestFunction, making sure its a function
75 // Wasn't a function
76 LOGD("callOnRilRequest X wasn't a function");
79 v8::Handle<v8::Function> onRilRequestFunction =
80 v8::Handle<v8::Function>::Cast(onRilRequestFunctionValue);
139 "function onRilRequest(reqNum, params) {\n"
147 // Call the onRilRequest function
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 67 // Helper function to convert array to llvm::ArrayRef
73 // Helper function to convert pointer + size to llvm::ArrayRef
93 llvm::Function* fun;
236 return NULL; // variable outside of function means declaration
241 // llvm::Function::LinkageTypes linkage;
264 //typedef std::map<ir_function_signature*, llvm::Function*> llvm_functions_t;
265 //typedef std::unordered_map<ir_function_signature*, llvm::Function*> llvm_functions_t;
268 llvm::Function* llvm_function(class ir_function_signature* sig)
274 llvm::Function * function = mod->getFunction(functionName) local
379 llvm::Function * function = mod->getFunction(name); local
406 llvm::Function * function = mod->getFunction(name); local
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
Context.java 21 import com.android.glesv2debugger.DebuggerMessage.Message.Function;
170 * function is called exactly once for each new Message
174 if (msg.getFunction() == Function.SETPROP) {
229 if (msg.getFunction() != Function.eglSwapBuffers)
440 children.add(Function.valueOf(key).name() + " : default");
442 children.add(Function.valueOf(key).name() + " : "
ShaderEditor.java 20 import com.android.glesv2debugger.DebuggerMessage.Message.Function;
221 final Function function = builder.getFunction(); local
226 assert msg.getFunction() == function;
257 assert msg.getFunction() == Function.glShaderSource;
310 builder.setFunction(Function.CONTINUE);
312 builder.setFunction(Function.SKIP);
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 15 #define DEBUG_TYPE "function-lowering-info"
18 #include "llvm/Function.h"
61 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) {
66 // Check whether the function can return without sret-demotion.
77 Function::const_iterator BB = Fn->begin(), EB = Fn->end();
186 /// clear - Clear out all the function-specific state. This returns this
188 /// different function.
216 /// In the case that the given value has struct or array type, this function
381 isa<Function>(CE->getOperand(0)) &&
382 "Personality should be a function");
    [all...]
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 42 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
95 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
108 Function::arg_iterator AI = F->arg_begin();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
Context.java 21 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function;
170 * function is called exactly once for each new Message
174 if (msg.getFunction() == Function.SETPROP) {
229 if (msg.getFunction() != Function.eglSwapBuffers)
436 children.add(Function.valueOf(key).name() + " : default");
438 children.add(Function.valueOf(key).name() + " : "
ShaderEditor.java 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function;
221 final Function function = builder.getFunction(); local
226 assert msg.getFunction() == function;
257 assert msg.getFunction() == Function.glShaderSource;
308 builder.setFunction(Function.CONTINUE);
310 builder.setFunction(Function.SKIP);

Completed in 2153 milliseconds

<<21222324252627282930>>