/external/libcxx/test/re/re.regex/re.regex.construct/ |
H A D | awk_oct.pass.cpp | 22 using std::regex_constants::awk; 24 assert(std::regex_match("\4", std::regex{"\\4", awk})); 25 assert(std::regex_match("\41", std::regex{"\\41", awk})); 26 assert(std::regex_match("\141", std::regex{"\\141", awk})); 27 assert(std::regex_match("\1411", std::regex{"\\1411", awk}));
|
/external/libcxx/test/localization/locales/locale/locale.cons/ |
H A D | assign.pass.cpp | 22 void* operator new(std::size_t s) throw(std::bad_alloc) 25 return std::malloc(s); 31 std::free(p); 34 void check(const std::locale& loc) 36 assert(std::has_facet<std::collate<char> >(loc)); 37 assert(std::has_facet<std::collate<wchar_t> >(loc)); 39 assert(std [all...] |
H A D | copy.pass.cpp | 22 void* operator new(std::size_t s) throw(std::bad_alloc) 25 return std::malloc(s); 31 std::free(p); 34 void check(const std::locale& loc) 36 assert(std::has_facet<std::collate<char> >(loc)); 37 assert(std::has_facet<std::collate<wchar_t> >(loc)); 39 assert(std [all...] |
/external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/ |
H A D | common_type.pass.cpp | 18 static_assert((std::is_same<std::common_type<int>::type, int>::value), ""); 19 static_assert((std::is_same<std::common_type<char>::type, char>::value), ""); 21 static_assert((std::is_same<std::common_type_t<int>, int>::value), ""); 22 static_assert((std::is_same<std::common_type_t<char>, char>::value), ""); 25 static_assert((std::is_same<std [all...] |
/external/libcxx/test/localization/locales/locale/locale.statics/ |
H A D | global.pass.cpp | 19 void check(const std::locale& loc) 21 assert(std::has_facet<std::collate<char> >(loc)); 22 assert(std::has_facet<std::collate<wchar_t> >(loc)); 24 assert(std::has_facet<std::ctype<char> >(loc)); 25 assert(std::has_facet<std::ctype<wchar_t> >(loc)); 26 assert((std [all...] |
H A D | classic.pass.cpp | 17 void check(const std::locale& loc) 19 assert(std::has_facet<std::collate<char> >(loc)); 20 assert(std::has_facet<std::collate<wchar_t> >(loc)); 22 assert(std::has_facet<std::ctype<char> >(loc)); 23 assert(std::has_facet<std::ctype<wchar_t> >(loc)); 24 assert((std [all...] |
/external/libcxx/test/utilities/function.objects/refwrap/ |
H A D | unary.pass.cpp | 20 : public std::unary_function<int, char> 25 : public std::binary_function<char, int, double> 30 : public std::unary_function<int, int>, 31 public std::binary_function<char, int, double> 38 : public std::unary_function<int, int>, 39 public std::binary_function<char, int, double> 52 static_assert((std::is_base_of<std::unary_function<int, char>, 53 std::reference_wrapper<functor1> >::value), ""); 54 static_assert((!std [all...] |
/external/libcxx/test/localization/locale.categories/category.messages/locale.messages/ |
H A D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::messages<char> >::value), ""); 27 static_assert((std::is_base_of<std::messages_base, std::messages<char> >::value), ""); 28 static_assert((std::is_base_of<std::locale::facet, std::messages<wchar_t> >::value), ""); 29 static_assert((std [all...] |
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/ |
H A D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::money_get<char> >::value), ""); 27 static_assert((std::is_base_of<std::locale::facet, std::money_get<wchar_t> >::value), ""); 28 static_assert((std::is_same<std::money_get<char>::char_type, char>::value), ""); 29 static_assert((std::is_same<std [all...] |
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/ |
H A D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::money_put<char> >::value), ""); 27 static_assert((std::is_base_of<std::locale::facet, std::money_put<wchar_t> >::value), ""); 28 static_assert((std::is_same<std::money_put<char>::char_type, char>::value), ""); 29 static_assert((std::is_same<std [all...] |
/external/libcxx/test/localization/locale.categories/category.time/locale.time.get/ |
H A D | types.pass.cpp | 33 static_assert((std::is_base_of<std::locale::facet, std::time_get<char> >::value), ""); 34 static_assert((std::is_base_of<std::locale::facet, std::time_get<wchar_t> >::value), ""); 35 static_assert((std::is_base_of<std::time_base, std::time_get<char> >::value), ""); 36 static_assert((std [all...] |
/external/libcxx/test/utilities/memory/default.allocator/ |
H A D | allocator_types.pass.cpp | 36 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), ""); 37 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), ""); 38 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), ""); 39 static_assert((std::is_same<std [all...] |
/external/libcxx/test/language.support/support.types/ |
H A D | max_align_t.disabled.cpp | 20 static_assert(std::is_pod<std::max_align_t>::value, 21 "std::is_pod<std::max_align_t>::value"); 22 static_assert((std::alignment_of<std::max_align_t>::value >= 23 std::alignment_of<long long>::value), 24 "std::alignment_of<std::max_align_t>::value >= " 25 "std [all...] |
/external/libcxx/test/containers/associative/map/ |
H A D | types.pass.cpp | 40 static_assert((std::is_same<std::map<int, double>::key_type, int>::value), ""); 41 static_assert((std::is_same<std::map<int, double>::mapped_type, double>::value), ""); 42 static_assert((std::is_same<std::map<int, double>::value_type, std::pair<const int, double> >::value), ""); 43 static_assert((std::is_same<std::map<int, double>::key_compare, std [all...] |
/external/libcxx/test/containers/associative/multimap/ |
H A D | types.pass.cpp | 40 static_assert((std::is_same<std::multimap<int, double>::key_type, int>::value), ""); 41 static_assert((std::is_same<std::multimap<int, double>::mapped_type, double>::value), ""); 42 static_assert((std::is_same<std::multimap<int, double>::value_type, std::pair<const int, double> >::value), ""); 43 static_assert((std::is_same<std::multimap<int, double>::key_compare, std [all...] |
/external/oprofile/libpp/ |
H A D | profile_spec.h | 41 static profile_spec create(std::list<std::string> const & args, 42 std::vector<std::string> const & image_path, 43 std::string const & root_path); 51 std::list<std::string> 65 std::string get_archive_path() const; 74 void parse(std::string const & tag_value); 82 void set_image_or_lib_name(std [all...] |
/external/chromium_org/extensions/common/ |
H A D | error_utils.h | 17 static std::string FormatErrorMessage(const std::string& format, 18 const std::string& s1); 20 static std::string FormatErrorMessage(const std::string& format, 21 const std::string& s1, 22 const std::string& s2); 24 static std::string FormatErrorMessage(const std::string& format, 25 const std [all...] |
/external/chromium_org/ppapi/tests/ |
H A D | test_paint_aggregator.h | 16 virtual void RunTests(const std::string& filter); 19 std::string TestInitialState(); 20 std::string TestSingleInvalidation(); 21 std::string TestDoubleDisjointInvalidation(); 22 std::string TestSingleScroll(); 23 std::string TestDoubleOverlappingScroll(); 24 std::string TestNegatingScroll(); 25 std::string TestDiagonalScroll(); 26 std::string TestContainedPaintAfterScroll(); 27 std [all...] |
/external/chromium_org/tools/clang/empty_string/tests/ |
H A D | test-expected.cc | 9 // Tests for std::string declarations. 11 std::string a, b("abc"), c; 14 // Tests for std::string allocated with new. 16 std::string* a = new std::string, *b = new std::string("abc"), 17 *c = new std::string, *d = new std::string(); 20 // Tests for std::string construction in initializer lists. 28 std [all...] |
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/ |
H A D | tuple_size.pass.cpp | 21 template <class T, std::size_t N> 24 static_assert((std::is_base_of<std::integral_constant<std::size_t, N>, 25 std::tuple_size<T> >::value), ""); 26 static_assert((std::is_base_of<std::integral_constant<std::size_t, N>, 27 std::tuple_size<const T> >::value), ""); 28 static_assert((std [all...] |
/external/libcxx/test/re/re.const/re.err/ |
H A D | error_type.pass.cpp | 40 assert(std::regex_constants::error_collate != 0); 41 assert(std::regex_constants::error_ctype != 0); 42 assert(std::regex_constants::error_escape != 0); 43 assert(std::regex_constants::error_backref != 0); 44 assert(std::regex_constants::error_brack != 0); 45 assert(std::regex_constants::error_paren != 0); 46 assert(std::regex_constants::error_brace != 0); 47 assert(std::regex_constants::error_badbrace != 0); 48 assert(std::regex_constants::error_range != 0); 49 assert(std [all...] |
/external/chromium_org/gpu/config/ |
H A D | gpu_info_collector_ozone.cc | 10 std::string CollectDriverVersionNVidia() { 12 return std::string();
|
/external/chromium_org/net/tools/dump_cache/ |
H A D | url_utilities.h | 16 static std::string GetUrlHost(const std::string& url); 21 static std::string GetUrlHostPath(const std::string& url); 26 static std::string GetUrlPath(const std::string& url); 30 static std::string Unescape(const std::string& escaped_url);
|
/external/chromium_org/sync/engine/net/ |
H A D | url_translator.h | 16 std::string CgiEscapeString(const char* src); 17 std::string CgiEscapeString(const std::string& src); 20 std::string MakeSyncServerPath(const std::string& path, 21 const std::string& query_string); 23 std::string MakeSyncQueryString(const std::string& client_id);
|
/external/chromium_org/tools/gyp/test/library_dirs/subdir/ |
H A D | hello.cc | 9 std::cout << "Hello " << my_foo(99) << std::endl;
|