Searched refs:std (Results 426 - 450 of 33291) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Daddress_ui.h28 const std::vector<std::string>& GetRegionCodes();
40 std::vector<AddressUiComponent> BuildComponents(
41 const std::string& region_code,
43 const std::string& ui_language_tag,
44 std::string* best_address_language_tag);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dpubsubstateclient.cc32 std::string PublishedNickKeySerializer::GetKey(
33 const std::string& publisher_nick, const std::string& published_nick) {
37 std::string PublisherAndPublishedNicksKeySerializer::GetKey(
38 const std::string& publisher_nick, const std::string& published_nick) {
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dtest_xml_utils.h24 typedef std::map<std::string, std::string> AttributeMap;
25 typedef std::vector<const TiXmlNode*> TiXmlNodeVector;
28 const std::string& name);
30 const std::string& name);
/external/chromium_org/tools/gn/
H A Dconfig_values.h22 const std::vector<std::string>& name() const { return name##_; } \
23 std::vector<std::string>& name() { return name##_; }
25 const std::vector<SourceDir>& name() const { return name##_; } \
26 std::vector<SourceDir>& name() { return name##_; }
43 std::vector<std::string> cflags_;
44 std::vector<std
[all...]
/external/chromium_org/ui/base/accelerators/
H A Dmenu_label_accelerator_util_linux.h16 UI_BASE_EXPORT std::string ConvertAcceleratorsFromWindowsStyle(
17 const std::string& label);
20 UI_BASE_EXPORT std::string RemoveWindowsStyleAccelerators(
21 const std::string& label);
26 UI_BASE_EXPORT std::string EscapeWindowsStyleAccelerators(
27 const std::string& label);
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
H A Dp2.cpp16 namespace std { namespace
22 void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}}
23 void* operator new[](std::size_t) throw(std::bad_alloc);
27 void* operator new(std::size_t); // expected-warning{{'operator new' is missing exception specification 'throw(std::bad_alloc)'}}
/external/eigen/doc/snippets/
H A DTutorial_AdvancedInitialization_Join.cpp3 std::cout << "vec1 = " << vec1 << std::endl;
7 std::cout << "vec2 = " << vec2 << std::endl;
11 std::cout << "joined = " << joined << std::endl;
H A DTutorial_AdvancedInitialization_Zero.cpp0 std::cout << "A fixed-size array:\n";
3 std::cout << a1 << "\n\n";
6 std::cout << "A one-dimensional dynamic-size array:\n";
8 std::cout << a2 << "\n\n";
11 std::cout << "A two-dimensional dynamic-size array:\n";
13 std::cout << a3 << "\n";
/external/eigen/unsupported/doc/examples/
H A DMatrixFunction.cpp6 std::complex<double> expfn(std::complex<double> x, int)
8 return std::exp(x);
13 const double pi = std::acos(-1.0);
20 std::cout << "The matrix A is:\n" << A << "\n\n";
21 std::cout << "The matrix exponential of A is:\n"
/external/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/
H A Dpartition_point.pass.cpp30 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
31 forward_iterator<const int*>(std::end(ia)),
36 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
37 forward_iterator<const int*>(std::end(ia)),
42 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
43 forward_iterator<const int*>(std::end(ia)),
48 assert(std
[all...]
/external/libcxx/test/containers/associative/map/
H A Dcompare.pass.cpp29 std::map<Key, int>::iterator it = std::map<Key, int>().find(Key(0));
30 std::pair<std::map<Key, int>::iterator, bool> result =
31 std::map<Key, int>().insert(std::make_pair(Key(0), 0));
/external/libcxx/test/depr/depr.function.objects/depr.base/
H A Dbinary_function.pass.cpp25 static_assert((std::is_same<std::binary_function<int, unsigned, char>::first_argument_type, int>::value), "");
26 static_assert((std::is_same<std::binary_function<int, unsigned, char>::second_argument_type, unsigned>::value), "");
27 static_assert((std::is_same<std::binary_function<int, unsigned, char>::result_type, char>::value), "");
/external/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
H A Deq.pass.cpp21 const std::error_category& e_cat1 = std::generic_category();
22 const std::error_category& e_cat2 = std::generic_category();
23 const std::error_category& e_cat3 = std::system_category();
H A Dlt.pass.cpp21 const std::error_category& e_cat1 = std::generic_category();
22 const std::error_category& e_cat2 = std::generic_category();
23 const std::error_category& e_cat3 = std::system_category();
H A Dneq.pass.cpp21 const std::error_category& e_cat1 = std::generic_category();
22 const std::error_category& e_cat2 = std::generic_category();
23 const std::error_category& e_cat3 = std::system_category();
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
H A Dint_error_category.pass.cpp22 std::error_code ec(6, std::system_category());
24 assert(ec.category() == std::system_category());
27 std::error_code ec(8, std::generic_category());
29 assert(ec.category() == std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
H A Ddefault_error_condition.pass.cpp22 const std::error_code ec(6, std::generic_category());
23 std::error_condition e_cond = ec.default_error_condition();
27 const std::error_code ec(6, std::system_category());
28 std::error_condition e_cond = ec.default_error_condition();
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
H A Dint_error_category.pass.cpp22 std::error_condition ec(6, std::system_category());
24 assert(ec.category() == std::system_category());
27 std::error_condition ec(8, std::generic_category());
29 assert(ec.category() == std::generic_category());
/external/libcxx/test/input.output/iostream.objects/wide.stream.objects/
H A Dwcin.pass.cpp20 std::wcout << L"Hello World!\n";
22 std::wcout << L"Enter a number: ";
23 std::wcin >> i;
24 std::wcout << L"The number is : " << i << L'\n';
26 assert(std::wcin.tie() == &std::wcout);
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_seekdir/
H A Dseekdir.pass.cpp23 assert(std::ios_base::beg != std::ios_base::cur);
24 assert(std::ios_base::beg != std::ios_base::end);
25 assert(std::ios_base::cur != std::ios_base::end);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
H A Dnoboolalpha.pass.cpp20 struct testbuf : public std::streambuf {};
25 std::ios ios(&sb);
26 std::boolalpha(ios);
27 std::ios_base& r = std::noboolalpha(ios);
29 assert(!(ios.flags() & std::ios::boolalpha));
H A Dnoshowbase.pass.cpp20 struct testbuf : public std::streambuf {};
25 std::ios ios(&sb);
26 std::showbase(ios);
27 std::ios_base& r = std::noshowbase(ios);
29 assert(!(ios.flags() & std::ios::showbase));
H A Dnoshowpoint.pass.cpp20 struct testbuf : public std::streambuf {};
25 std::ios ios(&sb);
26 std::showpoint(ios);
27 std::ios_base& r = std::noshowpoint(ios);
29 assert(!(ios.flags() & std::ios::showpoint));
H A Dnoshowpos.pass.cpp20 struct testbuf : public std::streambuf {};
25 std::ios ios(&sb);
26 std::showpos(ios);
27 std::ios_base& r = std::noshowpos(ios);
29 assert(!(ios.flags() & std::ios::showpos));
H A Dnoskipws.pass.cpp20 struct testbuf : public std::streambuf {};
25 std::ios ios(&sb);
26 std::skipws(ios);
27 std::ios_base& r = std::noskipws(ios);
29 assert(!(ios.flags() & std::ios::skipws));

Completed in 354 milliseconds

<<11121314151617181920>>