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

1 2 3 4 5 6 7 8 910

  /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) + ") " +
  /external/vulkan-validation-layers/libs/glm/gtx/
string_cast.hpp 67 GLM_FUNC_DECL std::string to_string(genType const & x);
  /external/libcxx/test/std/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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
  /external/chromium-trace/catapult/third_party/webapp2/tests/resources/jinja2_templates_compiled/
tmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py 2 from jinja2.runtime import LoopContext, TemplateReference, Macro, Markup, TemplateRuntimeError, missing, concat, escape, markup_join, unicode_join, to_string, TemplateNotFound namespace
8 yield to_string(l_message)
  /bionic/libc/malloc_debug/tests/
log_fake.cpp 49 g_fake_log_print += std::to_string(priority) + ' ';
64 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' ';
72 g_fake_log_print += std::to_string(prio) + ' ';
  /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/parameter-framework/upstream/parameter/
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);
StringParameter.cpp 74 using std::to_string;
76 to_string(strValue.length()) + ": maximum length is " +
77 std::to_string(getSize() - 1));
ParameterBlockType.cpp 65 new CParameterBlock(std::to_string(child), this);
  /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;
  /external/autotest/scheduler/
email_manager.py 29 def send_email(self, to_string, subject, body):
30 """Mails out emails to the addresses listed in to_string.
32 @param to_string: is split into a list which can be delimited by any of:
38 to_list = [x for x in re.split('\s|,|;|:', to_string) if x]
41 to_string = ','.join(to_list)
43 gmail_lib.send_email(to_string, subject, body)
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/printer/
bound_registers.py 25 def to_string (self): member in class:MpxBound128Printer
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/printer/
bound_registers.py 25 def to_string (self): member in class:MpxBound128Printer
  /external/libcxx/test/std/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/selinux/sepolgen/src/sepolgen/
refpolicy.py 137 return str(self.comment) + "\n" + self.to_string()
139 return self.to_string()
142 return "<%s(%s)>" % (self.__class__.__name__, self.to_string())
144 def to_string(self): member in class:Node
154 return str(self.comment) + "\n" + self.to_string()
156 return self.to_string()
159 return "<%s(%s)>" % (self.__class__.__name__, self.to_string())
161 def to_string(self): member in class:Leaf
308 def to_string(self, default_level=None): member in class:SecurityContext
359 def to_string(self) member in class:TypeAttribute
372 def to_string(self): member in class:RoleAttribute
382 def to_string(self): member in class:Role
395 def to_string(self): member in class:Type
409 def to_string(self): member in class:TypeAlias
417 def to_string(self): member in class:Attribute
425 def to_string(self): member in class:Attribute_Role
482 def to_string(self): member in class:AVRule
519 def to_string(self): member in class:TypeRule
532 def to_string(self): member in class:RoleAllow
542 def to_string(self): member in class:RoleType
555 def to_string(self): member in class:ModuleDeclaration
566 def to_string(self): member in class:Conditional
575 def to_string(self): member in class:Bool
588 def to_string(self): member in class:InitialSid
598 def to_string(self): member in class:GenfsCon
612 def to_string(self): member in class:FilesystemUse
630 def to_string(self): member in class:PortCon
640 def to_string(self): member in class:NodeCon
650 def to_string(self): member in class:NetifCon
659 def to_string(self): member in class:PirqCon
668 def to_string(self): member in class:IomemCon
677 def to_string(self): member in class:IoportCon
686 def to_string(self): member in class:PciDeviceCon
695 def to_string(self): member in class:DeviceTreeCon
712 def to_string(self): member in class:Headers
720 def to_string(self): member in class:Module
732 def to_string(self): member in class:Interface
740 def to_string(self): member in class:TunablePolicy
748 def to_string(self): member in class:Template
756 def to_string(self): member in class:IfDef
776 def to_string(self): member in class:InterfaceCall
796 def to_string(self): member in class:OptionalPolicy
804 def to_string(self): member in class:SupportMacros
851 def to_string(self): member in class:Require
878 def to_string(self): member in class:ObjPermSet
886 def to_string(self): member in class:ClassMap
896 def to_string(self): member in class:Comment
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
refpolicy.py 137 return str(self.comment) + "\n" + self.to_string()
139 return self.to_string()
142 return "<%s(%s)>" % (self.__class__.__name__, self.to_string())
144 def to_string(self): member in class:Node
154 return str(self.comment) + "\n" + self.to_string()
156 return self.to_string()
159 return "<%s(%s)>" % (self.__class__.__name__, self.to_string())
161 def to_string(self): member in class:Leaf
308 def to_string(self, default_level=None): member in class:SecurityContext
359 def to_string(self) member in class:TypeAttribute
372 def to_string(self): member in class:RoleAttribute
382 def to_string(self): member in class:Role
395 def to_string(self): member in class:Type
409 def to_string(self): member in class:TypeAlias
417 def to_string(self): member in class:Attribute
425 def to_string(self): member in class:Attribute_Role
482 def to_string(self): member in class:AVRule
519 def to_string(self): member in class:TypeRule
532 def to_string(self): member in class:RoleAllow
542 def to_string(self): member in class:RoleType
555 def to_string(self): member in class:ModuleDeclaration
566 def to_string(self): member in class:Conditional
575 def to_string(self): member in class:Bool
588 def to_string(self): member in class:InitialSid
598 def to_string(self): member in class:GenfsCon
612 def to_string(self): member in class:FilesystemUse
630 def to_string(self): member in class:PortCon
640 def to_string(self): member in class:NodeCon
650 def to_string(self): member in class:NetifCon
659 def to_string(self): member in class:PirqCon
668 def to_string(self): member in class:IomemCon
677 def to_string(self): member in class:IoportCon
686 def to_string(self): member in class:PciDeviceCon
695 def to_string(self): member in class:DeviceTreeCon
712 def to_string(self): member in class:Headers
720 def to_string(self): member in class:Module
732 def to_string(self): member in class:Interface
740 def to_string(self): member in class:TunablePolicy
748 def to_string(self): member in class:Template
756 def to_string(self): member in class:IfDef
776 def to_string(self): member in class:InterfaceCall
796 def to_string(self): member in class:OptionalPolicy
804 def to_string(self): member in class:SupportMacros
851 def to_string(self): member in class:Require
878 def to_string(self): member in class:ObjPermSet
886 def to_string(self): member in class:ClassMap
896 def to_string(self): member in class:Comment
    [all...]
  /system/core/debuggerd/test/
log_fake.cpp 49 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' ';
57 g_fake_log_print += std::to_string(prio) + ' ';
  /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_++));

Completed in 271 milliseconds

1 2 3 4 5 6 7 8 910