Searched refs:baseName (Results 1 – 7 of 7) sorted by relevance
/hardware/google/gfxstream/codegen/generic-apigen/ |
D | main.cpp | 93 std::string baseName = std::string(argv[optind]); in main() local 94 ApiGen apiEntries(baseName); in main() 97 std::string typesFilename = inDir + "/" + baseName + TYPES_EXTENTION; in main() 103 std::string filename = inDir + "/" + baseName + SPEC_EXTENSION; in main() 111 apiEntries.genAttributesTemplate(inDir + "/" + baseName + ATTRIB_EXTENSION); in main() 115 std::string attribFileName = inDir + "/" + baseName + ATTRIB_EXTENSION; in main() 124 apiEntries.genOpcodes(encoderDir + "/" + baseName + "_opcodes.h"); in main() 125 … apiEntries.genContext(encoderDir + "/" + baseName + "_client_context.h", ApiGen::CLIENT_SIDE); in main() 126 …apiEntries.genContextImpl(encoderDir + "/" + baseName + "_client_context.cpp", ApiGen::CLIENT_SIDE… in main() 128 … apiEntries.genProcTypes(encoderDir + "/" + baseName + "_client_proc.h", ApiGen::CLIENT_SIDE); in main() [all …]
|
/hardware/google/aemu/base/include/aemu/base/files/ |
D | PathUtils.h | 129 static std::string toExecutableName(const char* baseName, HostType hostType); 131 static std::string toExecutableName(const char* baseName) { in toExecutableName() argument 132 return toExecutableName(baseName, HOST_TYPE); in toExecutableName() 230 std::string* baseName); 235 std::string* baseName) { in split() argument 236 return split(path, HOST_TYPE, dirName, baseName); in split()
|
/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/ |
D | GLESmacros.h | 18 std::string baseName; \ 19 android::base::PathUtils::split(std::string(__FILE__), NULL, &baseName); \ 21 group, baseName.r() + ":" + func); \
|
/hardware/google/aemu/base/ |
D | PathUtils.cpp | 42 std::string PathUtils::toExecutableName(const char* baseName, in toExecutableName() argument 44 return static_cast<std::string>(baseName).append( in toExecutableName() 149 std::string* baseName) { in split() argument 172 if (baseName) { in split() 173 *baseName = path + pos; in split() 186 if (baseName) { in split() 187 *baseName = path + prefixLen; in split()
|
/hardware/google/gfxstream/host/tests/ |
D | GLSnapshotPrograms_unittest.cpp | 235 std::string baseName = in getProgramState() local 240 baseName + '[' + std::to_string(uniformValueIndex) + in getProgramState() 316 std::string baseName; in getUniformBaseName() local 322 baseName = name.substr(0, lastBracket); in getUniformBaseName() 324 baseName = name; in getUniformBaseName() 326 return baseName; in getUniformBaseName()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/common/ |
D | codegen.py | 143 baseName = self.basename 144 joined = os.path.join(dirName, baseName) 151 baseName = Path(self.basename) 152 joined = PurePosixPath(dirName / baseName) 199 baseName = self.basename 200 joined = os.path.join(dirName, baseName) 209 baseName = self.basename 210 joined = os.path.join(dirName, baseName)
|
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/ |
D | ProgramData.cpp | 203 std::string baseName; in getBaseName() local 207 baseName = name.substr(0, length - 3); in getBaseName() 209 baseName = name; in getBaseName() 211 return baseName; in getBaseName() 238 std::string baseName = getBaseName(std::string(name.data())); in collectUniformInfo() local 241 oss << baseName << '[' << arrayIndex << ']'; in collectUniformInfo()
|