OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:moduledir
(Results
1 - 11
of
11
) sorted by null
/development/tools/idegen/src/com/android/idegen/
ModuleCache.java
54
public Module getAndCacheByDir(File
moduleDir
) throws IOException {
55
Preconditions.checkNotNull(
moduleDir
);
57
if (
moduleDir
.exists()) {
58
Module module = getModule(
moduleDir
);
60
module = new Module(
moduleDir
);
62
putModule(
moduleDir
, module);
82
private void putModule(File
moduleDir
, Module module) throws IOException {
83
modulesByPath.put(
moduleDir
.getCanonicalPath(), module);
86
private Module getModule(File
moduleDir
) throws IOException {
87
return modulesByPath.get(
moduleDir
.getCanonicalPath())
[
all
...]
FrameworkModule.java
34
public FrameworkModule(File
moduleDir
) throws IOException {
35
super(Preconditions.checkNotNull(
moduleDir
), false);
Module.java
91
public Module(File
moduleDir
) throws IOException {
92
this(
moduleDir
, true);
95
public Module(File
moduleDir
, boolean parseMakeFileForSource) throws IOException {
96
this.moduleRoot = Preconditions.checkNotNull(
moduleDir
);
97
this.makeFile = new File(
moduleDir
, "Android.mk");
229
String
moduleDir
= getDir().getCanonicalPath();
235
String relative = src.getCanonicalPath().substring(
moduleDir
.length());
246
String relative = src.getCanonicalPath().substring(
moduleDir
.length());
265
imlFile = new File(
moduleDir
, getName() + ".iml");
IntellijProject.java
70
for (String
moduleDir
: moduleDirs) {
72
File dir = new File(repoRoot,
moduleDir
);
74
logger.info("Directory " +
moduleDir
+ " does not exist in " + repoRoot +
ModuleIndexes.java
87
//moduleNameToMakeFileMap.put(getAggregateName(
moduleDir
), makeFile);
/hardware/intel/common/libva/
libva.spec
1
#%define
moduledir
%(pkg-config xorg-server --variable=
moduledir
)
/external/mesa3d/src/gbm/main/
backend.c
69
snprintf(path, sizeof path,
MODULEDIR
"/%s", name);
/prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar
/external/clang/lib/Serialization/
ASTReader.cpp
[
all
...]
/prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar
/prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar
Completed in 576 milliseconds