Home
last modified time | relevance | path

Searched refs:Paren (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/ExtractAPI/Serialization/
HDSymbolGraphSerializer.cpp39 void serializeObject(Object &Paren, StringRef Key, in serializeObject() argument
42 Paren[Key] = std::move(*Obj); in serializeObject()
47 void serializeArray(Object &Paren, StringRef Key, in serializeArray() argument
50 Paren[Key] = std::move(*Array); in serializeArray()
56 void serializeArray(Object &Paren, StringRef Key, ContainerTy &&C) { in serializeArray() argument
57 Paren[Key] = Array(C); in serializeArray()
527 void serializeFunctionSignatureMixin(Object &Paren, const RecordTy &Record) { in serializeFunctionSignatureMixin() argument
548 serializeObject(Paren, "functionSignature", std::move(Signature)); in serializeFunctionSignatureMixin()
552 void serializeTemplateMixin(Object &Paren, const RecordTy &Record) { in serializeTemplateMixin() argument
581 serializeObject(Paren, "swiftGenerics", Generics); in serializeTemplateMixin()
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/Common/
HDSubtargetFeatureInfo.cpp151 bool Paren = D->getNumArgs() > 1 && std::exchange(ParenIfBinOp, true); in emitFeaturesAux() local
152 if (Paren) in emitFeaturesAux()
160 if (Paren) in emitFeaturesAux()
HDCodeGenSchedule.cpp59 unsigned Paren = 0; in removeParens() local
64 ++Paren; in removeParens()
67 --Paren; in removeParens()
70 if (Paren == 0) in removeParens()
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
HDParentMap.cpp167 Stmt *Paren = nullptr; in getOuterParenParent() local
169 Paren = S; in getOuterParenParent()
172 return Paren; in getOuterParenParent()
HDTypeLoc.cpp244 case Paren: in getEndLoc()
HDASTStructuralEquivalence.cpp1096 case Type::Paren: in IsStructurallyEquivalent()
HDExpr.cpp3251 if (const ParenExpr *Paren = dyn_cast<ParenExpr>(E)) { in isImplicitCXXThis() local
3252 E = Paren->getSubExpr(); in isImplicitCXXThis()
HDTypePrinter.cpp286 case Type::Paren: in canPrefixQualifiers()
HDASTContext.cpp2351 case Type::Paren: in getTypeInfoImpl()
10074 } else if (const ParenType *Paren = dyn_cast<ParenType>(Ty)) { in hasDirectOwnershipQualifier() local
10075 Ty = Paren->getInnerType(); in hasDirectOwnershipQualifier()
13638 case Type::Paren: in getCommonSugarTypeNode()
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
HDRefCntblBaseVirtualDtorChecker.cpp76 if (auto *Paren = dyn_cast<ParenExpr>(Arg)) in VisitCXXDeleteExpr() local
77 Arg = Paren->getSubExpr(); in VisitCXXDeleteExpr()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
HDTypeBitCodes.def45 TYPE_BIT_CODE(Paren, PAREN, 34)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaType.cpp430 case DeclaratorChunk::Paren: in maybeMovePastReturnType()
448 case DeclaratorChunk::Paren: in maybeMovePastReturnType()
511 case DeclaratorChunk::Paren: in distributeObjCPointerTypeAttr()
561 case DeclaratorChunk::Paren: in distributeObjCPointerTypeAttrFromDeclarator()
618 case DeclaratorChunk::Paren: in distributeFunctionTypeAttr()
2763 case DeclaratorChunk::Paren: in inferARCWriteback()
2911 case DeclaratorChunk::Paren: in diagnoseRedundantReturnTypeQualifiers()
3517 DeclaratorChunk &Paren = D.getTypeObject(D.getNumTypeObjects() - 1); in warnAboutRedundantParens() local
3518 assert(Paren.Kind == DeclaratorChunk::Paren && in warnAboutRedundantParens()
3538 case DeclaratorChunk::Paren: in warnAboutRedundantParens()
[all …]
HDSemaTemplateVariadic.cpp948 case DeclaratorChunk::Paren: in containsUnexpandedParameterPacks()
HDDeclSpec.cpp330 case DeclaratorChunk::Paren: in isDeclarationOfFunction()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
HDDeclSpec.h1252 Pointer, Reference, Array, Function, BlockPointer, MemberPointer, Paren, Pipe enumerator
1653 case DeclaratorChunk::Paren: return; in destroy()
1776 I.Kind = Paren; in getParen()
1783 return Kind == Paren; in isParen()
2462 case DeclaratorChunk::Paren: in isFunctionDeclarator()
2600 if (getTypeObject(I).Kind != DeclaratorChunk::Paren) in isFunctionDeclaratorAFunctionDeclaration()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
HDContinuationIndenter.cpp2201 for (ParenState &Paren : State.Stack) in reformatRawStringLiteral()
2202 Paren.BreakBeforeParameter = true; in reformatRawStringLiteral()
2210 for (ParenState &Paren : State.Stack) in addMultilineToken()
2211 Paren.BreakBeforeParameter = true; in addMultilineToken()
2803 for (ParenState &Paren : State.Stack) in breakProtrudingToken()
2804 Paren.BreakBeforeParameter = true; in breakProtrudingToken()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
HDPPMacroExpansion.cpp639 Paren enumerator
650 Brackets.push_back(Paren); in CheckMatchedBrackets()
658 if (Brackets.empty() || Brackets.back() == Paren) in CheckMatchedBrackets()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
HDClangASTImporter.cpp424 case clang::Type::Paren: in CanImport()
498 case clang::Type::Paren: in Import()
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
HDDecoderEmitter.cpp1282 bool Paren = D->getNumArgs() > 1 && std::exchange(ParenIfBinOp, true); in emitPredicateMatchAux() local
1283 if (Paren) in emitPredicateMatchAux()
1291 if (Paren) in emitPredicateMatchAux()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
HDParseDecl.cpp442 BalancedDelimiterTracker Paren(*this, tok::l_paren); in ParseUnevaluatedStringInAttribute() local
443 Paren.consumeOpen(); in ParseUnevaluatedStringInAttribute()
445 Paren.consumeClose(); in ParseUnevaluatedStringInAttribute()
8256 case DeclaratorChunk::Paren: in ParseMisplacedBracketDeclarator()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
HDItaniumDemangle.h270 bool Paren = variable
272 if (Paren)
275 if (Paren)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
HDTypeSystemClang.cpp2536 case clang::Type::Paren:
4117 case clang::Type::Paren: in GetTypeClass()
4814 case clang::Type::Paren: in GetEncoding()
5157 case clang::Type::Paren: in GetFormat()
9020 case clang::Type::Paren: in DumpTypeName()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
HDType.h3141 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
3157 static bool classof(const Type *T) { return T->getTypeClass() == Paren; }
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCodeGenFunction.cpp2475 case Type::Paren: in EmitVariablyModifiedType()
HDCGDebugInfo.cpp3616 case Type::Paren: in UnwrapTypeForDebugInfo()
3815 case Type::Paren: in CreateTypeNode()

12