Home
last modified time | relevance | path

Searched refs:read_string (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_config.py55 parser.read_string(self.config)
76 parser.read_string(self.config)
228 conf.defaultCfg[ctype].read_string(self.config_string[ctype])
230 conf.userCfg[ctype].read_string(self.config_string[ctype])
432 userextn.read_string('''
457 userextn.read_string('''
467 userextn.read_string('''
479 userextn.read_string('''
621 usermain.read_string('''
637 usermain.read_string('''
[all …]
/external/skia/src/core/
DSkFontDescriptor.cpp31 static bool SK_WARN_UNUSED_RESULT read_string(SkStream* stream, SkString* string) { in read_string() function
72 if (!read_string(stream, &result->fFamilyName)) { return false; } in Deserialize()
75 if (!read_string(stream, &result->fFullName)) { return false; } in Deserialize()
78 if (!read_string(stream, &result->fPostscriptName)) { return false; } in Deserialize()
/external/skqp/src/core/
DSkFontDescriptor.cpp31 static bool SK_WARN_UNUSED_RESULT read_string(SkStream* stream, SkString* string) { in read_string() function
72 if (!read_string(stream, &result->fFamilyName)) { return false; } in Deserialize()
75 if (!read_string(stream, &result->fFullName)) { return false; } in Deserialize()
78 if (!read_string(stream, &result->fPostscriptName)) { return false; } in Deserialize()
/external/ltp/testcases/kernel/fs/inode/
Dinode01.c91 char read_string[PATH_STRING_LENGTH + 1]; variable
520 read(file_id, read_string, len); in check()
528 read_string[len] = '\0'; in check()
529 val = strcmp(read_string, path_string); in check()
534 read_string); in check()
Dinode02.c74 char read_string[PATH_STRING_LENGTH + 1]; variable
622 read(file_id, read_string, len); in check()
629 read_string[len] = '\0'; in check()
630 val = strcmp(read_string, path_string); in check()
635 read_string); in check()
/external/python/cpython3/Lib/test/
Dtest_configparser.py65 cf.read_string(string)
332 cf.read_string(textwrap.dedent("""\
338 cf.read_string(textwrap.dedent("""\
345 cf.read_string(textwrap.dedent("""\
351 cf.read_string(textwrap.dedent("""\
622 cf.read_string(textwrap.dedent("""\
871 cf.read_string(invalid)
1005 self.assertIsNone(cf.read_string(""))
1012 cf.read_string(self.ini)
1165 cf.read_string(string)
[all …]
/external/nanopb-c/tests/alltypes_callback/
Ddecode_alltypes_callback.c58 static bool read_string(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_string() function
275 alltypes.req_string.funcs.decode = &read_string; in check_alltypes()
278 alltypes.req_bytes.funcs.decode = &read_string; in check_alltypes()
390 alltypes.opt_string.funcs.decode = &read_string; in check_alltypes()
393 alltypes.opt_bytes.funcs.decode = &read_string; in check_alltypes()
/external/grpc-grpc/third_party/nanopb/tests/alltypes_callback/
Ddecode_alltypes_callback.c58 static bool read_string(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_string() function
269 alltypes.req_string.funcs.decode = &read_string; in check_alltypes()
272 alltypes.req_bytes.funcs.decode = &read_string; in check_alltypes()
384 alltypes.opt_string.funcs.decode = &read_string; in check_alltypes()
387 alltypes.opt_bytes.funcs.decode = &read_string; in check_alltypes()
/external/webrtc/webrtc/base/
Dbytebuffer_unittest.cc167 std::string read_string; in TEST() local
168 EXPECT_TRUE(buffer.ReadString(&read_string, write_string.size())); in TEST()
169 EXPECT_EQ(write_string, read_string); in TEST()
/external/zlib/src/contrib/iostream2/
Dzstream_test.cpp14 char *x = read_string(in), *y = new char[256], z[256]; in main()
Dzstream.h145 inline char* read_string(izstream& zs) { in read_string() function
/external/nanopb-c/tests/alltypes_proto3_callback/
Ddecode_alltypes_callback.c58 static bool read_string(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_string() function
324 alltypes.sng_string.funcs.decode = &read_string; in check_alltypes()
327 alltypes.sng_bytes.funcs.decode = &read_string; in check_alltypes()
/external/lua/src/
Dllex.c366 static void read_string (LexState *ls, int del, SemInfo *seminfo) { in read_string() function
503 read_string(ls, ls->current, seminfo); in llex()
/external/python/cpython3/Doc/library/
Dconfigparser.rst508 >>> config.read_string(sample_config)
557 >>> parser.read_string("""
597 :meth:`read_string` or :meth:`read_dict`). It is recommended to use strict
713 >>> typical.read_string(config)
720 >>> custom.read_string(config)
745 >>> typical.read_string(config)
750 >>> custom.read_string(config)
1016 .. method:: read_string(string, source='<string>')
/external/python/cpython3/Lib/
Dconfigparser.py719 def read_string(self, string, source='<string>'): member in RawConfigParser
/external/python/cpython3/Doc/whatsnew/
D3.2.rst2138 >>> parser.read_string("""
2176 >>> parser.read_string("""
D3.5.rst1004 >>> cfg.read_string("""
/external/python/cpython3/Misc/
DHISTORY12539 - Issue #9452: Add read_file, read_string, and read_dict to the configparser