HomeSort by relevance Sort by last modified time
    Searched defs:Tp (Results 1 - 9 of 9) sorted by null

  /external/libcxx/test/libcxx/containers/associative/
tree_key_value_traits.pass.cpp 20 typedef int Tp;
21 typedef std::__tree_key_value_types<Tp> Traits;
23 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
24 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
28 typedef std::pair<int, int> Tp;
29 typedef std::__tree_key_value_types<Tp> Traits;
30 static_assert((std::is_same<Traits::key_type, Tp>::value), "");
31 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
32 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
36 typedef std::pair<const int, int> Tp;
    [all...]
  /external/libcxx/test/libcxx/containers/unord/
key_value_traits.pass.cpp 20 typedef int Tp;
21 typedef std::__hash_key_value_types<Tp> Traits;
23 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
24 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
28 typedef std::pair<int, int> Tp;
29 typedef std::__hash_key_value_types<Tp> Traits;
30 static_assert((std::is_same<Traits::key_type, Tp>::value), "");
31 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
32 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
36 typedef std::pair<const int, int> Tp;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/associative/
tree_key_value_traits.pass.cpp 20 typedef int Tp;
21 typedef std::__tree_key_value_types<Tp> Traits;
23 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
24 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
28 typedef std::pair<int, int> Tp;
29 typedef std::__tree_key_value_types<Tp> Traits;
30 static_assert((std::is_same<Traits::key_type, Tp>::value), "");
31 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
32 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
36 typedef std::pair<const int, int> Tp;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/unord/
key_value_traits.pass.cpp 20 typedef int Tp;
21 typedef std::__hash_key_value_types<Tp> Traits;
23 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
24 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
28 typedef std::pair<int, int> Tp;
29 typedef std::__hash_key_value_types<Tp> Traits;
30 static_assert((std::is_same<Traits::key_type, Tp>::value), "");
31 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
32 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
36 typedef std::pair<const int, int> Tp;
    [all...]
  /external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
PR20855_tuple_ref_binding_diagnostics.fail.cpp 25 template <class Tp>
27 using RawTp = typename std::remove_cv< typename std::remove_reference<Tp>::type>::type;
29 operator Tp() const {
30 return static_cast<Tp>(value);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR20855_tuple_ref_binding_diagnostics.pass.cpp 29 template <class Tp>
31 using RawTp = typename std::remove_cv< typename std::remove_reference<Tp>::type>::type;
33 operator Tp() const {
34 return static_cast<Tp>(value);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 170 Constant *getRandomConstant(Type *Tp) {
171 if (Tp->isIntegerTy()) {
173 return ConstantInt::getAllOnesValue(Tp);
174 return ConstantInt::getNullValue(Tp);
175 } else if (Tp->isFloatingPointTy()) {
177 return ConstantFP::getAllOnesValue(Tp);
178 return ConstantFP::getNullValue(Tp);
180 return UndefValue::get(Tp);
184 Value *getRandomValue(Type *Tp) {
188 if (V->getType() == Tp)
    [all...]
  /packages/apps/LegacyCamera/jni/
mosaic_renderer_jni.cpp 434 double T[9], Tp[9], Ttemp[9];
440 // Tp = inv(K) * T * K
443 db_Multiply3x3_3x3(Tp, gKinv, Ttemp);
445 ConvertAffine3x3toGL4x4(g_dTranslationToFBOCenter, Tp);
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 564 milliseconds