/external/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, "");
|
Android.mk | 55 test_name := utilities/meta/meta.unary/meta.unary.prop/is_final 56 test_src := is_final.pass.cpp
|
/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/chromium_org/ui/app_list/ |
speech_ui_model_observer.h | 30 // Invoked when a speech result arrives. |is_final| is true only when the 32 virtual void OnSpeechResult(const base::string16& result, bool is_final) {}
|
speech_ui_model.cc | 29 bool is_final) { 30 if (result_ == result && is_final_ == is_final) 34 is_final_ = is_final; 37 OnSpeechResult(result, is_final));
|
speech_ui_model.h | 24 void SetSpeechResult(const base::string16& result, bool is_final); 32 bool is_final() const { return is_final_; } function in class:app_list::SpeechUIModel
|
/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/chromium_org/chrome/browser/ui/app_list/ |
start_page_observer.h | 16 virtual void OnSpeechResult(const base::string16& query, bool is_final) = 0;
|
start_page_service.cc | 190 const base::string16& query, bool is_final) { 191 if (is_final) { 197 OnSpeechResult(query, is_final));
|
start_page_service.h | 57 void OnSpeechResult(const base::string16& query, bool is_final);
|
app_list_view_delegate.h | 120 bool is_final) OVERRIDE;
|
app_list_view_delegate.cc | 523 bool is_final) { 524 speech_ui_->SetSpeechResult(result, is_final); 525 if (is_final) {
|
/external/chromium_org/ui/app_list/views/ |
speech_view.h | 52 bool is_final) OVERRIDE;
|
speech_view.cc | 227 bool is_final) {
|
/external/chromium_org/chrome/browser/ui/webui/app_list/ |
start_page_handler.cc | 232 bool is_final = false; local 234 CHECK(args->GetBoolean(1, &is_final)); 237 query, is_final);
|
/external/chromium_org/net/websockets/ |
websocket_deflate_stream.cc | 338 bool is_final = !inflater_.CurrentOutputSize() && frame->header.final; local 346 inflated->header.final = is_final; 356 if (is_final)
|
websocket_deflate_stream_test.cc | 1162 bool is_final = (total_compressed_frames.size() >= 2); local [all...] |
/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";
|
/external/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/ext/ |
hash_map | 223 #if __has_feature(is_final) 259 #if __has_feature(is_final) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/ext/ |
hash_map | 223 #if __has_feature(is_final) 259 #if __has_feature(is_final) [all...] |
/external/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...] |
/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...] |
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/ |
type_traits | 94 template <class T> struct is_final; // C++14 767 // is_final 769 #if _LIBCPP_STD_VER > 11 && __has_feature(is_final) 771 is_final : public integral_constant<bool, __is_final(_Tp)> {}; [all...] |