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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
typo.cpp 12 Function<int(int)> f;
13 // expected-error@-1{{no template named 'Function'; did you mean 'boost::function'?}}
14 // expected-note@Inputs/typo.hpp:2{{'boost::function' declared here}}
  /ndk/sources/cxx-stl/gabi++/tests/
catch_function_01.cpp 18 typedef void Function();
24 catch (Function& b) // can't catch void (*)()
catch_function_02.cpp 18 typedef void Function();
24 catch (Function b) // equivalent to void (*)()
  /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/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/llvm/include/llvm/Transforms/Utils/
BypassSlowDivision.h 22 #include "llvm/IR/Function.h"
28 bool bypassSlowDivision(Function &F,
29 Function::iterator &I,
ModuleUtils.h 20 class Function;
26 /// This wraps the function in the appropriate structure and stores it along
29 void appendToGlobalCtors(Module &M, Function *F, int Priority);
32 void appendToGlobalDtors(Module &M, Function *F, int Priority);
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/
is_convertible.pass.cpp 34 typedef void Function();
45 test_is_not_convertible<void,Function> ();
46 test_is_not_convertible<void,Function&> ();
47 test_is_not_convertible<void,Function*> ();
54 // Function
55 test_is_not_convertible<Function, void> ();
56 test_is_not_convertible<Function, Function> ();
57 test_is_convertible<Function, Function&> ()
    [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/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.h 51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> enteredDocument, v8::Handle<v8::Function> leftDocument, v8::Handle<v8::Function> attributeChanged);
58 V8CustomElementLifecycleCallbacks(ScriptExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> enteredDocument, v8::Handle<v8::Function> leftDocument, v8::Handle<v8::Function> attributeChanged);
65 void call(const ScopedPersistent<v8::Function>& weakCallback, Element*);
72 ScopedPersistent<v8::Function> m_created
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
MainThread.cpp 43 void initializeMainThread(void (*function)(MainThreadFunction, void*))
49 callOnMainThreadFunction = function;
54 void callOnMainThread(MainThreadFunction* function, void* context)
56 (*callOnMainThreadFunction)(function, context);
61 Function<void()>* function = static_cast<Function<void()>*>(context); local
62 (*function)();
63 delete function;
66 void callOnMainThread(const Function<void()>& function
    [all...]
MainThread.h 47 template<typename> class Function;
48 WTF_EXPORT void callOnMainThread(const Function<void ()>&);
  /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 {
  /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);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Escaper.java 91 private final Function<String, String> asFunction =
92 new Function<String, String>() {
99 * Returns a {@link Function} that invokes {@link #escape(String)} on this escaper.
101 public Function<String, String> asFunction() {
  /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,
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Escaper.java 92 private final Function<String, String> asFunction =
93 new Function<String, String>() {
100 * Returns a {@link Function} that invokes {@link #escape(String)} on this escaper.
102 public Function<String, String> asFunction() {
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
Functional.cpp 41 Function<int ()> emptyFunction;
44 Function<int ()> returnFortyTwoFunction = bind(returnFortyTwo);
61 Function<int ()> multiplyFourByTwoFunction = bind(multiplyByTwo, 4);
64 Function<double ()> multiplyByOneAndAHalfFunction = bind(multiplyByOneAndAHalf, 3);
80 Function<int ()> multiplyFourByTwoFunction = bind(multiply, 4, 2);
83 Function<int ()> subtractTwoFromFourFunction = bind(subtract, 4, 2);
104 Function<int ()> function1 = bind(&A::f, &a);
107 Function<int ()> function2 = bind(&A::addF, &a, 15);
142 Function<int ()> multiplyFiveByTwoFunction = bind(multiplyNumberByTwo, five);
145 Function<int ()> multiplyFourByTwoFunction = bind(multiplyNumberByTwo, Number::create(4))
    [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) {

Completed in 347 milliseconds

1 2 3 4 5 6 7 8 91011>>