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

1 2 3 4 5 6 7 8 91011>>

  /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
8 yield to_string(l_message)
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenStream.pm 12 requires 'to_string';
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/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/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...]
  /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...]
  /external/vulkan-validation-layers/libs/glm/gtx/
string_cast.inl 43 GLM_FUNC_QUALIFIER std::string to_string(float x)
48 GLM_FUNC_QUALIFIER std::string to_string(double x)
53 GLM_FUNC_QUALIFIER std::string to_string(int x)
58 GLM_FUNC_QUALIFIER std::string to_string(unsigned int x)
67 GLM_FUNC_QUALIFIER std::string to_string
78 GLM_FUNC_QUALIFIER std::string to_string
90 GLM_FUNC_QUALIFIER std::string to_string
106 GLM_FUNC_QUALIFIER std::string to_string
115 GLM_FUNC_QUALIFIER std::string to_string
124 GLM_FUNC_QUALIFIER std::string to_string
    [all...]
  /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)
  /external/smali/util/src/main/java/org/jf/util/
CharSequenceUtils.java 41 private static final Function<Object, String> TO_STRING = Functions.toStringFunction();
44 return Lists.transform(list, TO_STRING).hashCode();
48 return Lists.transform(list1, TO_STRING).equals(
49 Lists.transform(list2, TO_STRING));
  /external/v8/src/js/
string.js 67 result = %_StringCharAt(TO_STRING(this), TO_INTEGER(pos));
79 result = %_StringCharCodeAt(TO_STRING(this), TO_INTEGER(pos));
89 var this_as_string = TO_STRING(this);
91 return this_as_string + TO_STRING(other);
97 parts[i + 1] = TO_STRING(part);
107 var subject = TO_STRING(this);
108 pattern = TO_STRING(pattern);
124 var sub = TO_STRING(this);
126 var pat = TO_STRING(pat);
155 return %StringLocaleCompare(TO_STRING(this), TO_STRING(other))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/debug/
bitset 291 to_string() const
292 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
298 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
301 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
305 // 434. bitset::to_string() hard to use.
308 to_string() const
309 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
312 // 853. to_string needs updating with zero and one.
315 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
316 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
bitset 248 to_string() const
249 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
255 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
258 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
262 // 434. bitset::to_string() hard to use.
265 to_string() const
266 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
269 // 853. to_string needs updating with zero and one.
272 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
273 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
bitset 291 to_string() const
292 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
298 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
301 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
305 // 434. bitset::to_string() hard to use.
308 to_string() const
309 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
312 // 853. to_string needs updating with zero and one.
315 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
316 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
bitset 248 to_string() const
249 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
255 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
258 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
262 // 434. bitset::to_string() hard to use.
265 to_string() const
266 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
269 // 853. to_string needs updating with zero and one.
272 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
273 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
bitset 291 to_string() const
292 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
298 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
301 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
305 // 434. bitset::to_string() hard to use.
308 to_string() const
309 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
312 // 853. to_string needs updating with zero and one.
315 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
316 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
bitset 248 to_string() const
249 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
255 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
258 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
262 // 434. bitset::to_string() hard to use.
265 to_string() const
266 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
269 // 853. to_string needs updating with zero and one.
272 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
273 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/debug/
bitset 291 to_string() const
292 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
298 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
301 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
305 // 434. bitset::to_string() hard to use.
308 to_string() const
309 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
312 // 853. to_string needs updating with zero and one.
315 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
316 { return to_string<_CharT, _Traits
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
bitset 248 to_string() const
249 { return _M_base().template to_string<_CharT, _Traits, _Alloc>(); }
255 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
258 to_string<_CharT, _Traits, _Alloc>(__zero, __one);
262 // 434. bitset::to_string() hard to use.
265 to_string() const
266 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
269 // 853. to_string needs updating with zero and one.
272 to_string(_CharT __zero, _CharT __one = _CharT('1')) const
273 { return to_string<_CharT, _Traits
    [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...]
  /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) + ' ';
  /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) + ' ';

Completed in 865 milliseconds

1 2 3 4 5 6 7 8 91011>>