/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
H A D | Nodes.td | 52 Role<"OpenParen", Token<"l_paren">>, 53 Role<"SubExpression", Expression>, 54 Role<"CloseParen", Token<"r_paren">>, 67 Role<"LiteralToken", Token<"numeric_constant">>, 79 Role<"LiteralToken", AnyCharacterLiteral>, 87 Role<"LiteralToken", Token<"numeric_constant">>, 102 Role<"LiteralToken", AnyStringLiteral>, 110 Role<"LiteralToken", AnyToken<["kw_false","kw_true"]>>, 118 Role<"LiteralToken", Keyword<"nullptr">>, 136 Role<"LiteralToken", Keyword<"numeric_constant">>, [all …]
|
H A D | Tree.h | 71 NodeRole getRole() const { return static_cast<NodeRole>(Role); } in getRole() 125 unsigned Role : 8; variable 226 void appendChildLowLevel(Node *Child, NodeRole Role); 228 void prependChildLowLevel(Node *Child, NodeRole Role);
|
H A D | Syntax.td | 14 // The concrete node defines a Role sequence which identifies the children. 66 class Role<string role_, Syntax syntax_> { 81 // Children must be Role or have a default role derived from the NodeType. 82 list<Role> children;
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
H A D | Mutations.cpp | 30 static void addAfter(syntax::Node *Anchor, syntax::Node *New, NodeRole Role) { in addAfter() argument 37 assert(Role != NodeRole::Detached); in addAfter() 39 New->setRole(Role); in addAfter() 57 New->Role = Old->Role; in replace()
|
H A D | Tree.cpp | 39 Kind(static_cast<unsigned>(Kind)), Role(0), Original(false), in Node() 49 this->Role = static_cast<unsigned>(NR); in setRole() 52 void syntax::Tree::appendChildLowLevel(Node *Child, NodeRole Role) { in appendChildLowLevel() argument 54 assert(Role != NodeRole::Detached); in appendChildLowLevel() 56 Child->setRole(Role); in appendChildLowLevel() 76 void syntax::Tree::prependChildLowLevel(Node *Child, NodeRole Role) { in prependChildLowLevel() argument 78 assert(Role != NodeRole::Detached); in prependChildLowLevel() 80 Child->setRole(Role); in prependChildLowLevel()
|
H A D | BuildTree.cpp | 423 void markStmtChild(Stmt *Child, NodeRole Role); 426 void markExprChild(Expr *Child, NodeRole Role); 585 void assignRole(ArrayRef<syntax::Token> Range, syntax::NodeRole Role) { in assignRole() 595 It->second->setRole(Role); in assignRole() 612 auto Role = KV.second->getRole(); in shrinkToFitList() local 613 return Role == syntax::NodeRole::ListElement || in shrinkToFitList() 614 Role == syntax::NodeRole::ListDelimiter; in shrinkToFitList() 1689 void syntax::TreeBuilder::markChildToken(SourceLocation Loc, NodeRole Role) { in markChildToken() argument 1692 Pending.assignRole(*findToken(Loc), Role); in markChildToken() 1717 void syntax::TreeBuilder::markStmtChild(Stmt *Child, NodeRole Role) { in markStmtChild() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | ModuleMap.h | 152 static Module::HeaderKind headerRoleToKind(ModuleHeaderRole Role); 155 static bool isModular(ModuleHeaderRole Role); 164 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) {} in KnownHeader() argument 705 ModuleHeaderRole Role, bool Imported = false);
|
H A D | HeaderSearch.h | 154 void mergeModuleMembership(ModuleMap::ModuleHeaderRole Role); 570 void MarkFileModuleHeader(FileEntryRef FE, ModuleMap::ModuleHeaderRole Role,
|
/freebsd/contrib/libxo/doc/ |
H A D | field-roles.rst | 48 The Color Role ({C:}) 128 The Decoration Role ({D:}) 141 The Gettext Role ({G:}) 176 The Label Role ({L:}) 191 The Note Role ({N:}) 201 The Padding Role ({P:}) 216 The Title Role ({T:}) 241 The Units Role ({U:}) 266 The Value Role ({V:} and {:})
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | IndexSymbol.cpp | 417 #define APPLY_FOR_ROLE(Role) \ in applyForEachSymbolRoleInterruptible() argument 418 if (Roles & (unsigned)SymbolRole::Role) \ in applyForEachSymbolRoleInterruptible() 419 if (!Fn(SymbolRole::Role)) \ in applyForEachSymbolRoleInterruptible() 459 applyForEachSymbolRole(Roles, [&](SymbolRole Role) { in printSymbolRoles() argument 464 switch (Role) { in printSymbolRoles()
|
H A D | IndexingAction.cpp | 226 auto Role = DirectiveKind == MacroDirective::MD_Define in indexPreprocessorMacro() local 229 DataConsumer.handleMacroOccurrence(II, MI, static_cast<unsigned>(Role), Loc); in indexPreprocessorMacro()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | ModuleMap.cpp | 76 Module::HeaderKind ModuleMap::headerRoleToKind(ModuleHeaderRole Role) { in headerRoleToKind() argument 77 switch ((int)Role) { in headerRoleToKind() 109 bool ModuleMap::isModular(ModuleHeaderRole Role) { in isModular() argument 110 return !(Role & (ModuleMap::TextualHeader | ModuleMap::ExcludedHeader)); in isModular() 352 auto Role = headerKindToRole(Header.Kind); in resolveAsBuiltinHeader() local 353 addHeader(Mod, H, Role); in resolveAsBuiltinHeader() 1283 ModuleHeaderRole Role, bool Imported) { in addHeader() argument 1284 KnownHeader KH(Mod, Role); in addHeader() 1294 Mod->Headers[headerRoleToKind(Role)].push_back(Header); in addHeader() 1300 HeaderInfo.MarkFileModuleHeader(Header.Entry, Role, in addHeader() [all …]
|
H A D | HeaderSearch.cpp | 1320 ModuleMap::ModuleHeaderRole Role) { in moduleMembershipNeedsMerge() argument 1321 if (ModuleMap::isModular(Role)) in moduleMembershipNeedsMerge() 1323 if (!HFI->isModuleHeader && (Role & ModuleMap::TextualHeader)) in moduleMembershipNeedsMerge() 1338 void HeaderFileInfo::mergeModuleMembership(ModuleMap::ModuleHeaderRole Role) { in mergeModuleMembership() argument 1339 mergeHeaderFileInfoModuleBits(*this, ModuleMap::isModular(Role), in mergeModuleMembership() 1340 (Role & ModuleMap::TextualHeader)); in mergeModuleMembership() 1435 ModuleMap::ModuleHeaderRole Role, in MarkFileModuleHeader() argument 1439 if ((Role & ModuleMap::ExcludedHeader)) in MarkFileModuleHeader() 1442 if (HFI && !moduleMembershipNeedsMerge(HFI, Role)) in MarkFileModuleHeader() 1447 HFI.mergeModuleMembership(Role); in MarkFileModuleHeader()
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | MacroCallReconstructor.cpp | 99 (Token->MacroCtx->Role != MR_Hidden || in add() 218 if (Token->MacroCtx->Role != MR_Hidden) in reconstruct() 224 if (Token->MacroCtx->Role != MR_Hidden) { in reconstruct() 393 if (Token->MacroCtx->Role == MR_Hidden) in processNextReconstructed()
|
H A D | FormatToken.h | 272 MacroExpansion(MacroRole Role) : Role(Role) {} in MacroExpansion() 280 MacroRole Role; member 324 std::shared_ptr<TokenRole> Role; member 436 if (MacroCtx && MacroCtx->Role == MR_UnexpandedArg) in setType() 447 if (MacroCtx && MacroCtx->Role == MR_UnexpandedArg) in setFinalizedType() 453 if (MacroCtx && MacroCtx->Role == MR_UnexpandedArg) in overwriteFixedType()
|
H A D | TokenAnnotator.h | 108 Current->Role.reset(); in ~AnnotatedLine()
|
H A D | ContinuationIndenter.cpp | 707 if (!PrevNonComment->Role) in addTokenOnCurrentLine() 709 auto Comma = PrevNonComment->Role->lastComma(); in addTokenOnCurrentLine() 1662 if (Current.Role) in moveStateToNextToken() 1663 Current.Role->formatFromToken(State, this, DryRun); in moveStateToNextToken() 1669 if (Previous && Previous->Role) in moveStateToNextToken() 1670 Penalty += Previous->Role->formatAfterToken(State, this, DryRun); in moveStateToNextToken()
|
H A D | WhitespaceManager.cpp | 57 if (Tok.Finalized || (Tok.MacroCtx && Tok.MacroCtx->Role == MR_ExpandedArg)) in replaceWhitespace() 68 if (Tok.Finalized || (Tok.MacroCtx && Tok.MacroCtx->Role == MR_ExpandedArg)) in addUntouchableToken() 92 if (Tok.Finalized || (Tok.MacroCtx && Tok.MacroCtx->Role == MR_ExpandedArg)) in replaceWhitespaceInToken()
|
H A D | UnwrappedLineFormatter.cpp | 960 if (Tok->MacroCtx && Tok->MacroCtx->Role == MR_ExpandedArg) { in markFinalized() 965 Tok->MacroCtx->Role = MR_UnexpandedArg; in markFinalized()
|
H A D | TokenAnnotator.cpp | 1254 if (!Left->Role) in updateParameterCount() 1255 Left->Role.reset(new CommaSeparatedList(Style)); in updateParameterCount() 1256 Left->Role->CommaFound(Current); in updateParameterCount() 2075 CurrentToken->Role.reset(); in resetTokenMetadata() 4070 if (Current->Role) in calculateFormattingInformation() 4071 Current->Role->precomputeFormattingInfos(Current); in calculateFormattingInformation()
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | mediatek,musb.txt | 32 - usb-role-switch : use USB Role Switch to support dual-role switch, see
|
H A D | generic.txt | 10 - dr_mode: tells Dual-Role USB controllers that we want to work on a
|
H A D | mediatek,mtu3.txt | 47 - usb-role-switch : use USB Role Switch to support dual-role switch, but
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ClangDiagnosticsEmitter.cpp | 507 StringRef Role; member 509 TextPiece(StringRef Text, StringRef Role = "") in TextPiece() 510 : Piece(TextPieceClass), Role(Role), Text(Text.str()) {} in TextPiece() 606 std::vector<std::string> buildForDocumentation(StringRef Role, 885 S += P->Role; in VisitText() 1902 StringRef Role, raw_ostream &OS) { in writeDiagnosticText() argument 1907 std::vector<std::string> Out = Builder.buildForDocumentation(Role, R); in writeDiagnosticText()
|
/freebsd/share/misc/ |
H A D | bsd-family-tree | 944 Michael G. Brown. The Role of BSD in the Development of Unix.
|