Home
last modified time | relevance | path

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

123456

/freebsd-14.2/contrib/ntp/sntp/libevent/test/
H A Dregress_testutils.c153 char *question; in regress_dns_server_cb() local
159 question = req->questions[0]->name; in regress_dns_server_cb()
161 while (tab->q && evutil_ascii_strcasecmp(question, tab->q) && in regress_dns_server_cb()
165 TT_DIE(("Unexpected question: '%s'", question)); in regress_dns_server_cb()
170 strtolower(question); in regress_dns_server_cb()
198 evdns_server_request_add_a_reply(req, question, 1, &in.s_addr, in regress_dns_server_cb()
206 question, 1, &in6.s6_addr, 100); in regress_dns_server_cb()
/freebsd-14.2/contrib/libevent/test/
H A Dregress_testutils.c153 char *question; in regress_dns_server_cb() local
159 question = req->questions[0]->name; in regress_dns_server_cb()
161 while (tab->q && evutil_ascii_strcasecmp(question, tab->q) && in regress_dns_server_cb()
165 TT_DIE(("Unexpected question: '%s'", question)); in regress_dns_server_cb()
170 strtolower(question); in regress_dns_server_cb()
198 evdns_server_request_add_a_reply(req, question, 1, &in.s_addr, in regress_dns_server_cb()
206 question, 1, &in6.s6_addr, 100); in regress_dns_server_cb()
/freebsd-14.2/sbin/dump/
H A Doptr.c77 query(const char *question) in query() argument
85 attnmessage = question; in query()
103 " DUMP: %s: (\"yes\" or \"no\") ", question); in query()
H A Ddump.h97 int query(const char *question);
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp568 case tok::question: return 4; in getPrecedence()
621 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr()
658 if (Operator == tok::question) in EvaluateDirectiveSubExpr()
676 case tok::question: // No UAC for x and y in "x ? y : z". in EvaluateDirectiveSubExpr()
813 case tok::question: { in EvaluateDirectiveSubExpr()
818 PP.Diag(OpLoc, diag::note_matching) << tok::question; in EvaluateDirectiveSubExpr()
927 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question), in EvaluateDirectiveExpression()
/freebsd-14.2/contrib/one-true-awk/testdir/
H A Dt.be1 # some question of what FILENAME ought to be before execution.
/freebsd-14.2/usr.bin/indent/
H A Dindent_codes.h46 #define question 7 macro
/freebsd-14.2/contrib/libfido2/.github/ISSUE_TEMPLATE/
H A Dconfig.yml6 - name: Ask a question about libfido2
/freebsd-14.2/sbin/fsdb/
H A Dfsdb.h35 extern int reply(const char *question);
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp121 static const tok::TokenKind NullishCoalescingOperator[] = {tok::question, in tryMergePreviousTokens()
122 tok::question}; in tryMergePreviousTokens()
123 static const tok::TokenKind NullPropagatingOperator[] = {tok::question, in tryMergePreviousTokens()
145 tok::question, tok::l_square}; in tryMergePreviousTokens()
211 tok::question) && in tryMergePreviousTokens()
254 {tok::exclaimequal, tok::question}, in tryMergePreviousTokens()
256 {tok::equalequal, tok::question}}, in tryMergePreviousTokens()
570 tok::colon, tok::question, tok::tilde) || in precedesOperand()
1284 FormatTok->Tok.isOneOf(tok::identifier, tok::question)) { in getNextToken()
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DOperatorPrecedence.cpp53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
/freebsd-14.2/sbin/restore/
H A Dutilities.c386 reply(char *question) in reply() argument
391 fprintf(stderr, "%s? [yn] ", question); in reply()
/freebsd-14.2/sys/contrib/device-tree/Bindings/arm/omap/
H A Dprm-inst.txt22 - #reset-cells: Should be 1 if the PRM instance in question supports resets.
/freebsd-14.2/contrib/googletest/docs/
H A Dindex.md13 * [GoogleTest FAQ](faq.md) - Have a question? Want some tips? Check here
/freebsd-14.2/contrib/bmake/unit-tests/
H A Dvarmod-subst.exp32 1 two 3 question mark
/freebsd-14.2/sbin/fsck_ffs/
H A Dfsutil.c124 reply(const char *question) in reply() argument
131 persevere = strcmp(question, "CONTINUE") == 0 || in reply()
132 strcmp(question, "LOOK FOR ALTERNATE SUPERBLOCKS") == 0; in reply()
135 printf("%s? no\n\n", question); in reply()
140 printf("%s? yes\n\n", question); in reply()
144 printf("%s? [yn] ", question); in reply()
/freebsd-14.2/sys/contrib/device-tree/Bindings/display/bridge/
H A Dtda998x.txt27 in question is used. The implementation allows one or two DAIs. If two
H A Dnxp,tda998x.yaml43 DAI in question is used.
/freebsd-14.2/sys/contrib/device-tree/Bindings/bus/
H A Dti-sysc.txt44 target module in question such as revision, sysc and syss
47 interconnect target module in question such as
/freebsd-14.2/tools/tools/nanobsd/embedded/
H A Dqemu-powerpc.cfg28 # Open question: do we have one for MAC G4 and one for Book-E?
/freebsd-14.2/crypto/openssl/doc/man3/
H A DOPENSSL_instrument_bus.pod18 subroutines in question instrument these references for purposes of
/freebsd-14.2/sys/contrib/device-tree/Bindings/
H A DABI.rst10 "That still leaves the question of, what does a stable binding look
/freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h53 question, // ? enumerator
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp1111 assert(Tok.is(tok::question)); in ConsumeAndStoreConditional()
1116 if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks, in ConsumeAndStoreConditional()
1122 if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks)) in ConsumeAndStoreConditional()
1259 case tok::question: in ConsumeAndStoreInitializer()
/freebsd-14.2/usr.sbin/bsdconfig/timezone/
H A DUSAGE42 -s Skip the initial question about adjusting the clock if

123456