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:FontRamAllocator
(Results
1 - 7
of
7
) sorted by relevance
/foundation/arkui/ui_lite/frameworks/font/
H
A
D
font_ram_allocator.h
25
class
FontRamAllocator
: public HeapBase {
class
28
FontRamAllocator
();
30
FontRamAllocator
(const
FontRamAllocator
&) = delete;
32
FontRamAllocator
& operator=(const
FontRamAllocator
&) = delete;
34
FontRamAllocator
(const
FontRamAllocator
&&) = delete;
36
FontRamAllocator
& operator=(const
FontRamAllocator
[all...]
H
A
D
font_ram_allocator.cpp
20
FontRamAllocator
::
FontRamAllocator
() : ramAddr_(0), ramLen_(0), currentRamAddr_(0), dynamicAddr_(0) {}
in FontRamAllocator()
function in OHOS::FontRamAllocator
21
FontRamAllocator
::~
FontRamAllocator
() {}
in ~FontRamAllocator()
23
void
FontRamAllocator
::SetRamAddr(uintptr_t ramAddr, uint32_t ramLen)
in SetRamAddr()
38
void*
FontRamAllocator
::Allocate(uint32_t size)
in Allocate()
57
uint32_t
FontRamAllocator
::GetRamUsedLen()
in GetRamUsedLen()
62
void
FontRamAllocator
::ClearRam()
in ClearRam()
71
void*
FontRamAllocator
::DynamicAllocate(uint32_t size)
in DynamicAllocate()
83
void
FontRamAllocator
[all...]
H
A
D
glyphs_cache.cpp
37
cacheStatus_ = reinterpret_cast<CacheState*>(
FontRamAllocator
::GetInstance().DynamicAllocate(sizeof(CacheState)));
in CacheInit()
48
nodeCache_ = reinterpret_cast<CacheType*>(
FontRamAllocator
::GetInstance().DynamicAllocate(sizeof(CacheType)));
in CacheInit()
H
A
D
ui_font_cache_manager.cpp
70
reinterpret_cast<uint8_t*>(
FontRamAllocator
::GetInstance().DynamicAllocate(bitmapCacheSize_));
in BitmapCacheInit()
H
A
D
glyphs_file.cpp
55
indexCache_ = reinterpret_cast<uint8_t*>(
FontRamAllocator
::GetInstance().Allocate(size));
in CacheInit()
161
fontHeaderCache_ = reinterpret_cast<FontHeader*>(
FontRamAllocator
::GetInstance().Allocate(size));
in SetFile()
H
A
D
ui_font_bitmap.cpp
390
FontRamAllocator
::GetInstance().SetRamAddr(psramAddr, psramLen);
in SetPsramMemory()
H
A
D
ui_font_vector.cpp
1069
FontRamAllocator
::GetInstance().SetRamAddr(psramAddr, psramLen);
in SetPsramMemory()
1075
FontRamAllocator
::GetInstance().ClearRam();
in SetCurrentLangId()
Completed in 5 milliseconds