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

<<11121314151617181920>>

  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 57 virtual bool runOnFunction(Function &F);
89 /// createProfileEstimatorPass - This function returns a Pass that estimates
318 bool ProfileEstimatorPass::runOnFunction(Function &F) {
321 // Fetch LoopInfo and clear ProfileInfo for this function.
329 for (Function::iterator bi = F.begin(), be = F.end(); bi != be; ++bi)
335 DEBUG(dbgs() << "Working on function " << F.getNameStr() << "\n");
401 for (Function::const_iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
  /external/llvm/lib/VMCore/
PassManager.cpp 144 if (isa<Function>(V))
145 OS << "function";
173 /// whether any of the passes modifies the function, and if so, return true.
174 bool runOnFunction(Function &F);
182 bool doInitialization(Function &F);
184 bool doFinalization(Function &F);
242 /// createPrinterPass - Get a function printer pass.
253 bool run(Function &F);
255 /// doInitialization - Run all of the initializers for the function passes.
259 /// doFinalization - Run all of the finalizers for the function passes
    [all...]
Verifier.cpp 10 // This file defines the function verifier interface, that can be used for some
29 // * The entry node to a function must not have predecessors
32 // * Verify that a function's argument list agrees with it's declared type.
36 // agree with the function return value type.
37 // * Function call argument types match the function prototype
42 // * All landingpad instructions must use the same personality function with
43 // the same function.
90 bool runOnFunction(Function &F) {
93 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
    [all...]
  /external/skia/src/images/
SkMovie_gif.cpp 74 if (image->ExtensionBlocks[j].Function == GRAPHICS_EXT_FUNC_CODE)
233 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
263 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
281 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
  /external/v8/include/
v8-debug.h 177 * Client data passed to DebugBreakForCommand function. The
188 * Debug event callback function.
202 * Debug event callback function.
212 * Debug message callback function.
227 * Debug message callback function.
237 * Debug host dispatch callback function.
242 * Callback function for the host to ensure debug messages are processed.
291 * Register a callback function to be called when a debug message has been
305 * Run a JavaScript function in the debugger.
306 * \param fun the function to cal
    [all...]
  /external/v8/test/cctest/
test-compiler.cc 58 const char* PrintExtension::kSource = "native function print();";
242 "function foo() { var x = 87; return x; }\n"
244 "function bar() { var x; x = 99; return x; }\n"
246 "function baz() { var x = 1, y, z = 2; y = 3; return x + y + z; }\n"
248 "function Cons0() { this.x = 42; this.y = 87; }\n"
251 "function Cons2(x, y) { this.sum = x + y; }\n"
281 // Tests calling a builtin function from C/C++ code, and the builtin function
291 const char* source = "function foo(a) { gc(), print(a); }";
335 const char function_f[] = "function f() {}"
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.cpp 75 ASSERT(entry->attributes() & Function);
79 JSFunction* function; local
83 function = new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, exec->globalData().getHostFunction(entry->function(), entry->generator()));
86 function = new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, entry->function());
88 thisObj->putDirectFunction(exec->globalData(), propertyName, function, entry->attributes());
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.2-1.js 29 The toString function is not generic; it generates
47 function getTestCases() {
80 function test() {
93 function MyObject( value ) {
95 this.valueOf = new Function( "return this.value" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.4.3.js 48 function getTestCases() {
56 var myfunction = new Function();
80 "myfunction = new Function(); myfunction.valueOf = Object.prototype.valueOf; myfunction.valueOf()",
105 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.10-1.js 54 Note that the substring function is intentionally generic; it does not require
72 function getTestCases() {
168 // this is a function object
170 "var obj = new Function(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8, Infinity)",
171 "Function]",
172 eval("var obj = new Function(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8,Infinity)") );
201 function test() {
214 function MyObject( value ) {
217 this.toString = new Function ( "return this.value+''" );
15.5.4.9-1.js 62 function getTestCases() {
152 // this is a function object
154 "var obj = new Function(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8)",
155 "Function]",
156 eval("var obj = new Function(); obj.substring = String.prototype.substring; obj.toString = Object.prototype.toString; obj.substring(8)") );
185 function test() {
198 function MyObject( value ) {
201 this.toString = new Function ( "return this.value+''" );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
15.3.4.3-1.js 38 * SUMMARY: ECMA conformance of Function.prototype.apply
40 * Function.prototype.apply(thisArg, argArray)
47 var summary = 'Testing ECMA conformance of Function.prototype.apply';
56 function F0(a)
61 function F1(a)
66 function F2()
74 * Function.prototype.apply.length should return 2
77 actual = Function.prototype.apply.length;
84 * called function must be passed the global object as |this|
94 * called function should be invoked with an empty argument lis
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-004.js 58 with (Function)
124 function localA()
137 function localB()
150 function localC(obj)
167 function localD(obj)
183 function addThis()
192 function test()
  /external/webkit/Source/WebCore/bindings/v8/
V8WorkerContextEventListener.cpp 62 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
87 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
  /external/webkit/Source/WebCore/css/
CSSParserValues.h 51 CSSParserFunction* function; member in union:WebCore::CSSParserValue::__anon13267
55 Function = 0x100001,
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 14 ; * Function: armVCM4P2_SetPredDir
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_SetPredDir_s.s 14 ; * Function: armVCM4P2_SetPredDir
  /frameworks/base/tools/preload/
sorttable.js 22 init: function() {
23 // quit if this function has already been called
25 // flag this function so we don't do the same thing twice
34 forEach(document.getElementsByTagName('table'), function(table) {
42 makeSortable: function(table) {
84 if (mtch && typeof sorttable["sort_"+override] == 'function') {
92 dean_addEvent(headrow[i],"click", function(e) {
123 forEach(theadrow.childNodes, function(cell) {
166 guessType: function(table, column) {
199 getInnerText: function(node)
    [all...]
  /frameworks/compile/slang/
slang_rs_backend.cpp 28 #include "llvm/Function.h"
80 // Iterate all function declarations in the program.
92 "invalid function name prefix, "
98 // Process any non-static function declarations
176 // Process any static function declarations
276 // Dump export function info
291 // Function name
296 llvm::Function *F = M->getFunction(EF->getName());
297 llvm::Function *HelperFunction;
300 slangAssert(F && "Function marked as exported disappeared in Bitcode")
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 30 /// getBuiltinLibFunction - Given a builtin id for a function like
31 /// "__builtin_fabsf", return a Function* for "fabsf".
    [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/clang/lib/Sema/
SemaOverload.cpp 38 /// function.
161 "Function-to-pointer",
224 // array-to-pointer or function-to-pointer implicit conversions, so
630 // signature as some function in Old (C++ 1.3.10) or if the Old
631 // declarations aren't functions (or function templates) at all. When
660 // into a function template's signature.
682 // function templates hide function templates with different
719 // Only function declarations can be overloaded; object and type
740 // A function template can be overloaded with other function template
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 32 #include "llvm/Function.h"
182 // Only consider values with pointer types, and not function pointers.
203 static InstructionClass GetFunctionClass(const Function *F) {
204 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
286 if (const Function *F = CI->getCalledFunction()) {
305 for (Function::const_arg_iterator AI = F->arg_begin(),
367 if (const Function *F = CI->getCalledFunction())
642 virtual ModRefBehavior getModRefBehavior(const Function *F);
728 ObjCARCAliasAnalysis::getModRefBehavior(const Function *F) {
787 virtual bool runOnFunction(Function &F)
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 62 #include "llvm/Function.h"
100 // function to recycle the memory (which is used at compilation time and not
177 // This function converts a Constant* into a GenericValue. The interesting
562 const llvm::Function *F = static_cast<const llvm::Function*>(C);
564 GetPointerToFunctionOrStub(const_cast<llvm::Function*>(F));
667 // Recursive function to apply a @Constant value into the specified memory
831 llvm::Function *F = (llvm::Function*) V;
838 // Return the function stub if it's already created
    [all...]
  /external/clang/lib/AST/
Decl.cpp 220 // - an object, reference, function or function template that is
256 // A non-member function template can have internal linkage; any
258 const FunctionDecl *Function = 0;
261 Function = FunTmpl->getTemplatedDecl();
263 Function = cast<FunctionDecl>(D);
266 if (Function->getStorageClass() == SC_Static)
323 // variable or function with external linkage unless
330 // given variable or function shall be identical...
369 // - a function, unless it has internal linkage; o
    [all...]

Completed in 1166 milliseconds

<<11121314151617181920>>