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:pluginRegistry
(Results
1 - 10
of
10
) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeDotfield/src/
H
A
D
component_dll.cpp
232
PluginToken RegisterInterfaces(IPluginRegister&
pluginRegistry
)
in RegisterInterfaces()
argument
235
gPluginRegistry = &
pluginRegistry
;
in RegisterInterfaces()
238
pluginRegistry
.RegisterTypeInfo(info);
in RegisterInterfaces()
241
pluginRegistry
.RegisterTypeInfo(info);
in RegisterInterfaces()
244
pluginRegistry
.RegisterTypeInfo(info);
in RegisterInterfaces()
247
pluginRegistry
.RegisterTypeInfo(info);
in RegisterInterfaces()
249
pluginRegistry
.RegisterTypeInfo(RENDER_PLUGIN);
in RegisterInterfaces()
250
pluginRegistry
.RegisterTypeInfo(ECS_PLUGIN);
in RegisterInterfaces()
251
return &
pluginRegistry
;
in RegisterInterfaces()
256
auto&
pluginRegistry
in UnregisterInterfaces()
local
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/plugin/
H
A
D
static_plugin.cpp
99
extern "C" void InitRegistry(CORE_NS::IPluginRegister&
pluginRegistry
);
101
PluginToken RegisterInterfaces(IPluginRegister&
pluginRegistry
)
in RegisterInterfaces()
argument
103
InitRegistry(
pluginRegistry
);
in RegisterInterfaces()
104
pluginRegistry
.RegisterTypeInfo(ENGINE_PLUGIN);
in RegisterInterfaces()
106
return &
pluginRegistry
;
in RegisterInterfaces()
111
IPluginRegister*
pluginRegistry
= static_cast<IPluginRegister*>(token);
in UnregisterInterfaces()
local
112
pluginRegistry
->UnregisterTypeInfo(ENGINE_PLUGIN);
in UnregisterInterfaces()
H
A
D
dynamic_registry.cpp
34
extern "C" void InitRegistry(CORE_NS::IPluginRegister&
pluginRegistry
)
in InitRegistry()
argument
38
gPluginRegistry = &
pluginRegistry
;
in InitRegistry()
/foundation/graphic/graphic_3d/lume/LumeFont/src/plugin/
H
A
D
plugin.cpp
79
CORE_NS::PluginToken RegisterInterfaces(CORE_NS::IPluginRegister&
pluginRegistry
)
in RegisterInterfaces()
argument
81
gPluginRegistry = &
pluginRegistry
;
in RegisterInterfaces()
83
pluginRegistry
.RegisterTypeInfo(RENDER_PLUGIN);
in RegisterInterfaces()
84
return &
pluginRegistry
;
in RegisterInterfaces()
89
auto*
pluginRegistry
= static_cast<CORE_NS::IPluginRegister*>(token);
in UnregisterInterfaces()
local
90
pluginRegistry
->UnregisterTypeInfo(RENDER_PLUGIN);
in UnregisterInterfaces()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/plugin/
H
A
D
dynamic_registry.cpp
33
extern "C" void InitRegistry(CORE_NS::IPluginRegister&
pluginRegistry
)
in InitRegistry()
argument
37
gPluginRegistry = &
pluginRegistry
;
in InitRegistry()
H
A
D
static_plugin.cpp
312
void RegisterTypes(IPluginRegister&
pluginRegistry
)
in RegisterTypes()
argument
315
pluginRegistry
.RegisterTypeInfo(info);
in RegisterTypes()
318
pluginRegistry
.RegisterTypeInfo(info);
in RegisterTypes()
321
pluginRegistry
.RegisterTypeInfo(info);
in RegisterTypes()
324
pluginRegistry
.RegisterTypeInfo(info);
in RegisterTypes()
328
void UnregisterTypes(IPluginRegister&
pluginRegistry
)
in UnregisterTypes()
argument
331
pluginRegistry
.UnregisterTypeInfo(info);
in UnregisterTypes()
334
pluginRegistry
.UnregisterTypeInfo(info);
in UnregisterTypes()
337
pluginRegistry
.UnregisterTypeInfo(info);
in UnregisterTypes()
340
pluginRegistry
in UnregisterTypes()
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/src/
H
A
D
plugin.cpp
50
PluginToken RegisterInterfaces(IPluginRegister&
pluginRegistry
)
in RegisterInterfaces()
argument
54
g_pluginRegistry = &
pluginRegistry
;
in RegisterInterfaces()
H
A
D
object_registry.cpp
71
auto&
pluginRegistry
= CORE_NS::GetPluginRegister();
in ~ObjectRegistry()
local
73
const auto& types =
pluginRegistry
.GetTypeInfos(ObjectTypeInfo::UID);
in ~ObjectRegistry()
85
pluginRegistry
.UnregisterTypeInfo(*types[0]);
in ~ObjectRegistry()
96
auto&
pluginRegistry
= CORE_NS::GetPluginRegister();
in RegisterToPluginRegistry()
local
97
const auto& types =
pluginRegistry
.GetTypeInfos(ObjectTypeInfo::UID);
in RegisterToPluginRegistry()
104
pluginRegistry
.RegisterTypeInfo(info);
in RegisterToPluginRegistry()
109
auto&
pluginRegistry
= CORE_NS::GetPluginRegister();
in UnregisterFromPluginRegistry()
local
110
const auto& types =
pluginRegistry
.GetTypeInfos(ObjectTypeInfo::UID);
in UnregisterFromPluginRegistry()
114
pluginRegistry
.UnregisterTypeInfo(**it);
in UnregisterFromPluginRegistry()
/foundation/graphic/graphic_3d/lume/Lume_3D/src/
H
A
D
graphics_context.cpp
66
extern "C" void InitRegistry(CORE_NS::IPluginRegister&
pluginRegistry
);
488
void RegisterTypes(IPluginRegister&
pluginRegistry
);
489
void UnregisterTypes(IPluginRegister&
pluginRegistry
);
584
PluginToken RegisterInterfaces3D(IPluginRegister&
pluginRegistry
)
in RegisterInterfaces3D()
argument
586
InitRegistry(
pluginRegistry
);
in RegisterInterfaces3D()
587
pluginRegistry
.RegisterTypeInfo(RENDER_PLUGIN);
in RegisterInterfaces3D()
588
pluginRegistry
.RegisterTypeInfo(ECS_PLUGIN);
in RegisterInterfaces3D()
592
return &
pluginRegistry
;
in RegisterInterfaces3D()
597
IPluginRegister*
pluginRegistry
= static_cast<IPluginRegister*>(token);
in UnregisterInterfaces3D()
local
601
pluginRegistry
in UnregisterInterfaces3D()
[all...]
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H
A
D
component_dll.cpp
144
PluginToken RegisterInterfaces(IPluginRegister&
pluginRegistry
)
in RegisterInterfaces()
argument
148
gPluginRegistry = &
pluginRegistry
;
in RegisterInterfaces()
Completed in 7 milliseconds