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

1 2 3 4 5 6 7 8 91011>>

  /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/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,
  /external/testng/src/main/java/org/testng/mustache/
BaseChunk.java 5 protected Model m_model;
7 public BaseChunk(Model model) {
8 m_model = model;
  /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...]
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Model.cpp 2 * Model.cpp
8 #include "Model.h"
11 Model::Model() : list_points2d_in_(0), list_points2d_out_(0), list_points3d_in_(0)
16 Model::~Model()
21 void Model::add_correspondence(const cv::Point2f &point2d, const cv::Point3f &point3d)
28 void Model::add_outlier(const cv::Point2f &point2d)
33 void Model::add_descriptor(const cv::Mat &descriptor)
38 void Model::add_keypoint(const cv::KeyPoint &kp
    [all...]
  /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 };
39 enum Model {
58 inline CodeModel::Model unwrap(LLVMCodeModel Model) {
59 switch (Model) {
76 inline LLVMCodeModel wrap(CodeModel::Model Model)
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.h 29 Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL,
51 Reloc::Model RM, CodeModel::Model CM,
62 Reloc::Model RM, CodeModel::Model CM,
72 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.h 42 Reloc::Model RM, CodeModel::Model CM,
67 StringRef FS, const TargetOptions &Options, Reloc::Model RM,
68 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
78 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM, CodeModel::Model CM,
102 Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL
    [all...]
  /external/testng/src/main/java/org/testng/reporters/jq/
BasePanel.java 12 private Model m_model;
14 public BasePanel(Model model) {
15 m_model = model;
18 protected Model getModel() {
  /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/chromium-trace/catapult/dashboard/dashboard/models/
page_state.py 5 """Database model for page state data.
13 class PageState(ndb.Model):
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 32 Reloc::Model RM, CodeModel::Model CM,
59 Reloc::Model RM, CodeModel::Model CM,
70 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetMachine.h 41 StringRef CPU, TargetOptions Options, Reloc::Model RM,
42 CodeModel::Model CM, CodeGenOpt::Level OL);
67 StringRef CPU, TargetOptions Options, Reloc::Model RM,
68 CodeModel::Model CM, CodeGenOpt::Level OL);
81 StringRef CPU, TargetOptions Options, Reloc::Model RM,
82 CodeModel::Model CM, CodeGenOpt::Level OL);
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.h 43 StringRef FS, const TargetOptions &Options, Reloc::Model RM,
44 CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
78 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 39 Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OP,
73 Reloc::Model RM, CodeModel::Model CM,
82 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.h 38 StringRef FS, const TargetOptions &Options, Reloc::Model RM,
39 CodeModel::Model CM, CodeGenOpt::Level OL);
67 Reloc::Model RM, CodeModel::Model CM,
78 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/
TargetMachine.cpp 75 /// getRelocationModel - Returns the code generation relocation model. The
77 Reloc::Model TargetMachine::getRelocationModel() const {
83 /// getCodeModel - Returns the code model. The choices are small, kernel,
85 CodeModel::Model TargetMachine::getCodeModel() const {
91 /// Get the IR-specified TLS model for Var.
92 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
106 llvm_unreachable("invalid TLS model");
109 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
118 TLSModel::Model Model;
    [all...]
  /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/include/llvm/CodeGen/
ParallelCG.h 36 Reloc::Model RM = Reloc::Default,
37 CodeModel::Model CM = CodeModel::Default,
  /external/llvm/lib/Target/BPF/
BPFTargetMachine.h 27 StringRef FS, const TargetOptions &Options, Reloc::Model RM,
28 CodeModel::Model CM, CodeGenOpt::Level OL);
  /external/llvm/lib/Target/CppBackend/
CPPTargetMachine.h 27 StringRef FS, const TargetOptions &Options, Reloc::Model RM,
28 CodeModel::Model CM, CodeGenOpt::Level OL)
  /external/llvm/lib/Target/MSP430/
MSP430TargetMachine.h 33 Reloc::Model RM, CodeModel::Model CM,

Completed in 1624 milliseconds

1 2 3 4 5 6 7 8 91011>>