HomeSort by relevance Sort by last modified time
    Searched refs:to_string (Results 1 - 25 of 57) sorted by null

1 2 3

  /ndk/sources/cxx-stl/llvm-libc++/test/strings/string.conversions/
to_string.pass.cpp 12 // string to_string(int val);
13 // string to_string(unsigned val);
14 // string to_string(long val);
15 // string to_string(unsigned long val);
16 // string to_string(long long val);
17 // string to_string(unsigned long long val);
18 // string to_string(float val);
19 // string to_string(double val);
20 // string to_string(long double val);
31 std::string s = std::to_string(T(0))
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MismatchedTokenException.pm 8 '""' => \&to_string,
26 sub to_string { subroutine
UnwantedTokenException.pm 6 '""' => \&to_string;
15 sub to_string { subroutine
MissingTokenException.pm 6 '""' => \&to_string;
20 sub to_string { subroutine
CommonTokenStream.pm 341 return $self->to_string();
344 sub to_string { subroutine
345 Readonly my $usage => 'String to_string() | String to_string(int start, int stop | String to_string(Token start, Token stop)';
354 return $self->to_string(0, $#{$self->tokens});
BitSet.pm 216 return $self->to_string();
219 sub to_string : method { subroutine
  /external/webkit/Tools/gdb/
webkit.py 84 def to_string(self): member in class:UCharStringPrinter
90 def to_string(self): member in class:WTFAtomicStringPrinter
96 def to_string(self): member in class:WTFCStringPrinter
110 def to_string(self): member in class:WTFStringPrinter
125 def to_string(self): member in class:JSCUStringPrinter
135 def to_string(self): member in class:JSCIdentifierPrinter
136 return JSCUStringPrinter(self.val['m_string']).to_string()
141 def to_string(self): member in class:JSCJSStringPrinter
145 return JSCUStringPrinter(self.val['m_value']).to_string()
150 def to_string(self) member in class:WebCoreKURLGooglePrivatePrinter
176 def to_string(self): member in class:WebCoreQualifiedNamePrinter
245 def to_string(self): member in class:WTFVectorPrinter
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/template.bitset/bitset.members/
to_string.pass.cpp 14 // to_string(charT zero = charT('0'), charT one = charT('1')) const;
17 // basic_string<charT, traits, allocator<charT> > to_string() const;
20 // basic_string<charT, char_traits<charT>, allocator<charT> > to_string() const;
22 // basic_string<char, char_traits<char>, allocator<char> > to_string() const;
47 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >();
55 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >();
63 std::string s = v.template to_string<char>();
71 std::string s = v.to_string();
82 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0');
90 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0')
    [all...]
  /external/chromium/chrome/browser/sync/engine/
store_timestamps_command.cc 52 << forward_progress_types.to_string() << " out of possible: "
53 << status->updates_request_types().to_string();
download_updates_command.cc 64 VLOG(1) << "Getting updates for types " << enabled_types.to_string();
  /external/stlport/test/unit/
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
74 CPPUNIT_ASSERT( b2.to_string() == "1000100010001" );
sstream_test.cpp 474 string to_string( const T& v ) function
483 CPPUNIT_CHECK( to_string<int>(-1) == "-1" );
484 CPPUNIT_CHECK( to_string<long>(-1) == "-1" );
  /ndk/tests/device/test-gnustl-full/unit/
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
74 CPPUNIT_ASSERT( b2.to_string() == "1000100010001" );
sstream_test.cpp 474 string to_string( const T& v ) function
483 CPPUNIT_CHECK( to_string<int>(-1) == "-1" );
484 CPPUNIT_CHECK( to_string<long>(-1) == "-1" );
  /ndk/tests/device/test-stlport/unit/
bitset_test.cpp 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
74 CPPUNIT_ASSERT( b2.to_string() == "1000100010001" );
sstream_test.cpp 474 string to_string( const T& v ) function
483 CPPUNIT_CHECK( to_string<int>(-1) == "-1" );
484 CPPUNIT_CHECK( to_string<long>(-1) == "-1" );
  /external/openfst/src/include/fst/script/
weight-class.h 37 virtual string to_string() const = 0;
58 virtual string to_string() const { function in struct:fst::script::WeightClassImpl
101 string to_string() const { function in class:fst::script::WeightClass
109 return impl_->to_string();
  /external/chromium/android/ui/base/l10n/
l10n_util.cc 103 jmethodID to_string = env->GetMethodID(locale_class, "toString", "()Ljava/lang/String;"); local
105 jstring locale_jstr = static_cast<jstring>(env->CallObjectMethod(locale_jobj, to_string));
  /ndk/sources/cxx-stl/llvm-libc++/src/
string.cpp 369 string to_string(int val) function
386 string to_string(unsigned val) function
403 string to_string(long val) function
420 string to_string(unsigned long val) function
437 string to_string(long long val) function
454 string to_string(unsigned long long val) function
471 string to_string(float val) function
488 string to_string(double val) function
505 string to_string(long double val) function
  /external/chromium/chrome/browser/sync/syncable/
model_type_unittest.cc 75 std::string input_string = input.to_string();
  /external/v8/tools/
gdb-v8-support.py 110 def to_string(self): member in class:V8ValuePrinter
  /external/eigen/debug/gdb/
printers.py 126 def to_string(self): member in class:EigenMatrixPrinter
171 def to_string(self): member in class:EigenQuaternionPrinter
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
basic_string.h 2805 to_string(int __val) function
2810 to_string(unsigned __val) function
2816 to_string(long __val) function
2821 to_string(unsigned long __val) function
2827 to_string(long long __val) function
2833 to_string(unsigned long long __val) function
2839 to_string(float __val) function
2848 to_string(double __val) function
2857 to_string(long double __val) function
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
vstring.h 2582 to_string(int __val) function
2587 to_string(unsigned __val) function
2593 to_string(long __val) function
2599 to_string(unsigned long __val) function
2606 to_string(long long __val) function
2612 to_string(unsigned long long __val) function
2618 to_string(float __val) function
2626 to_string(double __val) function
2634 to_string(long double __val) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
basic_string.h 2805 to_string(int __val) function
2810 to_string(unsigned __val) function
2816 to_string(long __val) function
2821 to_string(unsigned long __val) function
2827 to_string(long long __val) function
2833 to_string(unsigned long long __val) function
2839 to_string(float __val) function
2848 to_string(double __val) function
2857 to_string(long double __val) function
    [all...]

Completed in 956 milliseconds

1 2 3