Searched refs:to_string (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium-trace/catapult/third_party/webapp2/tests/resources/jinja2_templates_compiled/
H A Dtmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py2 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)
/external/parameter-framework/upstream/test/tmpfile/windows/
H A DTmpFile.cpp37 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/
H A Dstring_cast.hpp67 GLM_FUNC_DECL std::string to_string(genType const & x);
/external/libcxx/test/std/strings/string.conversions/
H A Dto_string.pass.cpp12 // 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(
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DMismatchedTokenException.pm8 '""' => \&to_string,
26 sub to_string { subroutine
H A DMissingTokenException.pm6 '""' => \&to_string;
20 sub to_string { subroutine
H A DUnwantedTokenException.pm6 '""' => \&to_string;
15 sub to_string { subroutine
/external/parameter-framework/upstream/parameter/
H A DStringParameter.cpp74 using std::to_string;
76 to_string(strValue.length()) + ": maximum length is " +
77 std::to_string(getSize() - 1));
H A DLinearParameterAdaptation.cpp51 strResult += std::to_string(_dSlopeNumerator);
56 strResult += std::to_string(_dSlopeDenominator);
H A DLogarithmicParameterAdaptation.cpp51 strResult += std::to_string(_dLogarithmBase);
54 strResult += std::to_string(_dFloorValue);
H A DParameterBlockType.cpp65 new CParameterBlock(std::to_string(child), this);
H A DFloatingPointParameterType.cpp57 strResult += "Min:" + std::to_string(_fMin) + "\n" + "Max:" + std::to_string(_fMax) + "\n";
95 serializingContext.setError("Unsupported size (" + std::to_string(sizeInBits) + ") for " +
108 serializingContext.setError("Min (" + std::to_string(_fMin) +
109 ") can't be greater than Max (" + std::to_string(_fMax) + ")");
H A DEnumParameterType.cpp148 parameterAccessContext.setError(std::to_string(userValue) +
159 "Value " + std::to_string(userValue) + " standing out of admitted range [" +
160 std::to_string(getMin()) + ", " + std::to_string(getMax()) + "] for " + getKind());
H A DEnumValuePair.cpp50 return std::to_string(_iNumerical);
H A DParameterAdaptation.cpp61 strResult += std::to_string(_iOffset);
H A DStringParameterType.cpp55 strResult += std::to_string(_maxLength);
/external/autotest/scheduler/
H A Demail_manager.py29 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)
/external/parameter-framework/upstream/test/functional-tests/
H A DFloatingPoint.cpp116 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/test/test-subsystem/
H A DTESTSubsystemString.cpp55 throw std::logic_error("Buffer is to small: " + std::to_string(size) + " Minimum size: " +
56 std::to_string(requiredBufferSize));
/external/parameter-framework/upstream/xmlserializer/
H A DXmlSerializingContext.cpp64 self->_strXmlError += filename + ":" + std::to_string(error->line) + ":" +
65 std::to_string(error->int2) + ": " + error->message;
/external/libcxx/test/std/utilities/template.bitset/bitset.members/
H A Dto_string.pass.cpp14 // 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_
[all...]
/external/selinux/sepolgen/src/sepolgen/
H A Drefpolicy.py137 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(sel 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...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
H A Dpyami_sendmail50 notify(options.subject, html_body=body, to_string=options.to, append_instance_id=options.append_instance_id)
52 notify(options.subject, body=body, to_string=options.to, append_instance_id=options.append_instance_id)
/external/libcxx/test/std/experimental/string.view/string.view.ops/
H A Dto_string.pass.cpp16 // 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/libbrillo/brillo/
H A Dsecure_blob.h30 std::string to_string() const;

Completed in 333 milliseconds

12345