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 34 // rsFileName: the original .rs file name (with or without path).
40 const char *rsFileName;
62 // E.g. with rsFileName=./foo/bar/my-Renderscript_file.rs it returns
64 // rsFileName: the input .rs file name (with or without path).
65 static std::string JavaClassNameFromRSFileName(const char *rsFileName);
73 // E.g. with rsFileName=./foo/bar/my-Renderscript_file.rs it returns
75 // rsFileName: the input .rs file name (with or without path).
76 static std::string BCFileNameFromRSFileName(const char *rsFileName);
slang_rs_reflect_utils.cpp 66 static string InternalFileNameConvert(const char *rsFileName, bool toLower) {
67 const char *dot = rsFileName + strlen(rsFileName);
69 while (slash >= rsFileName) {
96 const char *rsFileName) {
97 return InternalFileNameConvert(rsFileName, false);
102 const char *rsFileName) {
103 return InternalFileNameConvert(rsFileName, true);
110 fprintf(pfout, " * The source Renderscript file: %s\n", context.rsFileName);
248 string clazz_name(JavaClassNameFromRSFileName(context.rsFileName));
    [all...]
slang_rs.cpp 92 BCAccessorContext.rsFileName = getInputFileName().c_str();

Completed in 45 milliseconds