Home
last modified time | relevance | path

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

123

/openbsd-src/gnu/llvm/clang/lib/Format/
H A DUnwrappedLineParser.cpp334 const AdditionalKeywords &Keywords, in UnwrappedLineParser() argument
339 CurrentLines(&Lines), Style(Style), Keywords(Keywords), in UnwrappedLineParser()
441 if (FormatTok->is(Keywords.kw_where)) { in parseCSharpGenericTypeConstraint()
709 NextTok->isOneOf(Keywords.kw_of, Keywords.kw_in, in calculateBraceTypes()
710 Keywords.kw_as)); in calculateBraceTypes()
829 TokenAnnotator Annotator(Style, Keywords); in mightFitOnOneLine()
870 if (Keywords.isVerilogIdentifier(*FormatTok)) in parseBlock()
878 Style.isVerilog() && Keywords.isVerilogHierarchy(*FormatTok); in parseBlock()
881 (Keywords.isVerilogBegin(*FormatTok) || VerilogHierarchy))) && in parseBlock()
1052 const AdditionalKeywords &Keywords) { in isIIFE() argument
[all …]
H A DTokenAnnotator.cpp114 const AdditionalKeywords &Keywords) in AnnotatingParser() argument
116 Keywords(Keywords) { in AnnotatingParser()
297 (Line.startsWith(Keywords.kw_type, tok::identifier) || in parseParens()
298 Line.startsWith(tok::kw_export, Keywords.kw_type, in parseParens()
311 (OpeningParen.Previous->is(Keywords.kw_function) || in parseParens()
313 Keywords.kw_function)))) { in parseParens()
506 if (MightBeObjCForRangeLoop && CurrentToken->is(Keywords.kw_in)) { in parseParens()
563 tok::l_square, Keywords.kw_internal)) { in isCSharpAttributeSpecifier()
979 if (Keywords.isVerilogEnd(*Tok->Previous) || in consumeToken()
980 Keywords.isVerilogBegin(*Tok->Previous)) { in consumeToken()
[all …]
H A DSortJavaScriptImports.cpp149 const AdditionalKeywords &Keywords = Tokens.getKeywords(); in analyze() local
153 parseModuleReferences(Keywords, AnnotatedLines); in analyze()
364 parseModuleReferences(const AdditionalKeywords &Keywords, in parseModuleReferences() argument
412 if (!parseModuleReference(Keywords, Reference)) { in parseModuleReferences()
444 bool parseModuleReference(const AdditionalKeywords &Keywords, in parseModuleReference() argument
446 if (!Current || !Current->isOneOf(Keywords.kw_import, tok::kw_export)) in parseModuleReference()
459 if (!parseModuleBindings(Keywords, Reference)) in parseModuleReference()
462 if (Current->is(Keywords.kw_from)) { in parseModuleReference()
482 bool parseModuleBindings(const AdditionalKeywords &Keywords, in parseModuleBindings() argument
484 if (parseStarBinding(Keywords, Reference)) in parseModuleBindings()
[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.h173 TokenAnnotator(const FormatStyle &Style, const AdditionalKeywords &Keywords) in TokenAnnotator() argument
174 : Style(Style), Keywords(Keywords) {} in TokenAnnotator()
222 const AdditionalKeywords &Keywords; variable
H A DUnwrappedLineFormatter.cpp46 const AdditionalKeywords &Keywords, unsigned StartLevel, in LevelIndentTracker() argument
48 : Style(Style), Keywords(Keywords), AdditionalIndent(AdditionalIndent) { in LevelIndentTracker()
124 else if ((RootToken.isOneOf(Keywords.kw_signals, Keywords.kw_qsignals) && in getIndentOffset()
128 RootToken.Next->isOneOf(Keywords.kw_slots, in getIndentOffset()
129 Keywords.kw_qslots) && in getIndentOffset()
164 const AdditionalKeywords &Keywords; member in clang::format::__anon5560ac9b0111::LevelIndentTracker
207 LineJoiner(const FormatStyle &Style, const AdditionalKeywords &Keywords, in LineJoiner() argument
209 : Style(Style), Keywords(Keywords), End(Lines.end()), Next(Lines.begin()), in LineJoiner()
294 tok::kw_extern, Keywords.kw_interface)) { in tryFitMultipleLinesInOne()
736 Keywords.kw___except)) { in tryMergeSimpleBlock()
[all …]
H A DQualifierAlignmentFixer.cpp208 const SourceManager &SourceMgr, const AdditionalKeywords &Keywords, in analyzeRight() argument
300 !Tok->Next->isOneOf(Keywords.kw_override, Keywords.kw_final)) { in analyzeRight()
313 const SourceManager &SourceMgr, const AdditionalKeywords &Keywords, in analyzeLeft() argument
437 const AdditionalKeywords &Keywords = Tokens.getKeywords(); in analyze() local
459 Tok = analyzeRight(SourceMgr, Keywords, Fixes, Tok, Qualifier, in analyze()
462 Tok = analyzeLeft(SourceMgr, Keywords, Fixes, Tok, Qualifier, in analyze()
H A DFormatTokenLexer.h48 const AdditionalKeywords &getKeywords() { return Keywords; } in getKeywords()
119 AdditionalKeywords Keywords; variable
H A DQualifierAlignmentFixer.h76 const AdditionalKeywords &Keywords,
83 const AdditionalKeywords &Keywords,
H A DUnwrappedLineParser.h91 const AdditionalKeywords &Keywords,
276 const AdditionalKeywords &Keywords; variable
H A DContinuationIndenter.h56 const AdditionalKeywords &Keywords,
193 const AdditionalKeywords &Keywords; variable
H A DContinuationIndenter.cpp227 const AdditionalKeywords &Keywords, in ContinuationIndenter() argument
232 : Style(Style), Keywords(Keywords), SourceMgr(SourceMgr), in ContinuationIndenter()
474 Keywords.kw_dollar) && in mustBreak()
915 !Current.isOneOf(Keywords.kw_async, Keywords.kw_function))) { in addTokenOnNewLine()
1104 Current.isOneOf(Keywords.kw_implements, Keywords.kw_extends)) { in getNewLineColumn()
1112 if ((Style.isVerilog() && Keywords.isVerilogEndOfLabel(Previous)) || in getNewLineColumn()
H A DFormatTokenLexer.cpp33 Style(Style), IdentTable(IdentTable), Keywords(IdentTable),
380 if (!Keywords.isCSharpKeyword(*Keyword)) in tryMergeCSharpKeywordVariables()
531 tok::kw_typeof, Keywords.kw_instanceof, Keywords.kw_in) || in precedesOperand()
1118 Tokens.back()->is(Keywords.kw_apostrophe) && in getNextToken()
H A DFormat.cpp2662 const AdditionalKeywords &Keywords) { in guessIsObjC() argument
2754 FormatTok->isOneOf(Keywords.kw_NS_CLOSED_ENUM, Keywords.kw_NS_ENUM, in guessIsObjC()
2755 Keywords.kw_NS_OPTIONS, TT_ObjCBlockLBrace, in guessIsObjC()
2767 if (guessIsObjC(SourceManager, Line->Children, Keywords)) in guessIsObjC()
/openbsd-src/gnu/usr.bin/perl/ext/Pod-Functions/t/
H A DFunctions.t115 Keywords related to the control flow of your Perl program:
120 Keywords related to scoping:
132 Keywords related to Perl modules:
135 Keywords related to classes and object-orientation:
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DRetainSummaryManager.h576 template <typename... Keywords>
578 const RetainSummary *Summ, Keywords *... Kws) {
583 template <typename... Keywords>
585 Keywords *... Kws) {
589 template <typename... Keywords>
591 Keywords *... Kws) {
596 template <typename... Keywords>
598 Keywords *... Kws) {
/openbsd-src/gnu/llvm/llvm/utils/vim/syntax/
H A Dllvm.vim39 " Keywords.
/openbsd-src/gnu/usr.bin/cvs/doc/
H A Dcvs.info146 Node: Keywords in imports200907
H A Dcvs.aux325 'xrdef {Keywords in imports-title}{How to handle keyword substitution with cvs import}
326 'xrdef {Keywords in imports-pg}{80}
327 'xrdef {Keywords in imports-snt}{Section'tie13.5}
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTokenKinds.def252 // C99 6.4.1: Keywords. These turn into kw_* tokens.
334 // C++ 2.11p1: Keywords.
379 // C99 Keywords.
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A DC++STYLE126 Keywords such as extern, static, export, explicit, inline, etc
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A DC++STYLE126 Keywords such as extern, static, export, explicit, inline, etc
/openbsd-src/usr.bin/vi/
H A DFAQ134 Keywords: ctags, tags, exuberant
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A DREADME.Portability235 Reserved Keywords
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DClangAttrEmitter.cpp4359 Keywords, Pragma, C2x, HLSLSemantic; in EmitClangAttrParsedAttrKinds() local
4407 Matches = &Keywords; in EmitClangAttrParsedAttrKinds()
4444 StringMatcher("Name", Keywords, OS).Emit(); in EmitClangAttrParsedAttrKinds()

123