/external/chromium_org/third_party/WebKit/Tools/gdb/ |
D | webkit.py | 100 def to_string(self): member in UCharStringPrinter 106 def to_string(self): member in LCharStringPrinter 112 def to_string(self): member in WTFAtomicStringPrinter 118 def to_string(self): member in WTFCStringPrinter 130 def to_string(self): member in WTFStringImplPrinter 152 def to_string(self): member in WTFStringPrinter 161 def to_string(self): member in blinkKURLPrinter 162 return WTFStringPrinter(self.val['m_string']).to_string() 170 def to_string(self): member in blinkLayoutUnitPrinter 179 def to_string(self): member in blinkLayoutSizePrinter [all …]
|
/external/libcxx/test/strings/string.conversions/ |
D | to_string.pass.cpp | 31 std::string s = std::to_string(T(0)); in test_signed() 37 std::string s = std::to_string(T(12345)); in test_signed() 43 std::string s = std::to_string(T(-12345)); in test_signed() 49 std::string s = std::to_string(std::numeric_limits<T>::max()); in test_signed() 57 std::string s = std::to_string(std::numeric_limits<T>::min()); in test_signed() 70 std::string s = std::to_string(T(0)); in test_unsigned() 76 std::string s = std::to_string(T(12345)); in test_unsigned() 82 std::string s = std::to_string(std::numeric_limits<T>::max()); in test_unsigned() 96 std::string s = std::to_string(T(0)); in test_float() 102 std::string s = std::to_string(T(12345)); in test_float() [all …]
|
D | Android.mk | 43 test_name := strings/string.conversions/to_string 44 test_src := to_string.pass.cpp
|
/external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/ |
D | test_libcython_in_gdb.py | 79 return gdb.execute('info locals', to_string=True) 89 gdb.execute('cy break codefile:%d' % break_lineno, to_string=True) 90 gdb.execute('run', to_string=True) 93 gdb.execute('delete breakpoints', to_string=True) 95 gdb.execute('kill inferior 1', to_string=True) 165 assert 'def join(' in gdb.execute('cy run', to_string=True) 173 step_result = gdb.execute('cy step', to_string=True) 182 output = gdb.execute('cy run', to_string=True) 205 gdb.execute('run', to_string=True) 208 gdb.execute('cy step', to_string=True) [all …]
|
/external/chromium_org/tools/gdb/ |
D | gdb_chrome.py | 84 def to_string(self): member in String16Printer 93 def to_string(self): member in GURLPrinter 99 def to_string(self): member in FilePathPrinter 105 def to_string(self): member in SizePrinter 111 def to_string(self): member in PointPrinter 118 def to_string(self): member in RectPrinter 125 def to_string(self): member in SmartPtrPrinter 155 def to_string(self): member in CallbackPrinter 161 def to_string(self): member in LocationPrinter 170 def to_string(self): member in PendingTaskPrinter [all …]
|
/external/libcxx/test/utilities/template.bitset/bitset.members/ |
D | to_string.pass.cpp | 47 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() 55 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >(); in test_to_string() 63 std::string s = v.template to_string<char>(); in test_to_string() 71 std::string s = v.to_string(); in test_to_string() 82 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() 90 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0'); in test_to_string() 98 std::string s = v.template to_string<char>('0'); in test_to_string() 106 std::string s = v.to_string('0'); in test_to_string() 117 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() 125 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0', '1'); in test_to_string() [all …]
|
D | Android.mk | 95 test_name := utilities/template.bitset/bitset.members/to_string 96 test_src := to_string.pass.cpp
|
/external/chromium_org/third_party/WebKit/Tools/lldb/ |
D | lldb_webkit.py | 50 return "{ length = %d, contents = '%s' }" % (provider.get_length(), provider.to_string()) 55 …is8bit = %d, contents = '%s' }" % (provider.get_length(), provider.is_8bit(), provider.to_string()) 74 return "{ %s }" % provider.to_string() 146 def to_string(self): member in WTFStringImplProvider 172 def to_string(self): member in WTFStringProvider 176 return impl.to_string() 184 def to_string(self): member in WebCoreLayoutUnitProvider 194 … return WebCoreLayoutUnitProvider(self.valobj.GetChildMemberWithName('m_width'), dict).to_string() 197 … return WebCoreLayoutUnitProvider(self.valobj.GetChildMemberWithName('m_height'), dict).to_string() 206 … return WebCoreLayoutUnitProvider(self.valobj.GetChildMemberWithName('m_x'), dict).to_string() [all …]
|
/external/libcxx/src/ |
D | string.cpp | 441 string to_string(int val) in to_string() function 446 string to_string(unsigned val) in to_string() function 451 string to_string(long val) in to_string() function 456 string to_string(unsigned long val) in to_string() function 461 string to_string(long long val) in to_string() function 466 string to_string(unsigned long long val) in to_string() function 471 string to_string(float val) in to_string() function 476 string to_string(double val) in to_string() function 481 string to_string(long double val) in to_string() function
|
/external/stlport/test/unit/ |
D | bitset_test.cpp | 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); in bitset1() 70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >(); in bitset1() 74 CPPUNIT_ASSERT( b2.to_string() == "1000100010001" ); in bitset1()
|
D | sstream_test.cpp | 474 string to_string( const T& v ) in to_string() function 483 CPPUNIT_CHECK( to_string<int>(-1) == "-1" ); in negative() 484 CPPUNIT_CHECK( to_string<long>(-1) == "-1" ); in negative()
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | MismatchedTokenException.pm | 8 '""' => \&to_string, 26 sub to_string { method in ANTLR::Runtime::MismatchedTokenException
|
D | MissingTokenException.pm | 6 '""' => \&to_string; 20 sub to_string { subroutine
|
D | UnwantedTokenException.pm | 6 '""' => \&to_string; 15 sub to_string { method in ANTLR::Runtime::UnwantedTokenException
|
D | CommonTokenStream.pm | 341 return $self->to_string(); 344 sub to_string { subroutine 354 return $self->to_string(0, $#{$self->tokens});
|
D | BitSet.pm | 216 return $self->to_string(); 219 sub to_string : method { method in ANTLR::Runtime::BitSet
|
/external/openfst/src/include/fst/script/ |
D | weight-class.h | 37 virtual string to_string() const = 0; 58 virtual string to_string() const { in to_string() function 101 string to_string() const { in to_string() function 109 return impl_->to_string(); in to_string()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
D | test_expectations_unittest.py | 776 self.assertEqual(expected_string, expectation.to_string(self._converter)) 789 self.assertEqual(expectation.to_string(self._converter), '') 791 self.assertEqual(expectation.to_string(self._converter), '# Qux.') 793 self.assertEqual(expectation.to_string(self._converter), 'bar # Qux.') 796 self.assertEqual(expectation.to_string(self._converter), '[ FOO ] bar # Qux.') 798 self.assertEqual(expectation.to_string(self._converter), '[ FOO ] bar [ BAZ ] # Qux.') 800 self.assertEqual(expectation.to_string(self._converter), '[ FOO ] bar [ BAZ1 BAZ2 ] # Qux.') 802 … self.assertEqual(expectation.to_string(self._converter), '[ FOO1 FOO2 ] bar [ BAZ1 BAZ2 ] # Qux.') 804 self.assertEqual(expectation.to_string(self._converter), '') 806 self.assertEqual(expectation.to_string(self._converter), 'Yes it is!') [all …]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
D | backward.py | 107 def to_string(b): function 116 def to_string(b): function
|
D | files.py | 3 from coverage.backward import to_string 77 return to_string(data)
|
/external/chromium_org/net/base/ |
D | host_port_pair_unittest.cc | 20 string to_string; member 59 EXPECT_EQ(tests[index].to_string, foo.ToString()); in TEST()
|
/external/libcxx/include/ |
D | bitset | 74 …basic_string<charT, traits, Allocator> to_string(charT zero = charT('0'), charT one = charT('1')) … 76 …basic_string<charT, traits, allocator<charT> > to_string(charT zero = charT('0'), charT one = char… 78 …basic_string<charT, char_traits<charT>, allocator<charT> > to_string(charT zero = charT('0'), char… 79 …basic_string<char, char_traits<char>, allocator<char> > to_string(char zero = '0', char one = '1')… 686 basic_string<_CharT, _Traits, _Allocator> to_string(_CharT __zero = _CharT('0'), 689 basic_string<_CharT, _Traits, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'), 692 …basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > to_string(_CharT __zero = _CharT('0'… 694 basic_string<char, char_traits<char>, allocator<char> > to_string(char __zero = '0', 922 bitset<_Size>::to_string(_CharT __zero, _CharT __one) const 937 bitset<_Size>::to_string(_CharT __zero, _CharT __one) const [all …]
|
/external/chromium_org/third_party/cython/src/Cython/Debugger/ |
D | libpython.py | 1356 def to_string (self): member in PyObjectPtrPrinter 1849 def execute(command, from_tty=False, to_string=False): argument 1855 if to_string: 1883 def source_gdb_script(script_contents, to_string=False): argument 1894 gdb.execute("source %s" % filename, to_string=to_string) 1944 result = gdb.execute('break %s' % location, to_string=True) 2022 return gdb.execute('finish', to_string=True) 2025 return gdb.execute('cont', to_string=True) 2089 result = gdb.execute(stepover_command, to_string=True) 2135 self.finish_executing(gdb.execute('run ' + args, to_string=True)) [all …]
|
/external/eigen/debug/gdb/ |
D | printers.py | 126 def to_string(self): member in EigenMatrixPrinter 171 def to_string(self): member in EigenQuaternionPrinter
|
/external/chromium_org/v8/tools/ |
D | gdb-v8-support.py | 110 def to_string(self): member in V8ValuePrinter
|