Home
last modified time | relevance | path

Searched refs:question (Results 1 – 25 of 108) sorted by relevance

12345

/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/
H A DPredicateTree.h33 : position(pos), question(predicate.first), answer(predicate.second) {} in PositionalPredicate()
39 Qualifier *question; member
66 Qualifier *getQuestion() const { return question; } in getQuestion()
83 Qualifier *question = nullptr,
91 Qualifier *question; variable
110 BoolNode(Position *position, Qualifier *question, Qualifier *answer,
185 SwitchNode(Position *position, Qualifier *question);
H A DPredicateTree.cpp727 : position(ip.first), question(ip.second) {} in OrderedPredicate()
729 : position(ip.position), question(ip.question) {} in OrderedPredicate()
734 /// The question that is applied by this predicate onto the position.
735 Qualifier *question; member
752 /// A map between a pattern operation and the answer to the predicate question
767 rhsPos->getKind(), rhs.question->getKind(), rhs.id) > in operator <()
770 question->getKind(), id); in operator <()
775 /// question.
783 return lhs.position == rhs.position && lhs.question in isEqual()
1049 BoolNode(Position * position,Qualifier * question,Qualifier * answer,std::unique_ptr<MatcherNode> successNode,std::unique_ptr<MatcherNode> failureNode) BoolNode() argument
1070 SwitchNode(Position * position,Qualifier * question) SwitchNode() argument
[all...]
H A DPDLToPDLInterp.cpp395 Qualifier *question = boolNode->getQuestion(); in generate() local
402 if (auto *equalToQuestion = dyn_cast<EqualToQuestion>(question)) { in generate()
404 } else if (auto *cstQuestion = dyn_cast<ConstraintQuestion>(question)) { in generate()
415 Predicates::Kind kind = question->getKind(); in generate()
464 auto *cstQuestion = cast<ConstraintQuestion>(question); in generate()
497 Qualifier *question = switchNode->getQuestion(); in generate() local
503 Predicates::Kind kind = question->getKind(); in generate()
567 switch (question->getKind()) { in generate()
/llvm-project/bolt/test/X86/Inputs/
H A Dinlined.cpp2 extern const char* question();
14 printf("%s\n", question()); in main()
H A Dinlinee.cpp1 const char* question() { in question() function
/llvm-project/llvm/utils/
H A Ddemangle_tree.py23 question = line.find("?")
24 if question == -1:
27 open_paren = line.find("(", question)
33 mangled = line[question:open_paren]
/llvm-project/llvm/docs/HistoricalNotes/
H A D2000-11-18-EarlyDesignIdeas.txt12 processor issues), since the architecture interface question is also
17 the second question. The Java compiler and OS community care much more
20 Also, while the architecture interface question is important for
30 b. A strongly-typed VM. One question is do we need the types to be
H A D2000-11-18-EarlyDesignIdeasResp.txt12 > processor issues), since the architecture interface question is also
44 > the second question. The Java compiler and OS community care much more
87 > b. A strongly-typed VM. One question is do we need the types to be
/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DMacroRepeatedSideEffectsCheck.cpp96 if (FoundBuiltin && T.isOneOf(tok::question, tok::ampamp, tok::pipepipe)) in countArgumentExpansions()
110 if (T.is(tok::question)) { in countArgumentExpansions()
/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp567 case tok::question: return 4; in getPrecedence()
620 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr()
657 if (Operator == tok::question) in EvaluateDirectiveSubExpr()
675 case tok::question: // No UAC for x and y in "x ? y : z". in EvaluateDirectiveSubExpr()
812 case tok::question: { in EvaluateDirectiveSubExpr()
817 PP.Diag(OpLoc, diag::note_matching) << tok::question; in EvaluateDirectiveSubExpr()
933 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question), in EvaluateDirectiveExpression()
/llvm-project/mlir/lib/AsmParser/
H A DTypeParser.cpp547 if (consumeIf(Token::question)) { in parseDimensionListRanked()
561 while (getToken().isAny(Token::integer, Token::question)) { in parseDimensionListRanked()
568 if (getToken().isAny(Token::integer, Token::question)) { in parseIntegerInDimensionList()
H A DTokenKinds.def69 TOK_PUNCTUATION(question, "?")
H A DAsmParserImpl.h201 return parser.parseToken(Token::question, "expected '?'"); in parseQuestion()
206 return success(parser.consumeIf(Token::question)); in parseOptionalQuestion()
/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp132 static const tok::TokenKind NullishCoalescingOperator[] = {tok::question, in tryMergePreviousTokens()
133 tok::question}; in tryMergePreviousTokens()
134 static const tok::TokenKind NullPropagatingOperator[] = {tok::question, in tryMergePreviousTokens()
156 tok::question, tok::l_square}; in tryMergePreviousTokens()
222 tok::question) && in tryMergePreviousTokens()
265 {tok::exclaimequal, tok::question}, in tryMergePreviousTokens()
267 {tok::equalequal, tok::question}}, in tryMergePreviousTokens()
611 tok::colon, tok::question, tok::tilde) || in canPrecedeRegexLiteral()
1333 FormatTok->Tok.isOneOf(tok::identifier, tok::question)) { in getNextToken()
/llvm-project/llvm/test/Transforms/Mem2Reg/
H A Dpreserve-nonnull-load-metadata.ll7 ; Check the case where the alloca in question has a single store.
38 ; Check the case where the alloca in question has more than one
72 ; Check the case where the alloca in question has more than one
/llvm-project/clang/lib/Basic/
H A DOperatorPrecedence.cpp53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
/llvm-project/llvm/test/CodeGen/X86/
H A Dpr36274.ll6 ; to the load causing a cycle. Here the dependence in question comes
/llvm-project/llvm/docs/
H A DExtendedIntegerResults.txt8 specific integer GPR. This is an efficient way to go, but raises the question:
12 sign extended. The number of bits in question depends on the data-type that
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dmacro-repeated-side-effects.c34 void question(int x) { in question() function
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dwildcard-syntax.test17 # RUN: llvm-objcopy --remove-section='.b?r' %t.o %t.question.o
18 # RUN: llvm-readobj --sections %t.question.o \
/llvm-project/clang/test/SemaObjC/
H A Dforeach.m12 /* This should be ok, 'thisKey' should be scoped to the loop in question,
/llvm-project/mlir/tools/mlir-tblgen/
H A DFormatGen.cpp112 return formToken(FormatToken::question, tokStart); in lexToken()
368 if (failed(parseToken(FormatToken::question, in parseOptionalGroup()
/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp1186 assert(Tok.is(tok::question)); in ConsumeAndStoreConditional()
1191 if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks,
1197 if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks)) in UnannotatedTentativeParsingAction()
1297 case tok::question: in ConsumeAndStoreInitializer()
/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h53 question, // ? enumerator
/llvm-project/clang-tools-extra/clang-tidy/modernize/
H A DIntegralLiteralExpressionMatcher.cpp247 if (Current->is(tok::TokenKind::question)) { in conditionalExpr()

12345