Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:from_reader
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/rust/ylong_json/src/
H
A
D
lib.rs
83
pub use deserializer::{
from_reader
, from_slice, from_str};
H
A
D
value.rs
683
Self::
from_reader
(&mut file)
in fmt()
695
/// let value = JsonValue::
from_reader
(&mut file).unwrap();
in fmt()
697
pub fn
from_reader
<R: Read>(input: R) -> Result<Self, Error> {
in fmt()
functions
1747
/// UT test for `JsonValue::
from_reader
`.
1753
/// 1. Calls `JsonValue::
from_reader
` to create some `JsonValue`.
1765
assert!(JsonValue::
from_reader
(TestErrorIo).is_err());
in ut_json_value_from_reader()
/commonlibrary/rust/ylong_http/ylong_http/tests/
H
A
D
sdv_http_body.rs
53
/// 1. Creates a `ChunkBody` by calling `ChunkBody::
from_reader
`.
61
let mut body = ChunkBody::
from_reader
(content.as_slice());
in sdv_chunk_body_encode()
/commonlibrary/rust/ylong_http/ylong_http/src/body/
H
A
D
text.rs
56
/// let body = TextBody::
from_reader
(reader.as_bytes());
157
/// let body = TextBody::
from_reader
(reader.as_bytes());
159
pub fn
from_reader
(reader: T) -> Self {
in from_reader()
functions
466
/// UT test cases for `TextBody::
from_reader
`.
469
/// 1. Calls `TextBody::
from_reader
()` to create a `TextBody`.
473
let _body = TextBody::
from_reader
(reader);
in ut_text_body_from_reader()
560
let mut body = TextBody::
from_reader
(reader);
in ut_text_body_from_reader_syn_data()
H
A
D
chunk.rs
151
/// let task = ChunkBody::
from_reader
("".as_bytes());
153
pub fn
from_reader
(reader: T) -> Self {
in from_reader()
functions
1514
/// 1. Creates a `ChunkBody` by calling `ChunkBody::
from_reader
`.
1520
let mut task = ChunkBody::
from_reader
(content.as_slice());
in ut_chunk_body_encode_1()
Completed in 7 milliseconds