Searched refs:NewLine (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/sys/contrib/dev/acpica/compiler/
H A Ddtparser.l62 NewLine [\n]
93 {NewLine} return (EXPOP_NEW_LINE);
H A Dprparser.l73 NewLine [\n]
110 {NewLine} return (EXPOP_NEW_LINE);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/
H A DFormatToken.cpp59 bool NewLine = false; local
73 NewLine = true;
77 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces);
H A DFormat.cpp677 /// inserting a newline dependent on the \c NewLine.
679 StateNode(const LineState &State, bool NewLine, StateNode *Previous) argument
680 : State(State), NewLine(NewLine), Previous(Previous) {}
682 bool NewLine; member in struct:clang::format::__anon3275::UnwrappedLineFormatter::StateNode
858 addNextStateToQueue(Penalty, Node, /*NewLine=*/false, &Count, &Queue);
860 addNextStateToQueue(Penalty, Node, /*NewLine=*/true, &Count, &Queue);
890 formatChildren(State, (*I)->NewLine, /*DryRun=*/false, Penalty);
891 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);
894 if ((*I)->NewLine) {
907 addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode, bool NewLine, unsigned *Count, QueueType *Queue) argument
945 formatChildren(LineState &State, bool NewLine, bool DryRun, unsigned &Penalty) argument
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp273 unsigned NewLine = UserLoc.getLine(); local
284 // off by one. We can do better by simply incrementing NewLine here.
285 NewLine += 1;
288 CurLine = NewLine;
/freebsd-10-stable/contrib/llvm/lib/IR/
H A DAsmWriter.cpp1294 size_t NewLine = Asm.find_first_of('\n', CurPos); local
1296 while (NewLine != std::string::npos) {
1300 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1303 CurPos = NewLine+1;
1304 NewLine = Asm.find_first_of('\n', CurPos);

Completed in 79 milliseconds