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:elem
(Results
1 - 4
of
4
) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/decode/
H
A
D
part.rs
109
let (
elem
, rest) = self.headers_decoder.decode(buf)?;
in headers_decode()
110
if let TokenStatus::Complete(headers) =
elem
{
193
let (
elem
, rest) = decoder.decode(buf).unwrap();
in ut_mime_part_decoder_new_by_crlf()
194
assert!(
elem
.is_complete());
in ut_mime_part_decoder_new_by_crlf()
196
if let TokenStatus::Complete(part) =
elem
{
in ut_mime_part_decoder_new_by_crlf()
205
let (
elem
, rest) = decoder.decode(buf).unwrap();
in ut_mime_part_decoder_new_by_crlf()
206
assert!(
elem
.is_complete());
in ut_mime_part_decoder_new_by_crlf()
208
if let TokenStatus::Complete(part) =
elem
{
in ut_mime_part_decoder_new_by_crlf()
217
let (
elem
, rest) = decoder.decode(buf).unwrap();
in ut_mime_part_decoder_new_by_crlf()
218
assert!(
elem
in ut_mime_part_decoder_new_by_crlf()
[all...]
H
A
D
multi.rs
41
/// let (
elem
, rest) = decoder.decode(buf).unwrap();
42
/// assert!(
elem
.is_complete());
54
/// if let TokenStatus::Complete(multi) =
elem
{
102
/// let (
elem
, rest) = decoder.decode(buf).unwrap();
103
/// assert!(
elem
.is_complete());
109
/// if let TokenStatus::Complete(multi) =
elem
{
157
let (
elem
, rest) = headers_decoder.decode(buf)?;
in unknown_decode()
158
match
elem
{
202
let (
elem
, rest) = part_decoder.decode(buf)?;
in part_decode()
203
match
elem
{
[all...]
/commonlibrary/c_utils/base/include/
H
A
D
safe_block_queue.h
56
* @param
elem
Indicates the element to insert.
58
virtual void Push(T const&
elem
)
in Push()
argument
67
queueT_.push(
elem
);
in Push()
89
T
elem
= queueT_.front();
in Pop()
local
92
return
elem
;
in Pop()
103
* @param
elem
Indicates the element to insert.
105
virtual bool PushNoWait(T const&
elem
)
in PushNoWait()
argument
112
queueT_.push(
elem
);
in PushNoWait()
192
virtual void Push(T const&
elem
)
in Push()
argument
202
queueT_.push(
elem
);
in Push()
215
PushNoWait(T const&
elem
)
PushNoWait()
argument
[all...]
/commonlibrary/ets_utils/js_concurrent_module/common/helper/
H
A
D
path_helper.h
149
std::string
elem
= entryPoint.substr(prev, curr - prev);
in NormalizePath()
local
150
if (
elem
== DOUBLE_POINT_TAG && entryPoint.at(curr) == SLASH_TAG
in NormalizePath()
153
} else if (
elem
!= POINT_TAG &&
elem
!= DOUBLE_POINT_TAG) { // remove ./
in NormalizePath()
154
elems.push_back(
elem
);
in NormalizePath()
Completed in 3 milliseconds