Lines Matching defs:fpnp
115 String CppCodeEmitter::GetFilePath(const String& fpnp)
117 int pos = fpnp.IndexOf("..");
121 String res = fpnp.Substring(0, pos + 1);
125 String CppCodeEmitter::GetFilePathNoPoint(const String& fpnp)
127 int pos = fpnp.IndexOf("..");
131 String res = fpnp.Substring(0, pos);
135 String CppCodeEmitter::GetNamespace(const String& fpnp)
137 int pos = fpnp.IndexOf("..");
139 return fpnp;
141 String res = fpnp.Substring(pos + 2);