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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
typo.cpp 2 // In header: expected-note{{'boost::function' declared here}}
10 Function<int(int)> f; // expected-error{{no template named 'Function'; did you mean 'boost::function'?}}
  /external/llvm/include/llvm/
AutoUpgrade.h 20 class Function;
23 /// This is a more granular function that simply checks an intrinsic function
25 /// null in NewFn if the all calls to the original intrinsic function
26 /// should be transformed to non-function-call instructions.
27 bool UpgradeIntrinsicFunction(Function *F, Function *&NewFn);
30 /// intrinsic function with a call to the specified new function.
31 void UpgradeIntrinsicCall(CallInst *CI, Function *NewFn)
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
ModuleUtils.h 20 class Function;
23 /// This wraps the function in the appropriate structure and stores it along
26 void appendToGlobalCtors(Module &M, Function *F, int Priority);
29 void appendToGlobalDtors(Module &M, Function *F, int Priority);
BypassSlowDivision.h 22 #include "llvm/IR/Function.h"
28 bool bypassSlowDivision(Function &F,
29 Function::iterator &I,
BlackList.h 35 class Function;
44 // Returns whether either this function or it's source file are blacklisted.
45 bool isIn(const Function &F) const;
  /external/llvm/include/llvm/Analysis/
Lint.h 27 class Function;
31 /// Check a module or function.
42 // lintFunction - Check a function.
44 const Function &F ///< The function to be checked
Verifier.h 10 // This file defines the function verifier interface, that can be used for some
30 class Function;
46 /// Check a module or function for validity. When the pass is used, the
55 /// If there are no errors, the function returns false. If an error is found,
66 // verifyFunction - Check a function for errors, useful for use when debugging a
69 const Function &F, ///< The function to be verified
  /external/valgrind/main/none/tests/ppc32/
testVMX.stdout.exp 3 Function vec_abs [type char] ===> OK
4 Function vec_abs [type short] ===> OK
5 Function vec_abs [type integer] ===> OK
8 Function vec_abss [type char] ===> OK
9 Function vec_abss [type short] ===> OK
10 Function vec_abss [type integer] ===> OK
13 Function vec_add [type char] ===> OK
14 Function vec_add [type unsigned char] ===> OK
15 Function vec_add [type short] ===> OK
16 Function vec_add [type unsigned short] ===> O
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.h 2051 inline ::android::gltrace::GLMessage_Function GLMessage::function() const { function in class:android::gltrace::GLMessage
    [all...]
  /external/llvm/include/llvm/IR/
Argument.h 29 /// This class represents an incoming formal argument to a Function. A formal
32 /// for a specific function. When used in the body of said function, the
34 /// function was called with.
37 Function *Parent;
39 friend class SymbolTableListTraits<Argument, Function>;
40 void setParent(Function *parent);
47 explicit Argument(Type *Ty, const Twine &Name = "", Function *F = 0);
49 inline const Function *getParent() const { return Parent; }
50 inline Function *getParent() { return Parent;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
EscapingFunction.java 19 public abstract class EscapingFunction implements Function {
NonEscapingFunction.java 19 public abstract class NonEscapingFunction implements Function {
Function.java 24 public interface Function {
27 * Execute a function. Should always return a result.
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.h 22 class Function;
27 void InsertProfilingInitCall(Function *MainFn, const char *FnName,
33 void InsertProfilingShutdownCall(Function *Callee, Module *Mod);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-118849.js 41 * http://developer.netscape.com:80/docs/manuals/js/core/jsref/function.htm
42 * The Function constructor:
43 * Function ([arg1[, arg2[, ... argN]],] functionBody)
47 * (Optional) Names to be used by the function as formal argument names.
51 * A string containing JS statements comprising the function definition.
56 var summary = 'Should not crash if we provide Function() with bad arguments'
63 var cnFAIL_1 = 'LEGAL call to Function() caused an ERROR!!!';
64 var cnFAIL_2 = 'ILLEGAL call to Function() FAILED to cause an error';
76 Function(cnSTRING);
77 Function(cnNUMBER); // cnNUMBER is a valid functionBody
    [all...]
  /external/llvm/include/llvm/Target/
TargetIntrinsicInfo.h 22 class Function;
50 /// Return the target intrinsic ID of a function, or 0.
51 virtual unsigned getIntrinsicID(Function *F) const;
56 /// Create or insert an LLVM Function declaration for an intrinsic,
59 virtual Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.rel/
is_convertible.pass.cpp 16 typedef void Function();
31 static_assert((!std::is_convertible<void, Function>::value), "");
32 static_assert((!std::is_convertible<const void, Function>::value), "");
34 static_assert((!std::is_convertible<void, Function&>::value), "");
35 static_assert((!std::is_convertible<const void, Function&>::value), "");
37 static_assert((!std::is_convertible<void, Function*>::value), "");
38 static_assert((!std::is_convertible<void, Function* const>::value), "");
39 static_assert((!std::is_convertible<const void, Function*>::value), "");
40 static_assert((!std::is_convertible<const void, Function*const >::value), "");
68 static_assert((!std::is_convertible<Function, void>::value), "")
    [all...]
  /external/llvm/include/llvm/Assembly/
AssemblyAnnotationWriter.h 22 class Function;
34 /// the start of a function.
35 virtual void emitFunctionAnnot(const Function *,
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.h 24 class Function;
42 virtual bool runOnFunction(Function &function);
NVPTXAllocaHoisting.cpp 16 #include "llvm/IR/Function.h"
21 bool NVPTXAllocaHoisting::runOnFunction(Function &function) {
23 Function::iterator I = function.begin();
26 for (Function::iterator E = function.end(); I != E; ++I) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/NativeObjects/
15-2.js 26 Description: Every built-in function and every built-in constructor
27 has the Function prototype object, which is the value of
28 the expression Function.prototype as the value of its
29 internal [[Prototype]] property, except the Function
33 constructors should be the Function.prototype object.
48 function getTestCases() {
52 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ );
53 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
54 array[item++] = new TestCase( SECTION, "String.__proto__", Function.prototype, String.__proto__ );
55 array[item++] = new TestCase( SECTION, "Boolean.__proto__", Function.prototype, Boolean.__proto__ )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.10-1.js 65 function test() {
78 function getTestCases() {
134 function WithObject( value ) {
142 this.parseInt = new Function( "return this.value" );
145 this.unescape = new Function( "return this.value" );
146 this.escape = new Function( "return this.value" );
147 this.eval = new Function( "return this.value" );
148 this.parseFloat = new Function( "return this.value" );
149 this.isNaN = new Function( "return this.value" );
150 this.isFinite = new Function( "return this.value" )
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Function.java 7 * which is used to set the function result or error code.
12 * class SinFunc implements SQLite.Function {
13 * public void function(SQLite.FunctionContext fc, String args[]) {
31 public interface Function {
34 * Callback for regular function.
36 * @param fc function's context for reporting result
40 public void function(FunctionContext fc, String args[]); method in interface:Function
43 * Callback for one step in aggregate function.
45 * @param fc function's context for reporting result
52 * Callback for final step in aggregate function
    [all...]
  /external/llvm/lib/Target/
TargetIntrinsicInfo.cpp 16 #include "llvm/IR/Function.h"
25 unsigned TargetIntrinsicInfo::getIntrinsicID(Function *F) const {
  /external/valgrind/main/none/tests/
procfs-non-linux.stderr.exp 8 readlinkat: Function not implemented
9 readlinkat: Function not implemented

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>