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

/external/llvm/lib/Support/
H A DPath.cpp257 static StringRef getDirnameCharSep(StringRef path, const char *Sep) { argument
258 assert(Sep[0] != '\0' && Sep[1] == '\0' &&
259 "Sep must be a 1-character string literal.");
268 while (pos >= 0 && path[pos] == Sep[0])
272 return path[0] == Sep[0] ? Sep : ".";
277 while (i < pos && path[i] != Sep[0])
284 while (pos >= 0 && path[pos] != Sep[0])
288 while (pos >= 0 && path[pos] == Sep[
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp388 const char *NL, const char *Sep) const {
391 Mgr.getStoreManager().print(getStore(), Out, NL, Sep); local
456 Mgr.getConstraintManager().print(this, Out, NL, Sep);
459 Mgr.getOwningEngine()->printState(Out, this, NL, Sep);
H A DCheckerManager.cpp488 const char *NL, const char *Sep) {
491 I->second->printState(Out, State, NL, Sep);
486 runCheckersForPrintState(raw_ostream &Out, const ProgramState *State, const char *NL, const char *Sep) argument
H A DExprEngine.cpp190 const char *NL, const char *Sep) {
191 getCheckerManager().runCheckersForPrintState(Out, State, NL, Sep);
189 printState(raw_ostream &Out, const ProgramState *State, const char *NL, const char *Sep) argument

Completed in 143 milliseconds