HomeSort by relevance Sort by last modified time
    Searched refs:rsFileName (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/slang/
slang_rs_reflect_utils.h 31 // rsFileName: the original .rs file name (with or without path).
40 const char *rsFileName;
64 // E.g. with rsFileName=./foo/bar/my-Renderscript_file.rs it returns
66 // rsFileName: the input .rs file name (with or without path).
67 static std::string JavaClassNameFromRSFileName(const char *rsFileName);
75 // E.g. with rsFileName=./foo/bar/my-Renderscript_file.rs it returns
77 // rsFileName: the input .rs file name (with or without path).
78 static std::string BCFileNameFromRSFileName(const char *rsFileName);
82 // E.g. with rsFileName=./foo/bar/my-Renderscript_file.rs it returns
84 // rsFileName: the input .rs file name (with or without path)
    [all...]
slang_rs_reflect_utils.cpp 69 static string InternalFileNameConvert(const char *rsFileName, bool toLower) {
70 const char *dot = rsFileName + strlen(rsFileName);
72 while (slash >= rsFileName) {
99 RSSlangReflectUtils::JavaClassNameFromRSFileName(const char *rsFileName) {
100 return InternalFileNameConvert(rsFileName, false);
103 std::string RootNameFromRSFileName(const std::string &rsFileName) {
104 return InternalFileNameConvert(rsFileName.c_str(), false);
108 RSSlangReflectUtils::BCFileNameFromRSFileName(const char *rsFileName) {
109 return InternalFileNameConvert(rsFileName, true)
    [all...]
slang.cpp 460 BCAccessorContext.rsFileName = getInputFileName().c_str();

Completed in 86 milliseconds