Searched refs:NL (Results 1 - 25 of 91) sorted by relevance

1234

/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DDynamicType.cpp193 const char *NL, unsigned int Space, bool IsDot) {
198 const char *NL, unsigned int Space, bool IsDot) {
203 const char *NL, unsigned int Space, bool IsDot) {
219 const char *NL, unsigned int Space, bool IsDot) {
227 const char *NL, unsigned int Space, bool IsDot) {
228 printJson(Pair.first, Out, NL, Space, IsDot) << ", ";
229 return printJson(Pair.second, Out, NL, Space, IsDot);
234 raw_ostream &Out, const char *NL,
241 Out << '[' << NL; local
246 printJson(Element, Out, NL, Spac
192 printJson(const MemRegion *Region, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
197 printJson(const SymExpr *Symbol, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
202 printJson(const DynamicTypeInfo &DTI, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
218 printJson(const DynamicCastInfo &DCI, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
226 printJson(const std::pair<T, U> &Pair, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
233 printJsonContainer(const ContainerTy &Container, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
250 Out << NL; local
257 printJson(const CastSet &Set, raw_ostream &Out, const char *NL, unsigned int Space, bool IsDot) argument
264 printJsonImpl(raw_ostream &Out, ProgramStateRef State, const char *Name, const char *NL, unsigned int Space, bool IsDot, bool PrintEvenIfEmpty = true) argument
275 printDynamicTypesJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
281 printDynamicCastsJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
287 printClassObjectDynamicTypesJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
298 printDynamicTypeInfoJson(raw_ostream &Out, ProgramStateRef State, const char *NL, unsigned int Space, bool IsDot) argument
[all...]
H A DEnvironment.cpp216 const LocationContext *LCtx, const char *NL,
221 Out << "null," << NL; local
243 << "\", \"items\": [" << NL;
246 LCtx->printJson(Out, NL, Space, IsDot, [&](const LocationContext *LC) {
260 Out << '[' << NL;
288 Out << NL;
297 Indent(Out, --Space, IsDot) << "]}," << NL;
215 printJson(raw_ostream &Out, const ASTContext &Ctx, const LocationContext *LCtx, const char *NL, unsigned int Space, bool IsDot) const argument
H A DProgramState.cpp460 const char *NL, unsigned int Space,
462 Indent(Out, Space, IsDot) << "\"program_state\": {" << NL;
468 Mgr.getStoreManager().printJson(Out, getStore(), NL, Space, IsDot);
471 Env.printJson(Out, Mgr.getContext(), LCtx, NL, Space, IsDot);
474 Mgr.getConstraintManager().printJson(Out, this, NL, Space, IsDot);
477 printDynamicTypeInfoJson(Out, this, NL, Space, IsDot);
480 Mgr.getOwningEngine().printJson(Out, this, LCtx, NL, Space, IsDot);
488 printJson(Out, LCtx, /*NL=*/"\\l", Space, /*IsDot=*/true);
459 printJson(raw_ostream &Out, const LocationContext *LCtx, const char *NL, unsigned int Space, bool IsDot) const argument
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Ditbl-parse.h23 # define NL 265 macro
H A Ditbl-lex.l97 MDBG (("in lex, NL = %d (x%x)\n", NL, NL));
98 return NL;
H A Ditbl-parse.y291 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM
310 pnum regtype name value NL
323 fieldspecs NL
325 | NL
326 | error NL
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Ditbl-parse.y289 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM
308 pnum regtype name value NL
321 fieldspecs NL
323 | NL
324 | error NL
H A Ditbl-lex.l98 MDBG (("in lex, NL = %d (x%x)\n", NL, NL));
99 return NL;
/openbsd-current/usr.bin/lex/
H A Dscan.l115 NL \r?\n
149 ^"%{".*{NL} {
155 ^"%top"[[:blank:]]*"{"[[:blank:]]*{NL} {
176 ^"%pointer".*{NL} yytext_is_array = false; ++linenum;
177 ^"%array".*{NL} yytext_is_array = true; ++linenum;
181 ^"%"{LEXOPT}{OPTWS}[[:digit:]]*{OPTWS}{NL} ++linenum; /* ignore */
182 ^"%"{LEXOPT}{WS}.*{NL} ++linenum; /* ignore */
203 ^{OPTWS}{NL} ++linenum; /* allows blank lines in section 1 */
204 {OPTWS}{NL} ACTION_ECHO; ++linenum; /* maybe end of comment line */
214 {NL}
[all...]
/openbsd-current/gnu/lib/libiberty/src/
H A Dcp-demangle.c1333 #define NL(s) s, (sizeof s) - 1 macro
1338 { "aN", NL ("&="), 2 },
1339 { "aS", NL ("="), 2 },
1340 { "aa", NL ("&&"), 2 },
1341 { "ad", NL ("&"), 1 },
1342 { "an", NL ("&"), 2 },
1343 { "cl", NL ("()"), 0 },
1344 { "cm", NL (","), 2 },
1345 { "co", NL ("~"), 1 },
1346 { "dV", NL ("/
[all...]
/openbsd-current/gnu/llvm/llvm/lib/TableGen/
H A DDetailedRecordsBackend.cpp31 #define NL "\n" macro
76 OS << NL; local
78 OS << Var.first << " = " << Var.second->getAsString() << NL;
133 OS << NL; local
152 OS << NL; local
173 OS << NL; local
/openbsd-current/gnu/usr.bin/perl/t/win32/
H A Drunenv.t32 my $NL = $/;
93 qq(Name "main::x" used only once: possible typo at -e line 1.${NL}Use of uninitialized value \$x in print at -e line 1.${NL}));
100 qq(Global symbol "\$x" requires explicit package name (did you forget to declare "my \$x"?) at -e line 1.${NL}Execution of -e aborted due to compilation errors.${NL}));
105 qq(Global symbol "\$x" requires explicit package name (did you forget to declare "my \$x"?) at -e line 1.${NL}Execution of -e aborted due to compilation errors.${NL}));
/openbsd-current/gnu/llvm/llvm/include/llvm/XRay/
H A DGraph.h209 const NeighborLookupT &NL; member in class:llvm::xray::Graph::InOutEdgeView
213 auto It = NL.find(A);
214 if (It == NL.end())
220 auto It = NL.find(A);
221 if (It == NL.end())
229 auto It = NL.find(A);
230 if (It == NL.end())
235 auto It = NL.find(A);
236 if (It == NL.end())
244 auto I = NL
[all...]
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp82 const char *NL, const char *Sep) const override;
340 const char *NL, const char *Sep) const {
348 Out << Sep << NL << *this << " :" << NL;
351 Out << " An init method has been called." << NL; local
356 << NL; local
360 << NL; local
364 Out << NL; local
381 Out << NL; local
339 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) const argument
H A DObjCContainersChecker.cpp58 const char *NL, const char *Sep) const override;
173 const char *NL, const char *Sep) const {
178 OS << Sep << "ObjC container sizes :" << NL;
180 OS << I.first << " : " << I.second << NL;
172 printState(raw_ostream &OS, ProgramStateRef State, const char *NL, const char *Sep) const argument
H A DTaint.cpp30 void taint::printTaint(ProgramStateRef State, raw_ostream &Out, const char *NL, argument
35 Out << "Tainted symbols:" << NL; local
38 Out << I.first << " : " << I.second << NL;
/openbsd-current/gnu/llvm/clang/lib/AST/
H A DStmtPrinter.cpp73 std::string NL; member in class:__anon321::StmtPrinter
79 StringRef NL = "\n", const ASTContext *Context = nullptr)
81 NL(NL), Context(Context) {}
91 OS << ";" << NL; local
95 Indent() << "<<<NULL STATEMENT>>>" << NL;
115 OS << NL; local
117 OS << NL; local
154 Indent() << "<<unknown stmt type>>" << NL;
178 OS << "{" << NL; local
242 OS << NL; local
262 OS << ";" << NL; local
268 OS << "" << NL; local
278 OS << ":" << NL; local
307 OS << NL; local
313 OS << NL; local
332 OS << NL; local
343 OS << NL; local
348 OS << NL; local
377 OS << ")" << NL; local
387 OS << NL; local
394 OS << ");" << NL; local
457 if (Policy.IncludeNewlines) OS << NL; local
464 if (Policy.IncludeNewlines) OS << NL; local
469 if (Policy.IncludeNewlines) OS << NL; local
474 if (Policy.IncludeNewlines) OS << NL; local
484 if (Policy.IncludeNewlines) OS << NL; local
563 if (Policy.IncludeNewlines) OS << NL; local
570 OS << "{" << NL; local
584 OS << NL; local
594 OS << NL; local
601 OS << NL; local
618 OS << ";" << NL; local
631 OS << NL; local
637 OS << NL; local
653 OS << NL; local
663 OS << NL; local
677 OS << NL; local
683 OS << NL; local
689 OS << ")" << NL; local
691 OS << NL; local
697 OS << NL; local
703 OS << NL; local
708 if (Policy.IncludeNewlines) OS << NL; local
728 OS << NL; local
2745 printPretty(raw_ostream &Out, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation, StringRef NL, const ASTContext *Context) const argument
2752 printPrettyControlled(raw_ostream &Out, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation, StringRef NL, const ASTContext *Context) const argument
[all...]
/openbsd-current/usr.bin/awk/
H A Dawkgram.y51 %token <i> NL ',' '{' '(' '|' ';' '/' ')' '}' '[' ']'
106 AND | and NL
110 BOR | bor NL
114 ',' | comma NL
118 DO | do NL
122 ELSE | else NL
144 '{' | lbrace NL
148 NL | nl NL
277 NL | ';' | ps
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicType.h84 const char *NL = "\n", unsigned int Space = 0,
H A DEnvironment.h95 const LocationContext *LCtx = nullptr, const char *NL = "\n",
H A DSMTConstraintManager.h214 void printJson(raw_ostream &Out, ProgramStateRef State, const char *NL = "\n",
220 Out << "null," << NL; variable
225 Out << '[' << NL; variable
235 Out << NL; variable
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DDependenceGraphBuilder.cpp118 for (NodeListType &NL : ListOfSCCs) {
119 LLVM_DEBUG(dbgs() << "Creating pi-block node with " << NL.size()
125 llvm::sort(NL, [&](NodeType *LHS, NodeType *RHS) {
129 NodeType &PiNode = createPiBlock(NL);
134 SmallPtrSet<NodeType *, 4> NodesInSCC(NL.begin(), NL.end());
211 for (NodeType *SCCNode : NL) {
H A DLoopInfo.cpp721 Loop *NL = getNearestLoop(POI, L);
723 if (NL != L) {
724 // For reducible loops, NL is now an ancestor of Unloop.
725 assert((NL != &Unloop && (!NL || NL->contains(&Unloop))) &&
727 LI->changeLoopFor(POI, NL);
750 Loop *NL = getNearestLoop(*POI, L);
751 if (NL != L) {
752 assert(NL !
[all...]
/openbsd-current/gnu/llvm/lldb/utils/lui/
H A Dbreakwin.py31 if event == curses.ascii.NL or event == curses.ascii.SP:
/openbsd-current/usr.sbin/nsd/
H A Dzlexer.lex111 return (once = !once) ? 0 : NL;
236 if(eo == NL)
242 if(eo == NL)
263 LEXOUT(("NL\n"));
264 return NL;

Completed in 178 milliseconds

1234