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

<<21222324252627282930>>

  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerHelp.java 22 import com.google.common.base.Function;
267 return Collections2.transform(allClasses, new Function<Class<?>, String>() {
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 20 #include "llvm/Function.h"
61 /// isNonEscapingLocalObject - Return true if the pointer is to a function-local
62 /// object that never escapes from the function.
74 // then it has not escaped before entering the function. Check if it escapes
75 // inside the function.
254 /// When TargetData is around, this function is capable of analyzing everything
433 static const Function *getParent(const Value *V) {
445 const Function *F1 = getParent(O1);
446 const Function *F2 = getParent(O2);
503 /// getModRefBehavior - Return the behavior when calling the given function
    [all...]
DebugInfo.cpp 105 Function *DIDescriptor::getFunctionField(unsigned Elt) const {
110 return dyn_cast_or_null<Function>(DbgNode->getOperand(Elt));
503 /// information for an inlined function arguments.
504 bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
505 assert(CurFn && "Invalid function");
508 // This variable is not inlined function argument if its scope
509 // does not describe current function.
514 /// information for the function F.
515 bool DISubprogram::describes(const Function *F) {
516 assert(F && "Invalid function");
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 1 //===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===//
10 // This is the internal per-function state used for llvm translation.
115 /// arbitrary position in a function.
533 /// CodeGenFunction - This class organizes the per-function state that is used
567 /// CurFuncDecl - Holds the Decl for the current function or ObjC method.
574 llvm::Function *CurFn;
576 /// CurGD - The GlobalDecl for the current function being compiled.
587 /// iff the function has no return value.
648 /// A function to call to enter the catch.
    [all...]
CGObjCGNU.cpp 47 /// Class that lazily initialises the runtime function. Avoids inserting the
48 /// types and the function declaration into a module if they're not used, and
54 llvm::Constant *Function;
59 LazyRuntimeFunction() : CGM(0), FunctionName(0), Function(0) {}
61 /// Initialises the lazy function with the name, return type, and the types
68 Function = 0;
81 if (!Function) {
87 Function =
93 return Function;
95 operator llvm::Function*() {
    [all...]
  /external/v8/test/cctest/
test-api.cc 56 using ::v8::Function;
716 const char* one_byte_string_1 = "function a_times_t";
793 Local<Function> fun = fun_templ->GetFunction();
798 // Use SetCallHandler to initialize a function template, should work like the
803 Local<Function> fun = fun_templ->GetFunction();
814 Local<Function> fun = fun_templ->GetFunction();
848 "function foo() {\n"
910 Local<v8::Function> base_function = base->GetFunction();
911 Local<v8::Function> derived_function = derived->GetFunction();
912 Local<v8::Function> other_function = other->GetFunction()
1473 v8::Handle<Value> function = local
1751 Local<v8::Function> function = fun_templ->GetFunction(); local
7068 Local<Function> function = fun_templ->GetFunction(); local
7100 Local<Function> function = fun_templ->GetFunction(); local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 172 BLInstrumentationDag(Function &F);
180 // with function calls
213 // Generate dot graph for the function
268 // Which function are we currently instrumenting
271 // The function prototype in the profiling runtime for incrementing a
276 // Instruments each function with path profiling. 'main' is instrumented
280 // Analyzes the function for Ball-Larus path profiling, and inserts code.
281 void runOnFunction(std::vector<Constant*> &ftInit, Function &F, Module &M);
360 cl::desc("Output the path profiling DAG for each function."));
503 // BLInstrumentationDag constructor initializes a DAG for the given Function
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 315 bool runOnFunction(Function &F);
342 bool iterateOnFunction(Function &F);
    [all...]
DeadStoreElimination.cpp 21 #include "llvm/Function.h"
51 virtual bool runOnFunction(Function &F) {
57 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
119 // function.
162 /// If isRemovable returns true, this function and getLocForRead completely
387 /// This function detects when it is unsafe to remove a dependent instruction
577 /// function end block. Ex:
586 // function.
596 // function.
597 for (Function::arg_iterator AI = BB.getParent()->arg_begin()
    [all...]
EarlyCSE.cpp 257 bool runOnFunction(Function &F);
456 bool EarlyCSE::runOnFunction(Function &F) {
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.cpp 149 if (entry && !(entry->attributes() & Function) && entry->propertyGetter() == jsDOMWindowClosed) {
154 if (entry && (entry->attributes() & Function) && entry->function() == jsDOMWindowPrototypeFunctionClose) {
159 // FIXME: We should have a message here that explains why the property access/function call was
166 // because we always allow access to some function, just different ones depending whether access
182 if (entry->attributes() & Function) {
183 if (entry->function() == jsDOMWindowPrototypeFunctionBlur) {
188 } else if (entry->function() == jsDOMWindowPrototypeFunctionClose) {
193 } else if (entry->function() == jsDOMWindowPrototypeFunctionFocus) {
198 } else if (entry->function() == jsDOMWindowPrototypeFunctionPostMessage)
    [all...]
  /bootable/recovery/edify/
expr.c 327 Expr* Build(Function fn, YYLTYPE loc, int count, ...) {
346 // the function table
353 void RegisterFunction(const char* name, Function fn) {
373 Function FindFunction(const char* name) {
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 39 import org.apache.xpath.functions.Function;
574 * Compile a function argument.
624 * Get the function table
1010 * Compile a built-in XPath function.
1014 * @return reference to {@link org.apache.xpath.functions.Function} instance.
1031 Function func = m_functionTable.getFunction(funcID);
1034 * It is a trick for function-available. Since the function table is an
1071 error(XPATHErrorResources.ER_FUNCTION_TOKEN_NOT_FOUND, null); //"function token not found.");
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 17 #include "llvm/Function.h"
56 const std::vector<const Function *> Personalities = MMI->getPersonalities();
189 MCSymbol *BeginLabel; // zero indicates the start of the function.
190 MCSymbol *EndLabel; // zero indicates the end of the function.
367 // function may throw, create a call-site entry with no landing pad for the
483 JITDwarfEmitter::EmitCommonEHFrame(const Function* Personality) const {
501 // function which size is PointerSize.
505 // the function pointer. The encoding is not relative because the current
506 // PC value may be bigger than the personality function pointer.
539 JITDwarfEmitter::EmitEHFrame(const Function* Personality
    [all...]
  /external/mesa3d/src/pixelflinger2/
texture.cpp 339 void (* function)(unsigned sample[4], const float tex_coord[4], const unsigned int tex_id); member in struct:TextureFunctionMapping
360 // void function(float[4], const float[4], unsigned)
368 llvm::Function * func = llvm::cast<llvm::Function>(
382 llvm::Function * function = mod->getFunction(textureFunctionMapping[i].name); local
383 if (function)
384 ee->updateGlobalMapping(function, (void *)textureFunctionMapping[i].function);
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 26 import SQLite.Function;
561 Function sinFunc = (Function) new SinFunc();
574 * Aggregation function not called.
601 assertEquals("null SQLite.Function not allowed",e.getMessage());
607 assertEquals("wrong number of arguments to function myaggfunc()",e.getMessage());
614 Function sinFunc = (Function) new SinFunc();
631 // function determines return type: test that Double type is returned.
1007 public void function(FunctionContext fc, String args[]) { method in class:OldDatabaseTest.SinFunc
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 15 let rec codegen_expr = function
39 | None -> raise (Error "unknown function referenced")
49 let codegen_proto = function
51 (* Make the function type: double(double,double) etc. *)
63 raise (Error "redefinition of function");
67 raise (Error "redefinition of function with different # args");
79 let codegen_func = function
80 | Ast.Function (proto, body) ->
91 (* Finish off the function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 15 let rec codegen_expr = function
39 | None -> raise (Error "unknown function referenced")
49 let codegen_proto = function
51 (* Make the function type: double(double,double) etc. *)
63 raise (Error "redefinition of function");
67 raise (Error "redefinition of function with different # args");
79 let codegen_func the_fpm = function
80 | Ast.Function (proto, body) ->
91 (* Finish off the function. *)
97 (* Optimize the function. *
    [all...]
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 25 #include "llvm/Function.h"
398 // The function label could have already been emitted if two symbols end up
444 // Print function name
450 const Function *F = MF->getFunction();
466 for (Function::const_arg_iterator i = F->arg_begin(), e = F->arg_end(),
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 90 virtual bool runOnFunction(Function &F);
92 bool DoOneIteration(Function &F, unsigned ItNum);
272 // this function.
  /external/v8/test/mjsunit/
arguments-apply.js 28 function ReturnArguments() {
32 function ReturnReceiver() {
37 function Global() {
49 function Local() {
62 function ShadowArguments() {
72 function NonObjectReceiver(receiver) {
83 function FunctionReceiver() {
90 function ShadowApply() {
91 function f() { return 42; }
92 f.apply = function() { return 87;
    [all...]
function-prototype.js 28 // Test that we can set function prototypes to non-object values. The
31 function TestNonObjectPrototype(value) {
32 function F() {};
45 function F() {};
62 function GetPrototypeOf(f) {
66 // Seed the GetPrototypeOf function to enable the fast case
73 function NoPrototypeYet() { }
77 function NonObjectPrototype() { }
81 function NoInitialMap() { }
88 // Check that getting the prototype of a non-function works. This mus
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-3184.js 28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
35 wrap : function (wrapper) {
37 var bmethod = (function(_method) {
38 return function () {
40 this.$proceed = function() { return _method.apply(this, arguments); };
43 var amethod = function () {
48 var value = function() { bmethod.call(this); retval = wrapper.apply(this, arguments); amethod.call(this); return retval; };
53 String.prototype.cap = function() {
58 function(each)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
OpenGLShims.h 221 #define LOOKUP_GL_FUNCTION(Function) WebCore::openGLFunctionTable()->Function
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.cpp 278 // Get the onRilRequest Function
282 v8::Handle<v8::Function> onCtrlServerCmdFunction =
283 v8::Handle<v8::Function>::Cast(onCtrlServerCmdFunctionValue);

Completed in 1490 milliseconds

<<21222324252627282930>>