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:bytestring
(Results
1 - 8
of
8
) sorted by relevance
/third_party/python/Lib/test/test_email/
H
A
D
__init__.py
51
def _bytes_msg(self,
bytestring
, message=None, policy=None):
56
return email.message_from_bytes(
bytestring
, message, policy=policy)
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H
A
D
constant-evaluate.h
20
const char*
bytestring
= "Foo";
variable
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/
H
A
D
constant-evaluate.rs
24
pub const
bytestring
: &[u8; 4usize] = b"Foo\0";
consts
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/
H
A
D
constant-evaluate.rs
24
pub const
bytestring
: &[u8; 4usize] = b"Foo\0";
consts
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
H
A
D
basic.rb
628
bytestring
= ["FFFF"].pack("H*")
629
m[
bytestring
] = 1
633
bytestring
= ["FFFF"].pack("H*")
634
m[
bytestring
] = 1
/third_party/protobuf/ruby/tests/
H
A
D
common_tests.rb
499
bytestring
= ["FFFF"].pack("H*")
500
m[
bytestring
] = 1
504
bytestring
= ["FFFF"].pack("H*")
505
m[
bytestring
] = 1
/third_party/python/Lib/test/
H
A
D
test_codecs.py
114
# get a StreamReader for the encoding and feed the
bytestring
version
1122
bytestring
= codecs.BOM_UTF8 + b"ABC\xC2\xA1\xE2\x88\x80XYZ"
1127
istream = reader(io.BytesIO(
bytestring
))
1144
bytestring
= b"ABC\xC2\xA1\xE2\x88\x80XYZ"
1149
istream = reader(io.BytesIO(
bytestring
))
H
A
D
pickletester.py
2905
# Yield buffer-like objects with the
bytestring
"abcdef" in them
2906
bytestring
= b"abcdefgh"
2907
yield ZeroCopyBytes(
bytestring
)
2908
yield ZeroCopyBytearray(
bytestring
)
2910
items = list(
bytestring
)
2911
value = int.from_bytes(
bytestring
, byteorder='little')
Completed in 15 milliseconds