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

<<21222324252627282930>>

  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 31 #include "llvm/IR/Function.h"
56 virtual bool runOnFunction(Function &F) {
63 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
126 // function.
166 if (Function *F = CS.getCalledFunction()) {
189 /// If isRemovable returns true, this function and getLocForRead completely
455 /// This function detects when it is unsafe to remove a dependent instruction
721 /// function end block. Ex:
730 // function.
740 // then it's leaked by this function anyways
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 53 #include "llvm/IR/Function.h"
287 // function), however this code is loop-aware, where SimplifyCFG is
498 Function::iterator BBI = NewBB; --BBI;
512 Function::iterator BBI = SplitPreds[i];
658 Function *F = Header->getParent();
688 Function::iterator InsertPos = BackedgeBlocks.back(); ++InsertPos;
691 // Now that the block has been inserted into the function, create PHI nodes in
  /external/llvm/tools/bugpoint/
BugDriver.cpp 196 // function, if appropriate.
229 void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 68 void emitFunctionAnnot(const Function *F,
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_mastergain_gnu.s 2 @ Function: SynthMasterGain
46 .global SynthMasterGain @ allow other files to use this function
98 @ Return to calling function
101 LDMFD sp!,{r4-r6, lr} @ return to calling function
106 .endfunc @ end of function/procedure
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_mastergain_gnu.s 2 @ Function: SynthMasterGain
46 .global SynthMasterGain @ allow other files to use this function
98 @ Return to calling function
101 LDMFD sp!,{r4-r6, lr} @ return to calling function
106 .endfunc @ end of function/procedure
  /external/v8/samples/
process.cc 81 // Process function of the JavaScript script given as an argument.
91 // Process function. Returns true if this succeeded, otherwise false.
126 Persistent<Function> process_;
177 // Process function from the global object.
181 // If there is no Process function, or if it is not a function,
185 // It is a function; cast it to a Function
186 Handle<Function> process_fun = Handle<Function>::Cast(process_val)
    [all...]
  /external/v8/src/
api.h 172 static inline Local<Function> ToLocal(
224 OpenHandle(const Function* data);
269 MAKE_TO_LOCAL(ToLocal, JSFunction, Function)
309 MAKE_OPEN_HANDLE(Function, JSFunction)
  /external/v8/test/mjsunit/compiler/
expression-trees.js 33 function makeTrees(op, leaves) {
75 var or_fun = new Function("return " + or_trees[i]);
98 var and_fun = new Function("return " + and_trees[i]);
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions.js 31 // Scenario: some function is being edited; the outer function has to have its
32 // positions patched. Accoring to a special markup of function text
38 "function F1() { return 5; }\n" +
39 "function ChooseAnimal(/*$*/ ) {\n" +
41 "/*$*/ var res/*$*/ =/*$*/ (function() { return 'Cat'; } )();\n" +
46 "function F2(x, y) { return x + y; }"
49 // Find all *$* markers in text of the function and read corresponding statement
51 function ReadMarkerPositions(func) {
62 function ReadPCMap(func, positions)
    [all...]
function-names.js 29 function TestFunctionNames(object, names) {
74 // Function.prototype functions.
77 TestFunctionNames(Function.prototype, functionPrototypeFunctions);
keyed-call-ic.js 33 function globalFunction1() {
37 function globalFunction2() {
44 function testGlobals() {
52 function F() {}
54 F.prototype.one = function() {return 'one'; }
55 F.prototype.two = function() {return 'two'; }
56 F.prototype.three = function() {return 'three'; }
61 function testKeyTransitions() {
111 // Function is a constant property
120 // Function is a fast propert
    [all...]
mirror-unresolved-function.js 31 function MirrorRefCache(json_refs) {
39 MirrorRefCache.prototype.lookup = function(handle) {
57 assertEquals('function', mirror.type());
59 assertEquals("Function", mirror.className());
70 assertEquals('function', fromJSON.type, 'Unexpected mirror type in JSON');
71 assertEquals('Function', fromJSON.className, 'Unexpected mirror class name in JSON');
72 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
object-literal.js 66 function makeSparseArray() {
81 function makeNonConstantArray() { return [ [ n ] ]; }
87 function makeNonConstantObject() { return { a: { b: n } }; }
94 function makeRegexpInArray() { return [ [ /a*/, {} ] ]; }
101 function makeRegexpInObject() { return { a: { b: /b*/, c: {} } }; }
123 "function",
142 function testKeywordProperty(keyword) {
174 // Function property, called.
176 function test_call() { this.was_called = true; was_called = true; }
182 // Function property, constructed
    [all...]
value-wrapper.js 34 function RunTests() {
51 function CallTypeOfThis(obj) {
63 function TestWithWith(obj) {
101 function TypeOfThis() { return typeof this; }
150 // According to ES3 15.3.4.3 the this value passed to Function.prototyle.apply
158 // According to ES3 15.3.4.3 the this value passed to Function.prototyle.call
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.3.js 32 Object "function" [native, implements [Call]]
78 testcases[testcases.length] = new TestCase( SECTION, "typeof(Number.prototype.toString)", "function", typeof(Number.prototype.toString) );
87 testcases[testcases.length] = new TestCase( SECTION, "typeof(new Function())", "function", typeof( new Function() ) );
88 testcases[testcases.length] = new TestCase( SECTION, "typeof(parseInt)", "function", typeof( parseInt ) );
89 testcases[testcases.length] = new TestCase( SECTION, "typeof(test)", "function", typeof( test ) );
90 testcases[testcases.length] = new TestCase( SECTION, "typeof(String.fromCharCode)", "function", typeof( String.fromCharCode ) );
97 function test() {
11.9.1.js 50 function test() {
63 function getTestCases() {
159 function MyObject( value ) {
161 this.valueOf = new Function( "return this.value" );
11.9.2.js 49 function test() {
62 function getTestCases() {
158 function MyObject( value ) {
160 this.valueOf = new Function( "return this.value" );
11.9.3.js 49 function test() {
62 function getTestCases() {
158 function MyObject( value ) {
160 this.valueOf = new Function( "return this.value" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.5-3.js 64 function MyObject (v) {
66 this.toString = new Function ( "return this.value +\"\"" );
70 function getTestCases() {
120 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.2.js 92 testcases[tc++] = new TestCase( SECTION, "Boolean(new Function())", true, Boolean(new Function()) );
99 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Array/
regress-130451.js 43 * NOTE: The sort function is intentionally generic; it does not require that
45 * other kinds of objects for use as a method. Whether the sort function can
63 var cmp = new Function();
71 cmp = function(x,y) {return x-y;};
78 cmp = function(x,y) {return y-x;};
85 cmp = function(x,y) {return x-y;};
96 cmp = function(x,y) {return x-y;};
134 cmp = function(x,y) {return x-y;};
152 cmp = function(x,y) {return x-y;};
193 function addThis(
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
errstack-001.js 41 * B) no-name function calls: function() { myFunc();} ()
49 * Note: our function getStackFrames(err) orders the array of stack frames
52 * to the function that is called first, and so on...
71 function A(x,y)
76 function B(x,z)
81 function C(x,y)
86 function D(x,z)
158 * Make the first frame occur in a function with an empty name -
160 myErr = function() { return A(44,13); } ()
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp 58 v8::Handle<v8::Value> function = args[0];
67 if (function->IsString()) {
68 WTF::String stringFunction = toWebCoreString(function);
70 } else if (function->IsFunction()) {
79 ScheduledAction* action = new ScheduledAction(v8Context, v8::Handle<v8::Function>::Cast(function), paramCount, params);
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 79 ResolveInfo::Function,

Completed in 823 milliseconds

<<21222324252627282930>>