/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
is_final.pass.cpp | 12 // is_final 25 static_assert( std::is_final<T>::value, ""); 26 static_assert( std::is_final<const T>::value, ""); 27 static_assert( std::is_final<volatile T>::value, ""); 28 static_assert( std::is_final<const volatile T>::value, ""); 34 static_assert(!std::is_final<T>::value, ""); 35 static_assert(!std::is_final<const T>::value, ""); 36 static_assert(!std::is_final<volatile T>::value, ""); 37 static_assert(!std::is_final<const volatile T>::value, "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/ |
is_final.pass.cpp | 12 // is_final 25 static_assert( std::is_final<T>::value, ""); 26 static_assert( std::is_final<const T>::value, ""); 27 static_assert( std::is_final<volatile T>::value, ""); 28 static_assert( std::is_final<const volatile T>::value, ""); 34 static_assert(!std::is_final<T>::value, ""); 35 static_assert(!std::is_final<const T>::value, ""); 36 static_assert(!std::is_final<volatile T>::value, ""); 37 static_assert(!std::is_final<const volatile T>::value, "");
|
/external/clang/test/Lexer/ |
has_feature_type_traits.cpp | 78 #if __has_feature(is_final) 79 int is_final(); 81 // CHECK: int is_final();
|
/external/llvm/include/llvm/Support/ |
type_traits.h | 100 #define LLVM_IS_FINAL(Ty) std::is_final<Ty>() 101 #elif __has_feature(is_final) || LLVM_GNUC_PREREQ(4, 7, 0)
|
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_log.c | 170 static const char* log_final_interm_string(int is_final) 172 return is_final ? "final" : "intermediate";
|
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_log.c | 170 static const char* log_final_interm_string(int is_final) 172 return is_final ? "final" : "intermediate";
|
/hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_log.c | 170 static const char* log_final_interm_string(int is_final) 172 return is_final ? "final" : "intermediate";
|
/hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_log.c | 170 static const char* log_final_interm_string(int is_final) 172 return is_final ? "final" : "intermediate";
|
/hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/ |
loc_api_log.c | 170 static const char* log_final_interm_string(int is_final) 172 return is_final ? "final" : "intermediate";
|
/external/skia/include/private/ |
SkUniquePtr.h | 71 // C++14 adds '&& !std::is_final<deleter_type>::value' to the bool condition. 247 // C++14 adds '&& !std::is_final<deleter_type>::value' to the bool condition.
|
/external/libcxx/include/experimental/ |
type_traits | 92 = is_final<T>::value; 295 = is_final<_Tp>::value;
|
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/ |
meta.unary.prop.pass.cpp | 154 static_assert(ex::is_final_v<T> == std::is_final<T>::value, ""); 159 static_assert(ex::is_final_v<T> == std::is_final<T>::value, "");
|
/toolchain/binutils/binutils-2.25/gold/ |
i386.cc | 739 optimize_tls_reloc(bool is_final, int r_type); 2401 const bool is_final = gsym->final_value_is_known(); local 2967 const bool is_final = (gsym == NULL local [all...] |
sparc.cc | 2896 const bool is_final = gsym->final_value_is_known(); local 3623 const bool is_final = local [all...] |
tilegx.cc | 541 optimize_tls_reloc(bool is_final, int r_type); 3992 const bool is_final = gsym->final_value_is_known(); local 4553 const bool is_final = (gsym == NULL local [all...] |
x86_64.cc | 877 optimize_tls_reloc(bool is_final, int r_type); 2994 const bool is_final = (gsym->final_value_is_known() || local 3575 const bool is_final = (gsym == NULL local [all...] |
aarch64.cc | 7128 const bool is_final = (gsym == NULL local [all...] |
/external/libcxx/include/ |
__config | 324 #if __has_feature(is_final)
|
type_traits | 99 template <class T> struct is_final; // C++14 807 // is_final 819 is_final : public integral_constant<bool, __is_final(_Tp)> {}; [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ext/ |
hash_map | 223 #if __has_feature(is_final) 259 #if __has_feature(is_final) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ext/ |
hash_map | 223 #if __has_feature(is_final) 259 #if __has_feature(is_final) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | 94 template <class T> struct is_final; // C++14 785 // is_final 787 #if _LIBCPP_STD_VER > 11 && __has_feature(is_final) 789 is_final : public integral_constant<bool, __is_final(_Tp)> {}; [all...] |
unordered_map | 361 #if __has_feature(is_final) 412 #if __has_feature(is_final) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | 94 template <class T> struct is_final; // C++14 785 // is_final 787 #if _LIBCPP_STD_VER > 11 && __has_feature(is_final) 789 is_final : public integral_constant<bool, __is_final(_Tp)> {}; [all...] |
unordered_map | 361 #if __has_feature(is_final) 412 #if __has_feature(is_final) [all...] |