Searched defs:Sep (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Support/
H A DPath.cpp250 static StringRef getDirnameCharSep(StringRef path, const char *Sep) { argument
251 assert(Sep[0] != '\0' && Sep[1] == '\0' &&
252 "Sep must be a 1-character string literal.");
261 while (pos >= 0 && path[pos] == Sep[0])
265 return path[0] == Sep[0] ? Sep : ".";
270 while (i < pos && path[i] != Sep[0])
277 while (pos >= 0 && path[pos] != Sep[0])
281 while (pos >= 0 && path[pos] == Sep[
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp589 const char *NL, const char *Sep) {
592 I->second->printState(Out, State, NL, Sep);
587 runCheckersForPrintState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) argument
H A DProgramState.cpp394 const char *NL, const char *Sep) const {
397 Mgr.getStoreManager().print(getStore(), Out, NL, Sep); local
400 Env.print(Out, NL, Sep);
403 Mgr.getConstraintManager().print(this, Out, NL, Sep);
406 Mgr.getOwningEngine()->printState(Out, this, NL, Sep);
418 const char *NL, const char *Sep) const {
H A DExprEngine.cpp194 const char *NL, const char *Sep) {
195 getCheckerManager().runCheckersForPrintState(Out, State, NL, Sep);
193 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) argument

Completed in 690 milliseconds