Home
last modified time | relevance | path

Searched refs:str (Results 1451 - 1475 of 9273) sorted by relevance

1...<<51525354555657585960>>...371

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkDebugReportUtil.cpp99 std::ostream& operator<< (std::ostream& str, const DebugReportMessage& message) in operator <<() argument
101 str << shortDebugFlagsStr(message.flags) << ": " in operator <<()
106 str << " from " << message.layerPrefix; in operator <<()
108 str << " at " << shortObjectTypeStr(message.objectType) << ":" << message.location << ")"; in operator <<()
110 return str; in operator <<()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dname2uni.cpp53 _set_addString(USet *set, const UChar *str, int32_t length) {
54 ((UnicodeSet *)set)->add(UnicodeString((UBool)(length<0), str, length));
131 UnicodeString str, name; in handleTransliterate() local
204 str.truncate(0); in handleTransliterate()
205 str.append(c); in handleTransliterate()
206 text.handleReplaceBetween(openPos, cursor, str); in handleTransliterate()
209 // the string. Do not assume that str.length() == in handleTransliterate()
211 int32_t delta = cursor - openPos - str.length(); in handleTransliterate()
214 // assert(cursor == openPos + str.length()); in handleTransliterate()
/third_party/skia/tests/
H A DParsePathTest.cpp12 SkString str, str2; in test_to_from() local
13 SkParsePath::ToSVGString(path, &str); in test_to_from()
16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2); in test_to_from()
20 REPORTER_ASSERT(reporter, str == str2); in test_to_from()
25 SkDebugf("str1=%s\nstr2=%s\n", str.c_str(), str2.c_str()); in test_to_from()
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl_unary_op_test.cc34 EXPECT_EQ(out.str(), "expr"); in TEST_F()
47 EXPECT_EQ(out.str(), "~(expr)"); in TEST_F()
63 EXPECT_EQ(out.str(), "expr"); in TEST_F()
75 EXPECT_EQ(out.str(), "!(expr)"); in TEST_F()
88 EXPECT_EQ(out.str(), "-(expr)"); in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_unary_op_test.cc34 EXPECT_EQ(out.str(), "expr"); in TEST_F()
47 EXPECT_EQ(out.str(), "~(expr)"); in TEST_F()
63 EXPECT_EQ(out.str(), "expr"); in TEST_F()
75 EXPECT_EQ(out.str(), "!(expr)"); in TEST_F()
88 EXPECT_EQ(out.str(), "-(expr)"); in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_unary_op_test.cc34 EXPECT_EQ(out.str(), "&(expr)"); in TEST_F()
47 EXPECT_EQ(out.str(), "~(expr)"); in TEST_F()
63 EXPECT_EQ(out.str(), "*(expr)"); in TEST_F()
75 EXPECT_EQ(out.str(), "!(expr)"); in TEST_F()
88 EXPECT_EQ(out.str(), "-(expr)"); in TEST_F()
/third_party/skia/tools/skiaserve/tester/
H A Dtester.py70 url = self.url + '/img/' + str(opcount)
90 parser.add_argument('--skp_dir', default='skps', type=str)
91 parser.add_argument('--url', default='http://localhost:8888', type=str)
92 parser.add_argument('--output_dir', default='results', type=str)
93 parser.add_argument('--match', default='.*', type=str)
/third_party/toybox/toys/other/
H A Dsysctl.c39 static void replace_char(char *str, char old, char new) in replace_char() argument
41 for (; *str; str++) if (*str == old) *str = new; in replace_char()
/third_party/skia/third_party/externals/expat/expat/tests/
H A Dstructdata.c92 entry->str = xmlstrdup(s); in StructData_AddItem()
123 if (xcstrcmp(got->str, want->str) != 0) { in StructData_CheckItems()
132 got->str, want->data0, want->data1, want->data2, got->data0, in StructData_CheckItems()
148 free((void *)storage->entries[i].str); in StructData_Dispose()
/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.h133 inline bool IsStructurallyValidUTF8(StringPiece str) { in IsStructurallyValidUTF8() argument
134 return IsStructurallyValidUTF8(str.data(), static_cast<int>(str.length())); in IsStructurallyValidUTF8()
138 PROTOBUF_EXPORT int UTF8SpnStructurallyValid(StringPiece str);
152 PROTOBUF_EXPORT char* UTF8CoerceToStructurallyValid(StringPiece str, char* dst,
/third_party/rust/crates/clap/clap_complete/tests/
H A Dcommon.rs3 pub fn basic_command(name: &'static str) -> clap::Command { in basic_command()
26 pub fn feature_sample_command(name: &'static str) -> clap::Command { in basic_command()
56 pub fn special_commands_command(name: &'static str) -> clap::Command { in basic_command()
75 pub fn quoting_command(name: &'static str) -> clap::Command { in basic_command()
125 pub fn aliases_command(name: &'static str) -> clap::Command { in basic_command()
150 pub fn sub_subcommands_command(name: &'static str) -> clap::Command { in basic_command()
171 pub fn value_hint_command(name: &'static str) -> clap::Command { in basic_command()
255 pub fn value_terminator_command(name: &'static str) -> clap::Command { in basic_command()
264 pub fn two_multi_valued_arguments_command(name: &'static str) -> clap::Command { in basic_command()
282 name: &'static str, in basic_command()
[all...]
/third_party/rust/crates/clap/src/
H A Dmkeymap.rs46 impl PartialEq<&str> for KeyType {
47 fn eq(&self, rhs: &&str) -> bool { in eq()
55 impl PartialEq<str> for KeyType {
56 fn eq(&self, rhs: &str) -> bool { in eq()
84 /// u64(for positional argument), char(for short flag), &str and OsString
99 /// with u64(for positional argument), char(for short flag), &str and
138 pub(crate) fn remove_by_name(&mut self, name: &str) -> Option<Arg> {
/third_party/skia/build/fuchsia/
H A Dupdate_fuchsia_sdk57 parser.add_argument("-sdk_dir", type=str,
59 parser.add_argument("-clang_dir", type=str,
64 parser.add_argument("-cipd_cache_dir", type=str, default="/tmp", required=False,
66 parser.add_argument("-cipd_sdk_version", type=str, default="latest", required=False,
68 parser.add_argument("-cipd_clang_version", type=str, default="latest", required=False,
/third_party/rust/crates/serde/test_suite/tests/
H A Dtest_borrow.rs20 assert_de_tokens_error::<&str>( in test_borrowed_str_from_string()
28 assert_de_tokens_error::<&str>( in test_borrowed_str_from_str()
63 &("str", &b"bytes"[..]), in test_tuple()
66 Token::BorrowedStr("str"), in test_tuple()
77 bs: &'a str, in test_struct()
83 bs: "str", in test_struct()
92 Token::BorrowedStr("str"), in test_struct()
106 Str(&'a str), in test_field_identifier()
128 copied: Cow<'a, str>, in test_cow()
131 borrowed: Cow<'b, str>, in test_cow()
[all...]
/third_party/rust/crates/regex/bench/src/ffi/
H A Dpcre1.rs41 pub fn new(pattern: &str) -> Result<Regex, Error> { in new()
73 pub fn is_match(&self, text: &str) -> bool { in is_match()
77 pub fn find_iter<'r, 't>(&'r self, text: &'t str) -> FindMatches<'r, 't> { in find_iter()
81 fn find_at(&self, text: &str, start: usize) -> Option<(usize, usize)> { in find_at()
108 text: &'t str,
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksNetwork.cpp31 void StringToAddress (const string& str, string& host, int& port) in StringToAddress() argument
33 auto pos = str.find_last_of(':'); in StringToAddress()
36 host = str.c_str(); in StringToAddress()
41 host = str.substr(0, pos); in StringToAddress()
42 std::stringstream{str.substr(pos+1)} >> port; in StringToAddress()
/third_party/vk-gl-cts/framework/common/
H A DtcuStringTemplate.cpp42 StringTemplate::StringTemplate (const std::string& str) in StringTemplate() argument
44 setString(str); in StringTemplate()
55 void StringTemplate::setString (const std::string& str) in setString() argument
57 m_template = str; in setString()
146 return res.str(); in specialize()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeSha1.hpp41 static Sha1 parse (const std::string& str);
132 inline Sha1Stream& operator<< (Sha1Stream& stream, const std::string& str) in operator <<() argument
134 stream << (deUint64)str.size(); in operator <<()
135 stream.process(str.size(), str.c_str()); in operator <<()
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dglcpp-parse.y66 const char *str);
94 _token_create_str(glcpp_parser_t *parser, int type, char *str);
200 %type <str> IDENTIFIER FUNC_IDENTIFIER OBJ_IDENTIFIER INTEGER_STRING OTHER ERROR_TOKEN PRAGMA PATH INCLUDE
886 const char *str)
891 node->str = linear_strdup(parser->linalloc, str);
914 if (strcmp (node->str, member) == 0) {
935 if (strcmp (node->str, dup->str) == 0)
936 return node->str;
[all...]
/third_party/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_context.c143 const char *str, ...) in hud_draw_string()
151 va_start(ap, str); in hud_draw_string()
152 vsnprintf(buf, sizeof(buf), str, ap); in hud_draw_string()
332 char str[32]; in hud_pane_accumulate_vertices() local
348 pane->type, str); in hud_pane_accumulate_vertices()
349 hud_draw_string(hud, x, y, "%s", str); in hud_pane_accumulate_vertices()
358 number_to_human_readable(gr->current_value, pane->type, str); in hud_pane_accumulate_vertices()
359 hud_draw_string(hud, x, y, " %s: %s", gr->name, str); in hud_pane_accumulate_vertices()
406 char str[32]; in hud_pane_accumulate_vertices_simple() local
414 number_to_human_readable(gr->current_value, pane->type, str); in hud_pane_accumulate_vertices_simple()
142 hud_draw_string(struct hud_context *hud, unsigned x, unsigned y, const char *str, ...) hud_draw_string() argument
1085 read_pane_settings(char *str, unsigned * const x, unsigned * const y, unsigned * const width, unsigned * const height, uint64_t * const ceiling, boolean * const dyn_ceiling, boolean *reset_colors, boolean *sort_items) read_pane_settings() argument
[all...]
/third_party/gn/infra/recipe_modules/macos_sdk/
H A D__init__.py29 sdk_version=Single(str),
32 tool_pkg=Single(str),
33 tool_ver=Single(str),
/third_party/libunwind/libunwind/src/mi/
H A Dinit.c47 const char *str = getenv ("UNW_DEBUG_LEVEL"); in mi_init() local
49 if (str) in mi_init()
50 unwi_debug_level = atoi (str); in mi_init()
/third_party/mbedtls/programs/hash/
H A Dhello.c41 char str[] = "Hello, world!"; in main() local
43 mbedtls_printf("\n MD5('%s') = ", str); in main()
45 if ((ret = mbedtls_md5((unsigned char *) str, 13, digest)) != 0) { in main()
/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-2178.js23 regexPatternCharacters.forEach(function (str) {
24 assert(str.match(/[^>]/) == str);
/third_party/node/deps/v8/third_party/markupsafe/
H A D_compat.py16 text_type = str
17 string_types = (str,)
22 string_types = (str, unicode)

Completed in 11 milliseconds

1...<<51525354555657585960>>...371