Searched refs:question (Results 1 - 25 of 53) sorted by relevance

123

/openbsd-current/usr.bin/indent/
H A Dindent_codes.h42 #define question 7 macro
/openbsd-current/gnu/usr.bin/perl/dist/Storable/t/
H A Drestrict.t38 my %hash = (question => '?', answer => 42, extra => 'junk', undef => undef);
72 is(Internals::SvREADONLY($copy->{question}), 1,
73 "key 'question' not locked in copy?");
/openbsd-current/sbin/fsdb/
H A Dfsdb.h35 extern int reply(char *question);
/openbsd-current/gnu/llvm/clang/lib/Basic/
H A DOperatorPrecedence.cpp53 case tok::question: return prec::Conditional;
/openbsd-current/gnu/llvm/llvm/utils/
H A Ddemangle_tree.py22 question = line.find('?')
23 if question == -1:
26 open_paren = line.find('(', question)
32 mangled = line[question : open_paren]
/openbsd-current/usr.bin/dig/lib/dns/include/dns/
H A Drdataset.h165 * Make 'rdataset' a valid, associated, question rdataset, with a
166 * question class of 'rdclass' and type 'type'.
175 *\li 'rdataset' is a valid, associated, question rdataset.
230 int question,
238 *\li The 'question' flag should normally be #0. If it is
240 * for use when printing an rdata representing a question section.
/openbsd-current/games/quiz/
H A Dquiz.c231 char *answer, *t, question[LINE_SZ]; local
268 (void)strlcpy(question, t, sizeof question);
283 (void)printf("%s?\n", question);
/openbsd-current/usr.bin/dig/lib/dns/
H A Drdataset.c139 * Make 'rdataset' a valid, associated, question rdataset, with a
140 * question class of 'rdclass' and type 'type'.
204 int question = 0; local
219 question = 1;
235 if (!question && count > 1 && rdataset->type != dns_rdatatype_rrsig)
301 if (!question)
311 if (!question) {
H A Dmasterdump.c406 * such as those used to represent the question section
469 int question,
490 if (question)
466 dns_rdataset_totext(dns_rdataset_t *rdataset, dns_name_t *owner_name, int omit_final_dot, int question, isc_buffer_t *target) argument
/openbsd-current/sbin/fsck_ext2fs/
H A Dutilities.c78 reply(char *question) argument
85 persevere = !strcmp(question, "CONTINUE");
88 printf("%s? no\n\n", question);
92 printf("%s? yes\n\n", question);
96 printf("%s? [Fyn?] ", question);
/openbsd-current/sbin/dump/
H A Doptr.c74 query(char *question) argument
85 attnmessage = question;
103 " DUMP: %s: (\"yes\" or \"no\") ", question);
H A Ddump.h93 int query(char *question);
/openbsd-current/sbin/restore/
H A Dutilities.c326 reply(char *question) argument
331 fprintf(stderr, "%s? [yn] ", question);
/openbsd-current/sbin/fsck_ffs/
H A Dutilities.c79 reply(char *question) argument
85 persevere = !strcmp(question, "CONTINUE");
88 printf("%s? no\n\n", question);
93 printf("%s? yes\n\n", question);
98 printf("%s? [Fyn?] ", question);
/openbsd-current/gnu/llvm/clang/lib/Lex/
H A DPPExpressions.cpp566 case tok::question: return 4;
619 else if (Operator == tok::question && LHS.Val == 0)
656 if (Operator == tok::question)
674 case tok::question: // No UAC for x and y in "x ? y : z".
811 case tok::question: {
816 PP.Diag(OpLoc, diag::note_matching) << tok::question; member in class:tok
925 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question),
/openbsd-current/gnu/llvm/clang/lib/Format/
H A DFormatTokenLexer.cpp112 static const tok::TokenKind NullishCoalescingOperator[] = {tok::question,
113 tok::question};
114 static const tok::TokenKind NullPropagatingOperator[] = {tok::question,
136 tok::question, tok::l_square};
202 tok::question) &&
245 {tok::exclaimequal, tok::question},
247 {tok::equalequal, tok::question}},
528 tok::colon, tok::question, tok::tilde) ||
1170 FormatTok->Tok.isOneOf(tok::identifier, tok::question)) {
H A DContinuationIndenter.cpp389 Previous.isNot(tok::question)) ||
969 if (NextNonComment->is(tok::question) ||
970 (PreviousNonComment && PreviousNonComment->is(tok::question))) {
1361 if (!(Tok.is(TT_ConditionalExpr) && Tok.is(tok::question)))
1371 if (Style.BreakBeforeTernaryOperators && Current.is(tok::question))
1377 if (Previous && Previous->is(tok::question))
1551 (PrecedenceLevel == prec::Conditional && Previous->is(tok::question) &&
H A DTokenAnnotator.cpp155 CurrentToken->is(tok::question)) {
191 if (CurrentToken->is(tok::question) &&
197 (CurrentToken->isOneOf(tok::colon, tok::question) && InExprContext &&
691 tok::question, tok::colon, tok::kw_return,
1217 case tok::question:
1909 } else if (Current.is(tok::question)) {
2192 if (Tok.Next->is(tok::question))
2320 tok::equal, tok::question, tok::l_square, tok::l_brace,
2691 if (!Current || !Current->is(tok::question))
4192 if (Left.is(tok::question))
[all...]
/openbsd-current/gnu/llvm/llvm/lib/TableGen/
H A DTGLexer.h44 equal, question, // = ? enumerator in enum:llvm::tgtok::TokKind
H A DTGLexer.cpp178 case '?': return tgtok::question;
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dcommit.c101 struct question { struct
109 struct question *next;
122 struct question *questionables;
178 struct question *p;
180 p = (struct question *) xmalloc (sizeof (struct question));
516 struct question *p;
517 struct question *q;
812 * If the force-commit option is enabled, and the file in question
/openbsd-current/gnu/llvm/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp123 case tok::question:
/openbsd-current/gnu/llvm/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp1107 assert(Tok.is(tok::question));
1112 if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks,
1118 if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks))
1254 case tok::question:
/openbsd-current/gnu/usr.bin/perl/hints/
H A Daix_4.sh590 *** see the file README.os400. Accept the "aix" for the question
H A Daix.sh511 *** see the file README.os400. Accept the "aix" for the question

Completed in 418 milliseconds

123