/external/parameter-framework/upstream/test/functional-tests/ |
FloatingPoint.cpp | 116 std::to_string(::utility::binaryCopy<uint32_t>(tooHigh))}, 118 std::to_string(::utility::binaryCopy<uint32_t>(tooLow))}, 120 {"(infinity)", std::to_string(::utility::binaryCopy<uint32_t>(inf))}, 121 {"(NaN)", std::to_string(::utility::binaryCopy<uint32_t>(nan))}, 132 std::to_string(::utility::binaryCopy<uint32_t>(upper))}, 134 std::to_string(::utility::binaryCopy<uint32_t>(lower))}, 136 std::to_string(::utility::binaryCopy<uint32_t>(zero))},
|
/external/libcxx/test/std/experimental/string.view/string.view.ops/ |
to_string.pass.cpp | 16 // basic_string<_CharT, _Traits, Allocator> to_string ( 34 auto str2 = sv1.to_string(min_allocator<CharT>()); 48 auto str2 = sv1.to_string(min_allocator<CharT>());
|
/external/parameter-framework/upstream/parameter/ |
StringParameter.cpp | 74 using std::to_string; 76 to_string(strValue.length()) + ": maximum length is " + 77 std::to_string(getSize() - 1));
|
LinearParameterAdaptation.cpp | 51 strResult += std::to_string(_dSlopeNumerator); 56 strResult += std::to_string(_dSlopeDenominator);
|
LogarithmicParameterAdaptation.cpp | 51 strResult += std::to_string(_dLogarithmBase); 54 strResult += std::to_string(_dFloorValue);
|
/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" );
|
/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" );
|
/external/parameter-framework/upstream/test/tmpfile/windows/ |
TmpFile.cpp | 37 using std::to_string; 66 return "Could not format error " + to_string(error) + ": " + to_string(::GetLastError()); 80 "\", with prefix \"" + prefix + "\": (" + to_string(error) + ") " +
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
HWComposer.cpp | 172 ALOGE("Invalid layer type change: %s --> %s", to_string(from).c_str(), 173 to_string(to).c_str()); 180 to_string(connected).c_str()); 297 to_string(error).c_str(), static_cast<int32_t>(error)); 351 to_string(error).c_str(), static_cast<int32_t>(error)); 390 ": %s (%d)", to_string(enabled).c_str(), disp, 392 to_string(error).c_str(), static_cast<int32_t>(error)); 413 to_string(error).c_str(), static_cast<int32_t>(error)); 440 to_string(error).c_str(), static_cast<int32_t>(error)); 450 "%s (%d)", displayId, to_string(error).c_str() [all...] |
/system/vold/ |
Benchmark.cpp | 43 + " " + std::to_string(create_d) 44 + " " + std::to_string(drop_d) 45 + " " + std::to_string(run_d) 46 + " " + std::to_string(destroy_d));
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/impl/ |
address.ipp | 115 std::string address::to_string() const 118 return ipv6_address_.to_string(); 119 return ipv4_address_.to_string(); 122 std::string address::to_string(asio::error_code& ec) const 125 return ipv6_address_.to_string(ec); 126 return ipv4_address_.to_string(ec);
|
address_v4.ipp | 71 std::string address_v4::to_string() const 74 std::string addr = to_string(ec); 79 std::string address_v4::to_string(asio::error_code& ec) const
|
/system/connectivity/shill/binder/ |
binder_control.cc | 53 using std::to_string; 105 return new IPConfigAdaptorStub(to_string(next_unique_binder_adaptor_id_++)); 114 return new ProfileAdaptorStub(to_string(next_unique_binder_adaptor_id_++)); 118 return new RPCTaskAdaptorStub(to_string(next_unique_binder_adaptor_id_++)); 130 to_string(next_unique_binder_adaptor_id_++)); 189 return new Adaptor(object, to_string(next_unique_binder_adaptor_id_++));
|
/external/libcxx/src/ |
string.cpp | 351 // to_string 442 string to_string(int val) function 447 string to_string(unsigned val) function 452 string to_string(long val) function 457 string to_string(unsigned long val) function 462 string to_string(long long val) function 467 string to_string(unsigned long long val) function 472 string to_string(float val) function 477 string to_string(double val) function 482 string to_string(long double val function [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
string.cpp | 350 // to_string 441 string to_string(int val) function 446 string to_string(unsigned val) function 451 string to_string(long val) function 456 string to_string(unsigned long val) function 461 string to_string(long long val) function 466 string to_string(unsigned long long val) function 471 string to_string(float val) function 476 string to_string(double val) function 481 string to_string(long double val function [all...] |
/external/selinux/sepolgen/tests/ |
test_refpolicy.py | 53 self.assertEqual(sc.to_string(default_level="s1"), context + ":s1") 63 self.assertEqual(sc.to_string(), context) 99 self.assertEqual(a.to_string(), "allow foo_t bar_t:file read;") 107 a = a.to_string().split(' ') 128 self.assertEqual(a.to_string(), "type_transition foo_t bar_exec_t:process bar_t;")
|
/art/runtime/native/ |
dalvik_system_VMDebug.cc | 378 std::string output = std::to_string(heap->GetGcCount()); 382 std::string output = std::to_string(NsToMs(heap->GetGcTime())); 386 std::string output = std::to_string(heap->GetBytesAllocatedEver()); 390 std::string output = std::to_string(heap->GetBytesFreedEver()); 394 std::string output = std::to_string(heap->GetBlockingGcCount()); 398 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); 436 std::to_string(heap->GetGcCount()))) { 440 std::to_string(NsToMs(heap->GetGcTime())))) { 444 std::to_string(heap->GetBytesAllocatedEver()))) { 448 std::to_string(heap->GetBytesFreedEver()))) [all...] |
/external/skia/tools/flags/ |
SkCommandLineFlags.h | 193 #define TO_STRING(s) TO_STRING2(s) 197 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateBoolFlag(TO_STRING(name), \ 207 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateBoolFlag(TO_STRING(name), \ 208 TO_STRING(shortName),\ 217 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \ 224 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \ 235 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \ 236 TO_STRING(shortName), \ 248 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateIntFlag(TO_STRING(name), \ 255 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateIntFlag(TO_STRING(name), [all...] |
/external/parameter-framework/upstream/test/test-subsystem/ |
TESTSubsystemString.cpp | 55 throw std::logic_error("Buffer is to small: " + std::to_string(size) + " Minimum size: " + 56 std::to_string(requiredBufferSize));
|
/external/parameter-framework/upstream/xmlserializer/ |
XmlSerializingContext.cpp | 64 self->_strXmlError += filename + ":" + std::to_string(error->line) + ":" + 65 std::to_string(error->int2) + ": " + error->message;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/gcc-4.8.3/python/libstdcxx/v6/ |
printers.py | 64 def to_string (self): member in class:SharedPointerPrinter 82 def to_string (self): member in class:UniquePointerPrinter 118 def to_string(self): member in class:StdListPrinter 130 def to_string(self): member in class:StdListIteratorPrinter 164 def to_string(self): member in class:StdSlistPrinter 175 def to_string(self): member in class:StdSlistIteratorPrinter 234 def to_string(self): member in class:StdVectorPrinter 262 def to_string(self): member in class:StdVectorIteratorPrinter 320 def to_string (self): member in class:StdTuplePrinter 335 def to_string (self) member in class:StdStackOrQueuePrinter 387 def to_string (self): member in class:StdRbtreeIteratorPrinter 400 def to_string (self): member in class:StdDebugIteratorPrinter 433 def to_string (self): member in class:StdMapPrinter 472 def to_string (self): member in class:StdSetPrinter 489 def to_string (self): member in class:StdBitsetPrinter 565 def to_string(self): member in class:StdDequePrinter 592 def to_string(self): member in class:StdDequeIteratorPrinter 601 def to_string(self): member in class:StdStringPrinter 650 def to_string (self): member in class:Tr1UnorderedSetPrinter 673 def to_string (self): member in class:Tr1UnorderedMapPrinter 732 def to_string(self): member in class:StdForwardListPrinter [all...] |
/prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/ |
printers.py | 64 def to_string (self): member in class:SharedPointerPrinter 82 def to_string (self): member in class:UniquePointerPrinter 118 def to_string(self): member in class:StdListPrinter 130 def to_string(self): member in class:StdListIteratorPrinter 164 def to_string(self): member in class:StdSlistPrinter 175 def to_string(self): member in class:StdSlistIteratorPrinter 234 def to_string(self): member in class:StdVectorPrinter 262 def to_string(self): member in class:StdVectorIteratorPrinter 320 def to_string (self): member in class:StdTuplePrinter 335 def to_string (self) member in class:StdStackOrQueuePrinter 387 def to_string (self): member in class:StdRbtreeIteratorPrinter 400 def to_string (self): member in class:StdDebugIteratorPrinter 433 def to_string (self): member in class:StdMapPrinter 472 def to_string (self): member in class:StdSetPrinter 489 def to_string (self): member in class:StdBitsetPrinter 565 def to_string(self): member in class:StdDequePrinter 592 def to_string(self): member in class:StdDequeIteratorPrinter 601 def to_string(self): member in class:StdStringPrinter 650 def to_string (self): member in class:Tr1UnorderedSetPrinter 673 def to_string (self): member in class:Tr1UnorderedMapPrinter 732 def to_string(self): member in class:StdForwardListPrinter [all...] |
/prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/ |
printers.py | 64 def to_string (self): member in class:SharedPointerPrinter 82 def to_string (self): member in class:UniquePointerPrinter 118 def to_string(self): member in class:StdListPrinter 130 def to_string(self): member in class:StdListIteratorPrinter 164 def to_string(self): member in class:StdSlistPrinter 175 def to_string(self): member in class:StdSlistIteratorPrinter 234 def to_string(self): member in class:StdVectorPrinter 262 def to_string(self): member in class:StdVectorIteratorPrinter 320 def to_string (self): member in class:StdTuplePrinter 335 def to_string (self) member in class:StdStackOrQueuePrinter 387 def to_string (self): member in class:StdRbtreeIteratorPrinter 400 def to_string (self): member in class:StdDebugIteratorPrinter 433 def to_string (self): member in class:StdMapPrinter 472 def to_string (self): member in class:StdSetPrinter 489 def to_string (self): member in class:StdBitsetPrinter 565 def to_string(self): member in class:StdDequePrinter 592 def to_string(self): member in class:StdDequeIteratorPrinter 601 def to_string(self): member in class:StdStringPrinter 650 def to_string (self): member in class:Tr1UnorderedSetPrinter 673 def to_string (self): member in class:Tr1UnorderedMapPrinter 732 def to_string(self): member in class:StdForwardListPrinter [all...] |
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.7/ |
printers.py | 55 def to_string (self): member in class:SharedPointerPrinter 73 def to_string (self): member in class:UniquePointerPrinter 107 def to_string(self): member in class:StdListPrinter 119 def to_string(self): member in class:StdListIteratorPrinter 153 def to_string(self): member in class:StdSlistPrinter 164 def to_string(self): member in class:StdSlistIteratorPrinter 223 def to_string(self): member in class:StdVectorPrinter 251 def to_string(self): member in class:StdVectorIteratorPrinter 309 def to_string (self): member in class:StdTuplePrinter 324 def to_string (self) member in class:StdStackOrQueuePrinter 376 def to_string (self): member in class:StdRbtreeIteratorPrinter 389 def to_string (self): member in class:StdDebugIteratorPrinter 422 def to_string (self): member in class:StdMapPrinter 461 def to_string (self): member in class:StdSetPrinter 478 def to_string (self): member in class:StdBitsetPrinter 554 def to_string(self): member in class:StdDequePrinter 581 def to_string(self): member in class:StdDequeIteratorPrinter 590 def to_string(self): member in class:StdStringPrinter 634 def to_string (self): member in class:Tr1UnorderedSetPrinter 652 def to_string (self): member in class:Tr1UnorderedMapPrinter 709 def to_string(self): member in class:StdForwardListPrinter [all...] |
/prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/ |
printers.py | 64 def to_string (self): member in class:SharedPointerPrinter 82 def to_string (self): member in class:UniquePointerPrinter 118 def to_string(self): member in class:StdListPrinter 130 def to_string(self): member in class:StdListIteratorPrinter 164 def to_string(self): member in class:StdSlistPrinter 175 def to_string(self): member in class:StdSlistIteratorPrinter 234 def to_string(self): member in class:StdVectorPrinter 262 def to_string(self): member in class:StdVectorIteratorPrinter 320 def to_string (self): member in class:StdTuplePrinter 335 def to_string (self) member in class:StdStackOrQueuePrinter 387 def to_string (self): member in class:StdRbtreeIteratorPrinter 400 def to_string (self): member in class:StdDebugIteratorPrinter 433 def to_string (self): member in class:StdMapPrinter 472 def to_string (self): member in class:StdSetPrinter 489 def to_string (self): member in class:StdBitsetPrinter 565 def to_string(self): member in class:StdDequePrinter 592 def to_string(self): member in class:StdDequeIteratorPrinter 601 def to_string(self): member in class:StdStringPrinter 650 def to_string (self): member in class:Tr1UnorderedSetPrinter 673 def to_string (self): member in class:Tr1UnorderedMapPrinter 732 def to_string(self): member in class:StdForwardListPrinter [all...] |