OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Plugins
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Support/
PluginLoader.cpp
23
static ManagedStatic<std::vector<std::string> >
Plugins
;
33
Plugins
->push_back(Filename);
39
return
Plugins
.isConstructed() ?
Plugins
->size() : 0;
44
assert(
Plugins
.isConstructed() && num <
Plugins
->size() &&
46
return (*
Plugins
)[num];
/external/chromium_org/chrome/test/pyautolib/
plugins_info.py
5
"""Python representation for Chromium
Plugins
info.
7
This is the info available at about:
plugins
.
13
info = self.GetPluginsInfo() # fetch
plugins
snapshot
14
print info.
Plugins
()
16
See more examples in chrome/test/functional/
plugins
.py.
25
"""Represent info for Chromium
plugins
.
44
def
Plugins
(self):
45
"""Get
plugins
.
48
a list of
plugins
info
73
return self.pluginsdict.get('
plugins
', [])
[
all
...]
/external/chromium_org/tools/cr/cr/
plugin.py
7
This holds the Plugin class and supporting code, that controls how
plugins
are
10
discover
plugins
as they are loaded.
33
# Holds detected values for active
plugins
.
35
# Holds overrides, used in custom setup
plugins
.
59
"""Manages the list of active
plugins
for command line options.
61
Looks like a simple iterable, but it can change as the underlying
plugins
66
# If this is True, all DynamicChoices only return active
plugins
.
67
# If false, all
plugins
are included.
77
return [p.name for p in self.cls.
Plugins
()].__iter__()
221
"""Returns all enabled
plugins
of type cls, in undefined order.""
[
all
...]
/external/clang/include/clang/Frontend/
FrontendOptions.h
198
/// Args to pass to the additional
plugins
201
/// The list of
plugins
to load.
202
std::vector<std::string>
Plugins
;
/external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp
144
ArrayRef<std::string>
Plugins
;
172
ArrayRef<std::string>
plugins
)
174
Ctx(0), PP(pp), OutDir(outdir), Opts(opts),
Plugins
(
plugins
) {
268
checkerMgr.reset(createCheckerManager(*Opts, PP.getLangOpts(),
Plugins
,
669
ArrayRef<std::string>
plugins
) {
673
return new AnalysisConsumer(pp, outDir, opts,
plugins
);
Completed in 75 milliseconds