/external/selinux/python/sepolgen/src/sepolgen/ |
D | refpolicy.py | 140 return str(self.comment) + "\n" + self.to_string() 142 return self.to_string() 145 return "<%s(%s)>" % (self.__class__.__name__, self.to_string()) 147 def to_string(self): member in Node 157 return str(self.comment) + "\n" + self.to_string() 159 return self.to_string() 162 return "<%s(%s)>" % (self.__class__.__name__, self.to_string()) 164 def to_string(self): member in Leaf 311 def to_string(self, default_level=None): member in SecurityContext 362 def to_string(self): member in TypeAttribute [all …]
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | string_cast.inl | 43 GLM_FUNC_QUALIFIER std::string to_string(float x) function 48 GLM_FUNC_QUALIFIER std::string to_string(double x) function 53 GLM_FUNC_QUALIFIER std::string to_string(int x) function 58 GLM_FUNC_QUALIFIER std::string to_string(unsigned int x) function 67 GLM_FUNC_QUALIFIER std::string to_string function 78 GLM_FUNC_QUALIFIER std::string to_string function 90 GLM_FUNC_QUALIFIER std::string to_string function 106 GLM_FUNC_QUALIFIER std::string to_string function 115 GLM_FUNC_QUALIFIER std::string to_string function 124 GLM_FUNC_QUALIFIER std::string to_string function [all …]
|
/external/libcxx/test/std/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 …]
|
/external/libcxx/test/std/utilities/template.bitset/bitset.members/ |
D | to_string.pass.cpp | 49 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() 57 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >(); in test_to_string() 65 std::string s = v.template to_string<char>(); in test_to_string() 73 std::string s = v.to_string(); in test_to_string() 84 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() 92 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0'); in test_to_string() 100 std::string s = v.template to_string<char>('0'); in test_to_string() 108 std::string s = v.to_string('0'); in test_to_string() 119 …std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> … in test_to_string() 127 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t> >('0', '1'); in test_to_string() [all …]
|
/external/parameter-framework/upstream/test/functional-tests/ |
D | 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/skia/src/sksl/ir/ |
D | SkSLLayout.h | 144 result += separator + "location = " + to_string(fLocation); in description() 148 result += separator + "offset = " + to_string(fOffset); in description() 152 result += separator + "binding = " + to_string(fBinding); in description() 156 result += separator + "index = " + to_string(fIndex); in description() 160 result += separator + "set = " + to_string(fSet); in description() 164 result += separator + "builtin = " + to_string(fBuiltin); in description() 168 result += separator + "input_attachment_index = " + to_string(fBuiltin); in description() 224 result += separator + "max_vertices = " + to_string(fMaxVertices); in description() 228 result += separator + "invocations = " + to_string(fInvocations); in description()
|
/external/parameter-framework/upstream/test/tmpfile/windows/ |
D | TmpFile.cpp | 37 using std::to_string; 66 return "Could not format error " + to_string(error) + ": " + to_string(::GetLastError()); in formatError() 80 "\", with prefix \"" + prefix + "\": (" + to_string(error) + ") " + in mktmp()
|
/external/skia/src/sksl/ |
D | SkSLString.h | 68 String to_string(double value); 70 String to_string(int32_t value); 72 String to_string(uint32_t value); 74 String to_string(int64_t value); 76 String to_string(uint64_t value);
|
D | SkSLString.cpp | 110 String to_string(int32_t value) { in to_string() function 114 String to_string(uint32_t value) { in to_string() function 118 String to_string(int64_t value) { in to_string() function 124 String to_string(uint64_t value) { in to_string() function 130 String to_string(double value) { in to_string() function
|
/external/autotest/scheduler/ |
D | email_manager.py | 29 def send_email(self, to_string, subject, body): argument 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/parameter/ |
D | FloatingPointParameterType.cpp | 57 strResult += "Min:" + std::to_string(_fMin) + "\n" + "Max:" + std::to_string(_fMax) + "\n"; in showProperties() 95 serializingContext.setError("Unsupported size (" + std::to_string(sizeInBits) + ") for " + in fromXml() 108 serializingContext.setError("Min (" + std::to_string(_fMin) + in fromXml() 109 ") can't be greater than Max (" + std::to_string(_fMax) + ")"); in fromXml()
|
D | StringParameter.cpp | 74 using std::to_string; in doSetValue() 76 to_string(strValue.length()) + ": maximum length is " + in doSetValue() 77 std::to_string(getSize() - 1)); in doSetValue()
|
D | EnumParameterType.cpp | 148 parameterAccessContext.setError(std::to_string(userValue) + in toBlackboard() 159 "Value " + std::to_string(userValue) + " standing out of admitted range [" + in toBlackboard() 160 std::to_string(getMin()) + ", " + std::to_string(getMax()) + "] for " + getKind()); in toBlackboard()
|
D | LinearParameterAdaptation.cpp | 51 strResult += std::to_string(_dSlopeNumerator); in showProperties() 56 strResult += std::to_string(_dSlopeDenominator); in showProperties()
|
/external/llvm/utils/gdb-scripts/ |
D | prettyprinters.py | 8 def to_string(self): member in SmallStringPrinter 22 def to_string(self): member in StringRefPrinter 58 def to_string(self): member in SmallVectorPrinter 96 def to_string(self): member in ArrayRefPrinter
|
/external/libcxx/src/ |
D | string.cpp | 442 string to_string(int val) in to_string() function 447 string to_string(unsigned val) in to_string() function 452 string to_string(long val) in to_string() function 457 string to_string(unsigned long val) in to_string() function 462 string to_string(long long val) in to_string() function 467 string to_string(unsigned long long val) in to_string() function 472 string to_string(float val) in to_string() function 477 string to_string(double val) in to_string() function 482 string to_string(long double val) in to_string() function
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/impl/ |
D | 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);
|
/external/v8/tools/ |
D | gdb-v8-support.py | 111 def to_string(self): member in V8ValuePrinter 168 to_string = True) 175 for l in gdb.execute("maint info sections", to_string = True).split('\n'): 180 for l in gdb.execute("info proc mappings", to_string = True).split('\n'):
|
/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 { method in ANTLR::Runtime::MissingTokenException
|
D | UnwantedTokenException.pm | 6 '""' => \&to_string; 15 sub to_string { method in ANTLR::Runtime::UnwantedTokenException
|
/external/selinux/python/sepolgen/tests/ |
D | 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;")
|
/external/parameter-framework/upstream/xmlserializer/ |
D | XmlSerializingContext.cpp | 64 self->_strXmlError += filename + ":" + std::to_string(error->line) + ":" + in structuredErrorHandler() 65 std::to_string(error->int2) + ": " + error->message; in structuredErrorHandler()
|
/external/parameter-framework/upstream/test/test-subsystem/ |
D | TESTSubsystemString.cpp | 55 throw std::logic_error("Buffer is to small: " + std::to_string(size) + " Minimum size: " + in fromString() 56 std::to_string(requiredBufferSize)); in fromString()
|
/external/vulkan-validation-layers/include/vulkan/ |
D | vulkan.hpp | 317 inline std::string to_string(Result value) in to_string() function 358 … virtual std::string message(int ev) const override { return to_string(static_cast<Result>(ev)); } in message() 18704 inline std::string to_string(FramebufferCreateFlagBits) in to_string() function 18709 inline std::string to_string(FramebufferCreateFlags) in to_string() function 18714 inline std::string to_string(QueryPoolCreateFlagBits) in to_string() function 18719 inline std::string to_string(QueryPoolCreateFlags) in to_string() function 18724 inline std::string to_string(RenderPassCreateFlagBits) in to_string() function 18729 inline std::string to_string(RenderPassCreateFlags) in to_string() function 18734 inline std::string to_string(SamplerCreateFlagBits) in to_string() function 18739 inline std::string to_string(SamplerCreateFlags) in to_string() function [all …]
|