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:cache
(Results
1 - 2
of
2
) sorted by relevance
/commonlibrary/rust/ylong_json/src/reader/
H
A
D
io_reader.rs
36
cache
: Option<Cache>,
39
// A simple
cache
implementation for `IoReader`.
41
cache
: Vec<u8>,
49
cache
: Vec::new(),
in new()
64
cache
: None,
92
if let Some(ref mut cacher) = self.
cache
{
in load()
93
cacher.
cache
.extend_from_slice(&self.buf[cacher.pre..]);
in load()
103
// Every time a user calls a
cache
-related interface, the
cache
content
106
if let Some(ref mut cacher) = self.
cache
{
in update_cache()
193
let mut
cache
= Cache::new();
start_caching()
variables
[all...]
H
A
D
slice_reader.rs
28
cache
: Option<Cache>, // A
cache
for storing accumulated characters.
31
// A simple
cache
implementation for `SliceReader`. We just need to save a
45
cache
: None,
107
self.
cache
= Some(Cache(self.index));
in start_caching()
112
self.
cache
.as_ref().map(|c| self.index - c.0)
in cached_len()
117
self.
cache
.as_ref().map(|c| &self.slice[c.0..self.index])
in cached_slice()
122
self.
cache
in cached_data()
129
self.
cache
= None;
in end_caching()
134
self.
cache
in take_cached_data()
[all...]
Completed in 1 milliseconds