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:base64data
(Results
1 - 1
of
1
) sorted by relevance
/base/global/resource_management/frameworks/resmgr/src/utils/
H
A
D
utils.cpp
100
std::string
base64data
;
in EncodeBase64()
local
101
base64data
+= "data:image/" + imgType + ";base64,";
in EncodeBase64()
108
base64data
+= g_codes[byte1 >> BitOperatorNum::BIT_TWO];
in EncodeBase64()
109
base64data
+= g_codes[((byte1 & 0x3) << BitOperatorNum::BIT_FOUR) | (byte2 >> BitOperatorNum::BIT_FOUR)];
in EncodeBase64()
110
base64data
+= g_codes[((byte2 & 0xF) << BitOperatorNum::BIT_TWO) | (byte3 >> BitOperatorNum::BIT_SIX)];
in EncodeBase64()
111
base64data
+= g_codes[byte3 & 0x3F];
in EncodeBase64()
115
dstData =
base64data
;
in EncodeBase64()
122
base64data
+= g_codes[byte1 >> BitOperatorNum::BIT_TWO];
in EncodeBase64()
123
base64data
+= g_codes[(byte1 & 0x3) << BitOperatorNum::BIT_FOUR];
in EncodeBase64()
124
base64data
in EncodeBase64()
[all...]
Completed in 1 milliseconds