Home
last modified time | relevance | path

Searched refs:Keywords (Results 1 – 21 of 21) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp231 CurrentLines(&Lines), Style(Style), Keywords(Keywords), in UnwrappedLineParser()
507 NextTok->isOneOf(Keywords.kw_of, Keywords.kw_in, in calculateBraceTypes()
960 Keywords.kw_in, Keywords.kw_of, Keywords.kw_as, Keywords.kw_async, in mustBeJSIdent()
961 Keywords.kw_await, Keywords.kw_yield, Keywords.kw_finally, in mustBeJSIdent()
962 Keywords.kw_function, Keywords.kw_import, Keywords.kw_is, in mustBeJSIdent()
963 Keywords.kw_let, Keywords.kw_var, tok::kw_const, in mustBeJSIdent()
964 Keywords.kw_abstract, Keywords.kw_extends, Keywords.kw_implements, in mustBeJSIdent()
965 Keywords.kw_instanceof, Keywords.kw_interface, Keywords.kw_throws, in mustBeJSIdent()
992 Keywords.kw_async, Keywords.kw_function, in isJSDeclOrStmt()
1610 if (Tok->isOneOf(Keywords.kw_get, Keywords.kw_set)) in tryToParsePropertyAccessor()
[all …]
H A DTokenAnnotator.cpp76 Keywords(Keywords) { in AnnotatingParser()
2246 Current->isOneOf(Keywords.kw_in, Keywords.kw_as)) in getCurrentPrecedence()
3229 Left.isOneOf(Keywords.kw_returns, Keywords.kw_option)) in spaceRequiredBefore()
3318 Keywords.kw_sealed, Keywords.kw_override, in spaceRequiredBefore()
3350 Left.isOneOf(Keywords.kw_function, Keywords.kw_yield, in spaceRequiredBefore()
3371 if ((Left.isOneOf(Keywords.kw_let, Keywords.kw_var, Keywords.kw_in, in spaceRequiredBefore()
3411 Right.isOneOf(Keywords.kw_as, Keywords.kw_in)) in spaceRequiredBefore()
3954 if (Left.isOneOf(Keywords.kw_throws, Keywords.kw_extends, in canBreakBefore()
3967 Keywords.kw_readonly, Keywords.kw_abstract, Keywords.kw_get, in canBreakBefore()
3968 Keywords.kw_set, Keywords.kw_async, Keywords.kw_await)) in canBreakBefore()
[all …]
H A DSortJavaScriptImports.cpp146 parseModuleReferences(Keywords, AnnotatedLines); in analyze()
354 parseModuleReferences(const AdditionalKeywords &Keywords, in parseModuleReferences() argument
398 if (!parseModuleReference(Keywords, Reference)) { in parseModuleReferences()
446 if (!parseModuleBindings(Keywords, Reference)) in parseModuleReference()
449 if (Current->is(Keywords.kw_from)) { in parseModuleReference()
473 if (parseStarBinding(Keywords, Reference)) in parseModuleBindings()
475 return parseNamedBindings(Keywords, Reference); in parseModuleBindings()
478 bool parseStarBinding(const AdditionalKeywords &Keywords, in parseStarBinding() argument
484 if (Current->isNot(Keywords.kw_as)) in parseStarBinding()
500 if (Current->is(Keywords.kw_from)) in parseNamedBindings()
[all …]
H A DUnwrappedLineFormatter.h33 const AdditionalKeywords &Keywords, in UnwrappedLineFormatter() argument
37 Keywords(Keywords), SourceMgr(SourceMgr), Status(Status) {} in UnwrappedLineFormatter()
69 const AdditionalKeywords &Keywords; variable
H A DTokenAnnotator.h160 TokenAnnotator(const FormatStyle &Style, const AdditionalKeywords &Keywords) in TokenAnnotator() argument
161 : Style(Style), Keywords(Keywords) {} in TokenAnnotator()
206 const AdditionalKeywords &Keywords; variable
H A DUnwrappedLineFormatter.cpp41 const AdditionalKeywords &Keywords, unsigned StartLevel, in LevelIndentTracker() argument
43 : Style(Style), Keywords(Keywords), AdditionalIndent(AdditionalIndent) { in LevelIndentTracker()
105 (RootToken.isOneOf(Keywords.kw_signals, Keywords.kw_qsignals) && in getIndentOffset()
130 const AdditionalKeywords &Keywords; member in clang::format::__anonb93c45f80111::LevelIndentTracker
175 : Style(Style), Keywords(Keywords), End(Lines.end()), Next(Lines.begin()), in LineJoiner()
254 tok::kw_extern, Keywords.kw_interface)) in tryFitMultipleLinesInOne()
616 Keywords.kw___except, tok::kw___finally)) in tryMergeSimpleBlock()
642 Keywords.kw_interface)) in tryMergeSimpleBlock()
752 const AdditionalKeywords &Keywords; member in clang::format::__anonb93c45f80111::LineJoiner
1124 LineJoiner Joiner(Style, Keywords, Lines); in format()
[all …]
H A DFormatTokenLexer.h47 const AdditionalKeywords &getKeywords() { return Keywords; } in getKeywords()
108 AdditionalKeywords Keywords; variable
H A DUnwrappedLineParser.h78 const AdditionalKeywords &Keywords,
225 const AdditionalKeywords &Keywords; variable
H A DContinuationIndenter.h55 const AdditionalKeywords &Keywords,
192 const AdditionalKeywords &Keywords; variable
H A DFormatTokenLexer.cpp32 Style(Style), IdentTable(IdentTable), Keywords(IdentTable),
345 if (!Keywords.isCSharpKeyword(*Keyword)) in tryMergeCSharpKeywordVariables()
474 tok::kw_typeof, Keywords.kw_instanceof, Keywords.kw_in) || in precedesOperand()
H A DContinuationIndenter.cpp225 const AdditionalKeywords &Keywords, in ContinuationIndenter() argument
230 : Style(Style), Keywords(Keywords), SourceMgr(SourceMgr), in ContinuationIndenter()
441 Keywords.kw_dollar) && in mustBreak()
818 !Current.isOneOf(Keywords.kw_async, Keywords.kw_function))) in addTokenOnNewLine()
984 Current.isOneOf(Keywords.kw_implements, Keywords.kw_extends)) in getNewLineColumn()
H A DFormat.cpp2110 const AdditionalKeywords &Keywords) { in guessIsObjC() argument
2201 FormatTok->isOneOf(Keywords.kw_NS_CLOSED_ENUM, Keywords.kw_NS_ENUM, in guessIsObjC()
2202 Keywords.kw_NS_OPTIONS, TT_ObjCBlockLBrace, in guessIsObjC()
2214 if (guessIsObjC(SourceManager, Line->Children, Keywords)) in guessIsObjC()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/
H A DRetainSummaryManager.h575 template <typename... Keywords>
577 const RetainSummary *Summ, Keywords *... Kws) {
582 template <typename... Keywords>
584 Keywords *... Kws) {
588 template <typename... Keywords>
590 Keywords *... Kws) {
595 template <typename... Keywords>
597 Keywords *... Kws) {
/freebsd-13.1/contrib/dialog/samples/copifuncs/
H A Difpatch52 - if (!strcasecmp(msg->key,"Keywords")) return 2;
54 + if (!strcasecmp(msg->key,"Keywords"))
/freebsd-13.1/bin/sh/tests/parser/
H A Dcase1.05 # Keywords can be used unquoted in case statements, except the keyword
/freebsd-13.1/contrib/dialog/
H A Ddialog.lsm13 Keywords: dialog, cdialog, shell, script, window
/freebsd-13.1/contrib/libxo/doc/
H A Doptions.rst30 Option Keywords
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def250 // C99 6.4.1: Keywords. These turn into kw_* tokens.
334 // C++ 2.11p1: Keywords.
/freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp4041 Keywords, Pragma, C2x; in EmitClangAttrParsedAttrKinds() local
4090 Matches = &Keywords; in EmitClangAttrParsedAttrKinds()
4125 StringMatcher("Name", Keywords, OS).Emit(); in EmitClangAttrParsedAttrKinds()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dlocale257 // Keywords: "a", "abb"
/freebsd-13.1/contrib/ncurses/misc/
H A Dterminfo.src6086 # Keywords: xvt, xterm, Xwindows