/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_config.py | 55 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/ |
D | SkFontDescriptor.cpp | 31 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/ |
D | SkFontDescriptor.cpp | 31 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/ |
D | inode01.c | 91 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()
|
D | inode02.c | 74 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/ |
D | test_configparser.py | 65 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/ |
D | decode_alltypes_callback.c | 58 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/ |
D | decode_alltypes_callback.c | 58 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/ |
D | bytebuffer_unittest.cc | 167 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/ |
D | zstream_test.cpp | 14 char *x = read_string(in), *y = new char[256], z[256]; in main()
|
D | zstream.h | 145 inline char* read_string(izstream& zs) { in read_string() function
|
/external/nanopb-c/tests/alltypes_proto3_callback/ |
D | decode_alltypes_callback.c | 58 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/ |
D | llex.c | 366 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/ |
D | configparser.rst | 508 >>> 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/ |
D | configparser.py | 719 def read_string(self, string, source='<string>'): member in RawConfigParser
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 2138 >>> parser.read_string(""" 2176 >>> parser.read_string("""
|
D | 3.5.rst | 1004 >>> cfg.read_string("""
|
/external/python/cpython3/Misc/ |
D | HISTORY | 12539 - Issue #9452: Add read_file, read_string, and read_dict to the configparser
|