• Home
  • Raw
  • Download

Lines Matching defs:N

36   bool parse(Fragment &F, Node &N) {  in parse()
38 Dict.handle("If", [&](Node &N) { parse(F.If, N); }); in parse()
39 Dict.handle("CompileFlags", [&](Node &N) { parse(F.CompileFlags, N); }); in parse()
40 Dict.handle("Index", [&](Node &N) { parse(F.Index, N); }); in parse()
41 Dict.handle("Style", [&](Node &N) { parse(F.Style, N); }); in parse()
42 Dict.handle("ClangTidy", [&](Node &N) { parse(F.ClangTidy, N); }); in parse()
48 void parse(Fragment::IfBlock &F, Node &N) { in parse()
54 Dict.handle("PathMatch", [&](Node &N) { in parse()
58 Dict.handle("PathExclude", [&](Node &N) { in parse()
65 void parse(Fragment::CompileFlagsBlock &F, Node &N) { in parse()
67 Dict.handle("Add", [&](Node &N) { in parse()
71 Dict.handle("Remove", [&](Node &N) { in parse()
78 void parse(Fragment::StyleBlock &F, Node &N) { in parse()
80 Dict.handle("FullyQualifiedNamespaces", [&](Node &N) { in parse()
87 void parse(Fragment::ClangTidyBlock &F, Node &N) { in parse()
89 Dict.handle("Add", [&](Node &N) { in parse()
93 Dict.handle("Remove", [&](Node &N) { in parse()
97 Dict.handle("CheckOptions", [&](Node &N) { in parse()
109 void parse(Fragment::IndexBlock &F, Node &N) { in parse()
112 [&](Node &N) { F.Background = scalarValue(N, "Background"); }); in parse()
113 Dict.handle("External", [&](Node &N) { in parse()
122 void parse(Fragment::IndexBlock::ExternalBlock &F, Node &N) { in parse()
124 Dict.handle("File", [&](Node &N) { F.File = scalarValue(N, "File"); }); in parse()
126 [&](Node &N) { F.Server = scalarValue(N, "Server"); }); in parse()
128 [&](Node &N) { F.MountPoint = scalarValue(N, "MountPoint"); }); in parse()
208 llvm::Optional<Located<std::string>> scalarValue(Node &N, in scalarValue()
220 llvm::Optional<std::vector<Located<std::string>>> scalarValues(Node &N) { in scalarValues()
241 void error(const llvm::Twine &Msg, const Node &N) { in error()
248 void warning(const llvm::Twine &Msg, const Node &N) { in warning()
272 if (Node *N = Doc.getRoot()) { in parseYAML() local