Searched refs:ext (Results 1 – 11 of 11) sorted by relevance
/build/soong/common/ |
D | paths.go | 94 genPathWithExt(ctx AndroidModuleContext, ext string) ModuleGenPath 97 objPathWithExt(ctx AndroidModuleContext, subdir, ext string) ModuleObjPath 105 func GenPathWithExt(ctx AndroidModuleContext, p Path, ext string) ModuleGenPath { 107 return path.genPathWithExt(ctx, ext) 115 func ObjPathWithExt(ctx AndroidModuleContext, p Path, subdir, ext string) ModuleObjPath { 117 return path.objPathWithExt(ctx, subdir, ext) 531 func (p ModuleSrcPath) genPathWithExt(ctx AndroidModuleContext, ext string) ModuleGenPath { 532 return PathForModuleGen(ctx, p.moduleDir, pathtools.ReplaceExtension(p.path, ext)) 535 func (p ModuleSrcPath) objPathWithExt(ctx AndroidModuleContext, subdir, ext string) ModuleObjPath { 536 return PathForModuleObj(ctx, subdir, p.moduleDir, pathtools.ReplaceExtension(p.path, ext)) [all …]
|
/build/tools/zipalign/ |
D | ZipAlign.cpp | 55 const char* ext = strrchr(pEntry->getFileName(), '.'); in getAlignment() local 56 if (ext && strcmp(ext, ".so") == 0) { in getAlignment()
|
/build/target/product/ |
D | runtime_libart.mk | 35 ext \
|
D | core_tiny.mk | 93 ext \
|
D | core_minimal.mk | 96 ext \
|
/build/core/tasks/check_boot_jars/ |
D | package_whitelist.txt | 105 org\.xml\.sax\.ext 121 # ext.jar
|
/build/core/ |
D | definitions.mk | 1498 ext=$$subdir/; \ 1502 ext=; \ 1504 $($(PRIVATE_2ND_ARCH_VAR_PREFIX)TARGET_AR) p $$lib_to_include $$f > $$ldir/$$ext$$f; \ 1505 filelist="$$filelist $$ldir/$$ext$$f"; \ 1552 ext=$$subdir/; \ 1556 ext=; \ 1558 … $($(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)AR) p $$lib_to_include $$f > $$ldir/$$ext$$f; \ 1559 filelist="$$filelist $$ldir/$$ext$$f"; \
|
D | droiddoc.mk | 79 LOCAL_JAVA_LIBRARIES := core-oj core-libart ext framework $(LOCAL_JAVA_LIBRARIES)
|
/build/tools/releasetools/ |
D | common.py | 1240 ext = os.path.splitext(tf.name)[1] 1241 diff_program = DIFF_PROGRAM_BY_EXT.get(ext, "bsdiff") 1246 ext = os.path.splitext(tf.name)[1]
|
D | pylintrc | 351 ext-import-graph=
|
/build/soong/cc/ |
D | cc.go | 2027 ext string, version string) common.Path { 2033 return dir.Join(ctx, name+ext)
|