Lines Matching refs:name
47 function checkoutLibName(name) {//比如/home/libabc.so,返回["dynamic",abc] argument
48 let pn = path.parse(name);
121 staticTargets.push(t.path + ":" + t.name);
125 dynamicTargets.push(t.path + ":" + t.name);
129 executableTargets.push(t.path + ":" + t.name);
245 name: targetName[1] property
265 static genDetail(name, detail) { argument
275 `.format(name, ss)
283 static searchLib(name, genList) { argument
287 if (gen.target == name) {
358 static collectFromGList(name, genList, collectDetails) {//获取依赖 argument
359 if (name.endsWith('.a') || name.endsWith('.so') || name.indexOf('.so.') > 0) {
360 let dep = GenerateGn.searchLib(name, genList);
365 collectDetails.deps.add(name);
369 if (name.endsWith('.c')) {
370 collectDetails.sources.add(name);
375 if (name.endsWith(gen.target)) {