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:ILibrary
(Results
1 - 11
of
11
) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/
H
A
D
intf_library.h
28
/**
ILibrary
*/
29
class
ILibrary
{
class
31
ILibrary
(const
ILibrary
& other) = delete;
32
ILibrary
& operator=(const
ILibrary
& other) = delete;
42
void operator()(
ILibrary
* ptr) const
in operator ()()
47
using Ptr = BASE_NS::unique_ptr<
ILibrary
, Deleter>;
50
static
ILibrary
::Ptr Load(const BASE_NS::string_view filepath);
53
ILibrary
()
[all...]
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/ohos/
H
A
D
library_ohos.cpp
62
ILibrary
::Ptr
ILibrary
::Load(const string_view filePath)
in Load()
73
return
ILibrary
::Ptr {};
in Load()
76
return
ILibrary
::Ptr { new LibraryOHOS(filePath) };
in Load()
79
string_view
ILibrary
::GetFileExtension()
in GetFileExtension()
H
A
D
library_ohos.h
24
class LibraryOHOS final : public
ILibrary
{
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/linux/
H
A
D
library_linux.cpp
62
ILibrary
::Ptr
ILibrary
::Load(const string_view filePath)
in Load()
64
return
ILibrary
::Ptr { new LibraryLinux(filePath) };
in Load()
67
string_view
ILibrary
::GetFileExtension()
in GetFileExtension()
H
A
D
library_linux.h
24
class LibraryLinux final : public
ILibrary
{
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/mac/
H
A
D
library_mac.cpp
62
ILibrary
::Ptr
ILibrary
::Load(const string_view filePath)
in Load()
64
return
ILibrary
::Ptr { new LibraryMac(filePath) };
in Load()
67
string_view
ILibrary
::GetFileExtension()
in GetFileExtension()
H
A
D
library_mac.h
24
class LibraryMac final : public
ILibrary
{
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/windows/
H
A
D
library_windows.cpp
75
ILibrary
::Ptr
ILibrary
::Load(const string_view filePath)
in Load()
77
return
ILibrary
::Ptr { new LibraryWindows(filePath) };
in Load()
80
string_view
ILibrary
::GetFileExtension()
in GetFileExtension()
H
A
D
library_windows.h
30
class LibraryWindows final : public
ILibrary
{
/foundation/graphic/graphic_3d/lume/LumeEngine/src/
H
A
D
plugin_registry.h
82
ILibrary
::Ptr library;
87
void RegisterPlugin(
ILibrary
::Ptr lib, const IPlugin& plugin, bool asDependency);
H
A
D
plugin_registry.cpp
104
ILibrary
::Ptr lib;
148
const auto libraryFileExtension =
ILibrary
::GetFileExtension();
in GatherDynamicPlugins()
155
if (
ILibrary
::Ptr lib =
ILibrary
::Load(absoluteFile); lib) {
in GatherDynamicPlugins()
571
void PluginRegistry::RegisterPlugin(
ILibrary
::Ptr lib, const IPlugin& plugin, bool asDependency)
in RegisterPlugin()
Completed in 4 milliseconds