Home
last modified time | relevance | path

Searched refs:FileName (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/WellKnownTypes/
DSourceContext.cs84 public string FileName { property in Google.Protobuf.WellKnownTypes.SourceContext
104 if (FileName != other.FileName) return false; in Equals()
111 if (FileName.Length != 0) hash ^= FileName.GetHashCode(); in GetHashCode()
122 if (FileName.Length != 0) { in WriteTo()
124 output.WriteString(FileName); in WriteTo()
131 if (FileName.Length != 0) { in CalculateSize()
132 size += 1 + pb::CodedOutputStream.ComputeStringSize(FileName); in CalculateSize()
142 if (other.FileName.Length != 0) { in MergeFrom()
143 FileName = other.FileName; in MergeFrom()
156 FileName = input.ReadString(); in MergeFrom()
/frameworks/rs/rsov/compiler/
Drs2spirv.cpp57 static std::string removeExt(const std::string &FileName) { in removeExt() argument
58 size_t Pos = FileName.find_last_of("."); in removeExt()
60 return FileName.substr(0, Pos); in removeExt()
61 return FileName; in removeExt()
/frameworks/base/cmds/statsd/src/storage/
DStorageManager.cpp59 struct FileName { struct
82 static void parseFileName(char* name, FileName* output) { in parseFileName()
374 FileName output; in sendBroadcast()
400 FileName output; in hasConfigMetricsReport()
422 FileName output; in appendConfigMetricsReport()
484 FileName output; in readConfigFromDisk()
593 FileName output; in trimToFit()
651 FileName output; in printDirStats()
/frameworks/base/core/java/com/android/server/
DDropboxLogTags.logtags12 81002 dropbox_file_copy (FileName|3),(Size|1),(Tag|3)
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
DJsonFormatterTest.cs463 var message = new SourceContext { FileName = "foo.proto" }; in SourceContextStandalone()
DJsonParserTest.cs85 AssertRoundtrip(new SourceContext { FileName = "foo.proto" }); in SourceContextRoundtrip()
/frameworks/compile/slang/
Dslang_rs_reflection.cpp2997 std::string FileName = ClassName + ".java"; in startClass() local
2998 if (!mOut.startFile(mOutputDirectory, FileName, mRSSourceFileName, in startClass()