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

1 2 3 4 5 6 7 8 910

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/detail/
general.hpp 27 template <class Model>
30 static void failed() { ((Model*)0)->~Model(); }
35 template <class Model>
36 struct requirement<failed ************ Model::************>
38 static void failed() { ((Model*)0)->~Model(); }
43 template <class Model>
46 static void failed() { ((Model*)0)->constraints(); }
49 template <class Model>
    [all...]
has_constraints.hpp 21 template <class Model, void (Model::*)()>
31 template <class Model>
32 inline yes has_constraints_(Model*, wrap_constraints<Model,&Model::constraints>* = 0);
39 template <class Model>
44 , value = sizeof( detail::has_constraints_((Model*)0) ) == sizeof(detail::yes) );
  /external/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
23 // Relocation model types.
25 enum Model { Default, Static, PIC_, DynamicNoPIC };
28 // Code model types.
30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
35 enum Model {
54 inline CodeModel::Model unwrap(LLVMCodeModel Model) {
55 switch (Model) {
72 inline LLVMCodeModel wrap(CodeModel::Model Model)
    [all...]
  /external/llvm/include/llvm/MC/
MCCodeGenInfo.h 11 // asm parsing, and asm printing. For example, relocation model.
23 /// RelocationModel - Relocation model: static, pic, etc.
25 Reloc::Model RelocationModel;
27 /// CMModel - Code model.
29 CodeModel::Model CMModel;
36 void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
37 CodeModel::Model CM = CodeModel::Default,
40 Reloc::Model getRelocationModel() const { return RelocationModel; }
42 CodeModel::Model getCodeModel() const { return CMModel; }
  /external/llvm/lib/MC/
MCCodeGenInfo.cpp 11 // asm parsing, and asm printing. For example, relocation model.
18 void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM,
  /packages/apps/Mms/src/com/android/mms/model/
IModelChangedObserver.java 18 package com.android.mms.model;
21 void onModelChanged(Model model, boolean dataChanged);
  /external/clang/test/SemaTemplate/
instantiate-field.cpp 39 template <class Model> struct requirement<failed *Model::*>
43 ((Model*)0)->~Model(); // expected-note{{in instantiation of}}
47 template <class Model> struct requirement_<void(*)(Model)> : requirement<failed *Model::*>
53 template <class Model> struct usage_requirements
56 {((Model*)0)->~Model(); } // expected-note{{in instantiation of}
    [all...]
instantiate-function-params.cpp 8 template <class Model, void (Model::*)()> struct wrap_constraints { };
9 template <class Model>
10 inline char has_constraints_(Model* , // expected-note 3{{candidate template ignored}}
11 wrap_constraints<Model,&Model::constraints>* = 0); // expected-note 2{{in instantiation}}
13 template <class Model> struct not_satisfied {
14 static const bool value = sizeof( has_constraints_((Model*)0) == 1); // expected-error 3{{no matching function}} \
20 template <class Model> struct requirement_<void(*)(Model)> : if_< not_satisfied<Model> >::type { // expected-note 5 (…)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
Presenter.java 22 import com.android.mms.model.IModelChangedObserver;
23 import com.android.mms.model.Model;
32 protected Model mModel;
34 public Presenter(Context context, ViewInterface view, Model model) {
38 mModel = model;
50 public Model getModel() {
54 public void setModel(Model model) {
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/
usage.hpp 15 # define BOOST_CONCEPT_USAGE(model) ~model()
19 template <class Model>
22 ~usage_requirements() { ((Model*)0)->~Model(); }
27 # define BOOST_CONCEPT_USAGE(model) \
28 model(); /* at least 2.96 and 3.4.3 both need this :( */ \
29 BOOST_CONCEPT_ASSERT((boost::concepts::usage_requirements<model>)); \
30 ~model()
34 # define BOOST_CONCEPT_USAGE(model) \
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
70 Reloc::Model RM, CodeModel::Model CM,
81 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.h 28 Reloc::Model RM, CodeModel::Model CM,
65 Reloc::Model RM, CodeModel::Model CM,
77 Reloc::Model RM, CodeModel::Model CM,
SparcTargetMachine.cpp 26 /// SparcTargetMachine ctor - Create an ILP32 architecture model
31 Reloc::Model RM, CodeModel::Model CM,
85 Reloc::Model RM,
86 CodeModel::Model CM,
97 Reloc::Model RM,
98 CodeModel::Model CM,
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
74 const TargetOptions &Options, Reloc::Model RM,
75 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
85 Reloc::Model RM, CodeModel::Model CM,
95 const TargetOptions &Options, Reloc::Model RM,
96 CodeModel::Model CM, CodeGenOpt::Level OL);
107 const TargetOptions &Options, Reloc::Model RM,
108 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle)
    [all...]
ARMTargetMachine.cpp 46 /// TargetMachine ctor - Create an ARM architecture model.
51 Reloc::Model RM, CodeModel::Model CM,
75 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM, CodeModel::Model CM,
98 Reloc::Model RM, CodeModel::Model CM,
107 Reloc::Model RM, CodeModel::Model CM
    [all...]
  /external/llvm/lib/Target/
TargetMachine.cpp 74 /// getRelocationModel - Returns the code generation relocation model. The
76 Reloc::Model TargetMachine::getRelocationModel() const {
82 /// getCodeModel - Returns the code model. The choices are small, kernel,
84 CodeModel::Model TargetMachine::getCodeModel() const {
90 /// Get the IR-specified TLS model for Var.
91 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
105 llvm_unreachable("invalid TLS model");
108 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
117 TLSModel::Model Model;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.h 32 const TargetOptions &Options, Reloc::Model RM,
33 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
79 Reloc::Model RM, CodeModel::Model CM,
90 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 35 const TargetOptions &Options, Reloc::Model RM,
36 CodeModel::Model CM, CodeGenOpt::Level OP, bool is64bit);
85 Reloc::Model RM, CodeModel::Model CM,
94 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.h 32 Reloc::Model RM, CodeModel::Model CM,
76 Reloc::Model RM, CodeModel::Model CM,
87 Reloc::Model RM, CodeModel::Model CM,
  /frameworks/compile/libbcc/include/bcc/Support/
CompilerConfig.h 47 llvm::CodeModel::Model mCodeModel;
51 llvm::Reloc::Model mRelocModel;
86 inline llvm::CodeModel::Model getCodeModel() const
88 inline void setCodeModel(llvm::CodeModel::Model pCodeMode)
96 inline llvm::Reloc::Model getRelocationModel() const
98 inline void setRelocationModel(llvm::Reloc::Model pRelocModel)
  /external/llvm/lib/Target/CppBackend/
CPPTargetMachine.h 27 Reloc::Model RM, CodeModel::Model CM,
  /external/chromium-trace/
init.js 9 var m = new tracing.Model();
14 timelineViewEl.model = m;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUTargetMachine.h 44 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 31 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/MSP430/
MSP430TargetMachine.cpp 30 Reloc::Model RM, CodeModel::Model CM,

Completed in 1402 milliseconds

1 2 3 4 5 6 7 8 910