Searched refs:kind (Results 176 - 200 of 260) sorted by relevance

1234567891011

/freebsd-9.3-release/contrib/gcc/cp/
H A Dparser.c67 /* The kind of token. */
873 make_declarator (cp_declarator_kind kind)
878 declarator->kind = kind;
888 UNQUALIFIED_NAME. SFK indicates the kind of special function this
1041 if (declarator->kind == cdk_function
1042 && declarator->declarator->kind == cdk_id)
1044 if (declarator->kind == cdk_id
1045 || declarator->kind == cdk_error)
2115 && (declarator->kind
871 make_declarator(cp_declarator_kind kind) argument
18263 cp_parser_omp_var_list_no_open(cp_parser *parser, enum omp_clause_code kind, tree list) argument
18319 cp_parser_omp_var_list(cp_parser *parser, enum omp_clause_code kind, tree list) argument
18332 enum omp_clause_default_kind kind = OMP_CLAUSE_DEFAULT_UNSPECIFIED; local
[all...]
H A Dtypeck.c1861 base_kind kind;
1864 member_scope, ba_unique, &kind);
1871 if (null_object_p && kind == bk_via_virtual)
2935 conversions on the operands. CODE is the kind of expression to build. */
2981 CODE is the kind of expression to build.
4520 If ARG is not a kind of expression we can handle, return
5942 Note that the naming of FROM and TO is kind of backwards; the return
5953 base_kind kind;
5958 binfo = lookup_base (to, from, c_cast_p ? ba_unique : ba_check, &kind);
5959 if (kind
1856 base_kind kind; local
5938 base_kind kind; local
[all...]
H A Dsemantics.c2494 If an error occurs, and it is the kind of error that might cause
3953 enum omp_clause_default_kind kind;
3955 kind = c_omp_predetermined_sharing (decl);
3956 if (kind != OMP_CLAUSE_DEFAULT_UNSPECIFIED)
3957 return kind;
3952 enum omp_clause_default_kind kind; local
/freebsd-9.3-release/contrib/llvm/lib/TableGen/
H A DRecord.cpp208 RecTyKind kind = RHS->getRecTyKind();
209 return (kind == BitRecTyKind && Size == 1) || (kind == IntRecTyKind);
234 RecTyKind kind = RHS->getRecTyKind(); local
235 return kind==BitRecTyKind || kind==BitsRecTyKind || kind==IntRecTyKind;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h49 /// In a C++ template, this expression node kind will be used whenever
78 /// \brief Returns the kind of overloaded operator that this
188 CastKind kind, Expr *op, unsigned PathSize,
192 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
232 CXXStaticCastExpr(QualType ty, ExprValueKind vk, CastKind kind, Expr *op, argument
236 : CXXNamedCastExpr(CXXStaticCastExprClass, ty, vk, kind, op, pathSize,
263 CXXDynamicCastExpr(QualType ty, ExprValueKind VK, CastKind kind, argument
267 : CXXNamedCastExpr(CXXDynamicCastExprClass, ty, VK, kind, op, pathSize,
300 CXXReinterpretCastExpr(QualType ty, ExprValueKind vk, CastKind kind, argument
305 : CXXNamedCastExpr(CXXReinterpretCastExprClass, ty, vk, kind, o
187 CXXNamedCastExpr(StmtClass SC, QualType ty, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy, SourceLocation l, SourceLocation RParenLoc, SourceRange AngleBrackets) argument
[all...]
/freebsd-9.3-release/sys/dev/bxe/
H A Dbxe_stats.c118 " kind %d\n"
124 sc->fw_stats_req->query[i].kind,
1534 cur_query_entry->kind = STATS_TYPE_PORT;
1548 cur_query_entry->kind = STATS_TYPE_PF;
1563 cur_query_entry->kind = STATS_TYPE_FCOE;
1591 cur_query_entry->kind = STATS_TYPE_QUEUE;
1606 cur_query_entry->kind = STATS_TYPE_QUEUE;
/freebsd-9.3-release/usr.bin/xlint/lint1/
H A Ddecl.c452 * Also detect multiple qualifiers of the same kind.
1499 * kind is the kind of the tag (STRUCT/UNION/ENUM)
1505 mktag(sym_t *tag, tspec_t kind, int decl, int semi) argument
1510 if (kind == STRUCT) {
1512 } else if (kind == UNION) {
1514 } else if (kind == ENUM) {
1550 tp->t_tspec = kind;
1551 if (kind != ENUM) {
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgo32-nat.c440 status->kind = TARGET_WAITKIND_EXITED;
446 status->kind = TARGET_WAITKIND_STOPPED;
454 status->kind = TARGET_WAITKIND_SIGNALLED;
H A Dremote.c2896 status->kind = TARGET_WAITKIND_EXITED;
3013 status->kind = TARGET_WAITKIND_STOPPED;
3026 status->kind = TARGET_WAITKIND_EXITED;
3031 status->kind = TARGET_WAITKIND_SIGNALLED;
3079 status->kind = TARGET_WAITKIND_EXITED;
3202 status->kind = TARGET_WAITKIND_STOPPED;
3215 status->kind = TARGET_WAITKIND_EXITED;
3220 status->kind = TARGET_WAITKIND_SIGNALLED;
3230 status->kind = TARGET_WAITKIND_IGNORE;
H A Dthread-db.c897 if (ourstatus->kind == TARGET_WAITKIND_EXITED)
900 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
H A Dinfttrace.c322 * what kind (user command, fork, vfork).
3517 hpux_has_syscall_event (int pid, enum target_waitkind *kind, int *syscall_id)
3544 *kind = TARGET_WAITKIND_SPURIOUS; /* Until proven otherwise... */
3548 *kind = TARGET_WAITKIND_SYSCALL_ENTRY;
3550 *kind = TARGET_WAITKIND_SYSCALL_RETURN;
3503 hpux_has_syscall_event(int pid, enum target_waitkind *kind, int *syscall_id) argument
H A Dremote-rdi.c475 status->kind = (execute_status == RDIError_NoError ?
H A Duw-thread.c747 if (status->kind == TARGET_WAITKIND_STOPPED &&
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h127 const Kind kind; member in class:clang::ento::MemRegion
130 MemRegion(Kind k) : kind(k) {}
187 Kind getKind() const { return kind; }
/freebsd-9.3-release/sys/kern/
H A Dkern_sysctl.c461 int number, const char *name, int kind, void *arg1, intptr_t arg2,
493 oidp->oid_kind = CTLFLAG_DYN | kind;
494 if ((kind & CTLTYPE) == CTLTYPE_NODE) {
593 * {0,4,...} return the kind & format info for the "..." OID.
1127 * Handle any kind of opaque data.
460 sysctl_add_oid(struct sysctl_ctx_list *clist, struct sysctl_oid_list *parent, int number, const char *name, int kind, void *arg1, intptr_t arg2, int (*handler)(SYSCTL_HANDLER_ARGS), const char *fmt, const char *descr) argument
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-ccp.c845 enum tree_code_class kind = TREE_CODE_CLASS (code); local
877 if (kind == tcc_unary)
899 else if (kind == tcc_binary
900 || kind == tcc_comparison
1374 /* Any other kind of statement is not interesting for constant
H A Dfix-header.c526 recognized_function (const cpp_token *fname, unsigned int line, int kind,
548 if (kind == 'I') /* don't edit inline function */
525 recognized_function(const cpp_token *fname, unsigned int line, int kind, int have_arg_list) argument
H A Dprint-tree.c384 enum tls_model kind = DECL_TLS_MODEL (node);
385 switch (kind)
383 enum tls_model kind = DECL_TLS_MODEL (node); local
H A Dvarasm.c2195 /* Return the assembler directive for creating a given kind of integer
2268 /* See if the target hook can handle this kind of object. */
3591 /* Determine what kind of relocations EXP may need. */
5221 enum tls_model kind;
5228 kind = TLS_MODEL_LOCAL_EXEC;
5230 kind = TLS_MODEL_INITIAL_EXEC;
5236 kind = TLS_MODEL_LOCAL_DYNAMIC;
5238 kind = TLS_MODEL_GLOBAL_DYNAMIC;
5239 if (kind < flag_tls_default)
5240 kind
5195 enum tls_model kind; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/macho-dump/
H A Dmacho-dump.cpp293 << " ('kind', " << DICE.kind << ")\n";
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp72 // LLVM register Num, which has kind Kind. In some ways it might be
107 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) argument
108 : Kind(kind), StartLoc(startLoc), EndLoc(endLoc)
519 // says what kind of address register we're using (ADDR32Reg or ADDR64Reg).
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseTemplate.cpp858 /// \param TNK the kind of template that \p Template
1364 tok::TokenKind kind = Tok.getKind(); local
1371 if (kind == tok::kw_try) {
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_cg.c195 uint_t kind; local
200 kind = ctf_type_kind(ctfp, type);
201 assert(kind == CTF_K_POINTER || kind == CTF_K_ARRAY);
203 if (kind == CTF_K_ARRAY) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp966 ObjCPropertyDecl::PropertyAttributeKind kind local
970 if ((kind & ObjCPropertyDecl::OBJC_PR_weak) &&
1010 !(kind & ObjCPropertyDecl::OBJC_PR_strong)) {
1016 getImpliedARCOwnership(kind, PropertyIvarType);
1043 if (kind & ObjCPropertyDecl::OBJC_PR_weak &&
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-ia64.c5048 stmt_float_cons (kind)
5049 int kind;
5053 switch (kind)
5070 float_cons (kind);
5085 dot_xfloat_cons (kind)
5086 int kind;
5088 cross_section (kind, stmt_float_cons, 0);
5106 dot_xfloat_cons_ua (kind)
5107 int kind;
5109 cross_section (kind, float_con
11886 const char *kind; local
[all...]

Completed in 508 milliseconds

1234567891011