HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 351 - 375 of 1083) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 20 #include "llvm/IR/Function.h"
57 // the old function.
78 /// JITCompilerFunction - This contains the address of the JIT function used to
79 /// compile a function lazily.
90 // CompilationCallback stub - We can't use a C function with inline assembly in
113 // stuff for the real target function right now. We have to act as if this
117 // of the end of function stub.
127 // t8 points at the end of function stub. Pass the beginning of the stub
144 // Jump to the (newly modified) stub to invoke the real function.
160 /// MipsCompilationCallbackC - This is the target-specific function invoke
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 22 #include "llvm/IR/Function.h"
39 Function *Caller;
53 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
157 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
180 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
203 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
227 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
272 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
322 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
351 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B)
    [all...]
UnifyFunctionExitNodes.cpp 20 #include "llvm/IR/Function.h"
28 "Unify function exit nodes", false, false)
46 // If there are no return stmts in the Function, a null pointer is returned.
48 bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
49 // Loop over all of the blocks in a function, tracking all of the blocks that
54 for(Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
87 // Otherwise, we need to insert a new basic block into the function, add a PHI
88 // nodes (if the function returns values), and convert all of the return
98 // If the function doesn't return void... add a PHI node to the block...
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 1 //===-- DifferenceEngine.cpp - Structural function/module comparison ------===//
22 #include "llvm/IR/Function.h"
114 /// A function-scope difference engine.
461 void diff(Function *L, Function *R) {
466 for (Function::arg_iterator
635 void DifferenceEngine::diff(Function *L, Function *R) {
646 log("left function is declaration, right function is definition")
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.4-2.js 40 Note that the charAt function is intentionally generic;
58 function getTestCases() {
114 function test() {
131 function MyObject( value ) {
133 this.valueOf = new Function( "return this.value;" );
134 this.toString = new Function( "return this.value +''" );
137 function MyOtherObject(value) {
139 this.valueOf = new Function( "return this.value;" );
15.5.4.4-3.js 40 Note that the charAt function is intentionally generic;
45 This tests assiging charAt to a user-defined function.
60 function MyObject (v) {
62 this.toString = new Function( "return this.value +'';" );
63 this.valueOf = new Function( "return this.value" );
66 function getTestCases() {
101 function test() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLCallGroups.java 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function;
127 * {@link Function#glPushGroupMarkerEXT} and {@link Function#glPopGroupMarkerEXT} calls.
159 if (c.getFunction() == Function.glPushGroupMarkerEXT) {
167 } else if (c.getFunction() == Function.glPopGroupMarkerEXT) {
  /external/llvm/examples/BrainF/
BrainF.cpp 55 //Function prototypes
59 Function *memset_func = Intrinsic::getDeclaration(module, Intrinsic::memset,
63 getchar_func = cast<Function>(module->
67 putchar_func = cast<Function>(module->
72 //Function header
75 brainf_func = cast<Function>(module->
119 //Function footer
149 Function *puts_func = cast<Function>(module->
  /external/v8/src/
d8-debug.cc 66 // Get the toJSONProtocol function on the event and get the JSON format.
68 Local<Function> to_json_fun =
69 Function::Cast(*event_data->Get(to_json_fun_name));
92 Local<Function> fun = Function::Cast(*exec_state->Get(fun_name));
128 Handle<Function> fun;
137 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name));
  /external/chromium/testing/gmock/include/gmock/
gmock-spec-builders.h 88 // Implements a mock function.
100 // Base class for function mockers.
103 // Protects the mock object registry (in class Mock), all function
107 // mock function Foo() is called, it needs to consult its expectations
109 // call a mock function (either Foo() or a different one) at the same
112 // expectation gets picked. Therefore, we sequence all mock function
120 // type-agnostic part of the function mocker interface. Its pure
127 // Verifies that all expectations on this mock function have been
133 // Clears the ON_CALL()s set on this mock function.
164 // Returns the expectation that matches the given function argument
    [all...]
  /external/guava/guava/src/com/google/common/collect/
GenericMapMaker.java 23 import com.google.common.base.Function;
165 Function<? super K, ? extends V> computingFunction);
  /external/guava/guava-tests/test/com/google/common/collect/
SortedListsTest.java 19 import com.google.common.base.Function;
124 tester.setDefault(Function.class, Functions.identity());
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 28 virtual bool runOnFunction(Function &F) {
31 std::string Title = GraphName + " for '" + F.getName().str() + "' function";
53 virtual bool runOnFunction(Function &F) {
62 std::string Title = GraphName + " for '" + F.getName().str() + "' function";
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCFIException.cpp 67 const std::vector<const Function*> &Personalities = MMI->getPersonalities();
85 /// BeginFunction - Gather pre-function exception information. Assumes it's
86 /// being emitted immediately after the function entry point.
104 const Function *Per = MMI->getPersonalities()[MMI->getPersonalityIndex()];
138 /// EndFunction - Gather and emit post-function exception information.
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 30 #include "llvm/IR/Function.h"
276 bool runOnFunction(Function &F);
279 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
302 Function *AsanCtorFunction;
303 Function *AsanInitFunction;
304 Function *AsanHandleNoReturnFunc;
307 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
309 Function *AsanErrorCallbackSized[2];
352 Function *AsanPoisonGlobals;
353 Function *AsanUnpoisonGlobals
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 32 class Function;
117 ObjCARCAliasAnalysis::getModRefBehavior(const Function *F) {
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 173 /// value out of a function, it will have an entry in this map, indicating
174 /// what the known return value for the function is.
175 DenseMap<Function*, LatticeVal> TrackedRetVals;
179 DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
181 /// MRVFunctionsTracked - Each function in TrackedMultipleRetVals is
183 SmallPtrSet<Function*, 16> MRVFunctionsTracked;
188 SmallPtrSet<Function*, 16> TrackingIncomingArguments;
236 /// and out of the specified function (which cannot have its address taken),
238 void AddTrackedFunction(Function *F) {
249 void AddArgumentTrackedFunction(Function *F)
    [all...]
  /external/llvm/tools/lto/
LTOModule.h 29 class Function;
146 /// addDefinedFunctionSymbol - Add a function symbol as defined to the list.
147 void addDefinedFunctionSymbol(const llvm::Function *f);
  /external/v8/test/mjsunit/harmony/
block-const-assign.js 37 // Function local const.
38 function constDecl0(use) {
39 return "(function() { const constvar = 1; " + use + "; });";
43 function constDecl1(use) {
44 return "(function() { " + use + "; const constvar = 1; });";
48 // Function local const, assign from eval.
49 function constDecl2(use) {
50 use = "eval('(function() { " + use + " })')";
51 return "(function() { const constvar = 1; " + use + "; })();";
55 function constDecl3(use)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.cpp 95 v8::Handle<v8::Object> function = v8Listener->getListenerObject(document); local
96 if (function.IsEmpty())
99 return toWebCoreStringWithNullCheck(function);
115 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(object);
116 v8::ScriptOrigin origin = function->GetScriptOrigin();
119 lineNumber = function->GetScriptLineNumber() + 1;
  /external/webkit/Source/WebCore/css/
CSSParserValues.cpp 38 if (m_values[i].unit == CSSParserValue::Function)
39 delete m_values[i].function;
77 } else if (unit == CSSParserValue::Function)
78 parsedValue = CSSFunctionValue::create(function);
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsFrontendImpl.cpp 121 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchFunction);
126 function->Call(inspectorBackend, args.size(), args.data());

Completed in 1852 milliseconds

<<11121314151617181920>>