/third_party/python/Lib/test/ |
H A D | test_difflib.py | 431 # type of input content must be consistent: all str or all bytes 438 expect = "lines to compare must be str, not bytes (b'hello')" 444 expect = "all arguments must be bytes, not str ('hello')" 451 # cannot pass filenames as bytes if content is str (this may not be 459 "all arguments must be str, not: b'ol\\xe9.txt'", 469 "all arguments must be bytes, not str ('1 fév')", 473 # if input is str, non-ASCII dates are fine 481 self.assertEqual(msg, str(ctx.exception))
|
H A D | test_locale.py | 228 self._test_format_string("int %i float %.2f str %s", 229 (1000, 1000.0, 'str'), grouping=1, 230 out='int 1%s000 float 1%s000.00 str str' % 545 self.assertIsInstance(enc, str)
|
H A D | test_poplib.py | 71 line = str(line, 'ISO-8859-1')
|
/third_party/rust/crates/memchr/src/memmem/ |
H A D | mod.rs | 591 /// `&[u8]`. This includes, but is not limited to, `&str` and `&[u8]`. 1239 (&'static str, &'static str, Option<usize>, Option<usize>);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
H A D | status_test.cc | 32 EXPECT_EQ(oss.str(), absl::StatusCodeToString(code)); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | arg.h | 252 return str_format_internal::FormatConvertImpl(oss.str(), conv, out); in FormatConvertImpl()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | beta_distribution_test.cc | 136 << ss.str() << " " // in TYPED_TEST()
|
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_internal.h | 879 char *str; member
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | ec.rs | 668 s: &str, in from_hex_str()
|
/third_party/rust/crates/regex/regex-syntax/src/unicode_tables/ |
H A D | word_break.rs | 9 pub const BY_NAME: &'static [(&'static str, &'static [(char, char)])] = &[
|
/third_party/spirv-tools/source/opt/ |
H A D | instruction.h | 651 // Pretty-prints |inst| to |str| and returns |str|. 657 std::ostream& operator<<(std::ostream& str, const Instruction& inst);
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fFlushFinishTests.cpp | 449 throw CalibrationFailedException(msg.str());
|
H A D | es3fPixelBufferObjectTests.cpp | 263 m_program = new glu::ShaderProgram(m_context.getRenderContext(), glu::makeVtxFragSources(vertexShaderSource, fragmentShaderSource.str())); in init()
|
H A D | es3fReadPixelsTests.cpp | 146 glu::ShaderProgram program(m_context.getRenderContext(), glu::makeVtxFragSources(vertexSource, fragmentSource.str())); in render()
|
H A D | es3fDefaultVertexAttributeTests.cpp | 439 return buf.str(); in genVertexSource()
|
/third_party/vk-gl-cts/modules/gles3/scripts/ |
H A D | gen-conversions.py | 211 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType)
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/ |
H A D | vktSparseResourcesImageSparseBinding.cpp | 503 formatGroup->addChild(new ImageSparseBindingCase(testCtx, stream.str(), "", imageType, imageSize, format, useDeviceGroup)); in createImageSparseBindingTestsCommon()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/ |
H A D | vktSubgroupsVoteTests.cpp | 278 programCollection.glslSources.add("fragment") << glu::FragmentSource(fragmentSource.str())<< buildOptions; in initFrameBufferProgramsFrag()
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluTextureTestUtil.hpp | 437 std::ostream& operator<< (std::ostream& str, const LogGradientFmt& fmt);
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglImageTests.cpp | 267 checkCallReturn(m_eglTestCtx, call.str().c_str(), image, noImageVal, expectError); in checkCreate()
|
H A D | teglMakeCurrentPerfTests.cpp | 148 return name.str(); in toName()
|
H A D | teglPreservingSwapTests.cpp | 573 return stream.str(); in generateTestName()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fDefaultVertexAttributeTests.cpp | 362 return buf.str(); in genVertexSource()
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | roll_chromium_deps.py | 191 assert all(isinstance(value, str) for value in extra_env.values())
|
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
H A D | TestCharset.java | 1415 void printchars(String str) { in printchars() argument 1416 char[] chars = str.toCharArray(); in printchars() 1443 public boolean equals(CharBuffer buf, String str) { in equals() argument 1444 return equals(buf, str.toCharArray()); in equals() 1446 public boolean equals(CharBuffer buf, CharBuffer str) { in equals() argument 1447 if (buf.limit() != str.limit()) in equals() 1451 if (buf.get(i) != str.get(i)) in equals() 1455 public boolean equals(CharBuffer buf, CharBuffer str, int limit) { in equals() argument 1456 if (limit > buf.limit() || limit > str.limit()) in equals() 1459 if (buf.get(i) != str in equals() [all...] |