Searched refs:kind (Results 251 - 275 of 777) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dreps-strings.c55 the representation referred to by X has an unknown node kind. */
59 _("Unknown node kind for representation '%s'"), x)
88 rep->kind = rep_kind_fulltext;
108 if (rep->kind != rep_kind_delta)
478 if (rep->kind == rep_kind_fulltext)
483 else if (rep->kind == rep_kind_delta)
518 while (rep->kind == rep_kind_delta
523 if (rep->kind != rep_kind_delta && rep->kind != rep_kind_fulltext)
526 if (rep->kind
[all...]
H A Drevs-txns.c71 if (expect_dead && (txn->kind != transaction_kind_dead))
74 if ((! expect_dead) && (txn->kind == transaction_kind_dead))
356 if (txn->kind != transaction_kind_normal)
362 txn->kind = transaction_kind_committed;
392 if (txn->kind != transaction_kind_normal)
411 if (txn->kind != transaction_kind_normal)
433 if (txn->kind != transaction_kind_normal)
456 if (txn->kind != transaction_kind_normal)
488 if (txn->kind != transaction_kind_normal)
581 if (txn->kind !
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Drev_hunt.c319 svn_node_kind_t kind;
342 SVN_ERR(svn_fs_check_path(&kind, start_root, path, pool));
343 if (kind == svn_node_none)
352 SVN_ERR(svn_fs_check_path(&kind, root, path, pool));
353 if (kind != svn_node_none)
447 SVN_ERR(svn_fs_check_path(&kind, root, path, iterpool));
448 if (kind == svn_node_none)
767 svn_node_kind_t kind;
774 SVN_ERR(svn_fs_check_path(&kind, cur_rev_root, path, currpool));
775 if (kind
318 svn_node_kind_t kind; local
766 svn_node_kind_t kind; local
1127 svn_node_kind_t kind; local
1290 svn_node_kind_t kind; local
1498 svn_node_kind_t kind; local
[all...]
H A Ddump.c789 fetch_kind_func(svn_node_kind_t *kind,
796 different kind than EXPECTED_KIND. If the latter is svn_node_unknown,
811 svn_node_kind_t kind = svn_node_none;
824 SVN_ERR(fetch_kind_func(&kind, eb, path, revision, scratch_pool));
827 if (kind == svn_node_none)
832 if (expected_kind != kind && expected_kind != svn_node_unknown)
834 _("Unexpected node kind %d for '%s' at r%ld. "
835 "Expected kind was %d."),
836 kind, path, revision, expected_kind);
854 svn_node_kind_t kind
807 svn_node_kind_t kind = svn_node_none; local
850 svn_node_kind_t kind = svn_node_none; local
1119 dump_node(struct edit_baton *eb, const char *path, svn_node_kind_t kind, enum svn_node_action action, svn_boolean_t is_copy, const char *cmp_path, svn_revnum_t cmp_rev, apr_pool_t *pool) argument
1820 fetch_kind_func(svn_node_kind_t *kind, void *baton, const char *path, svn_revnum_t base_revision, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_lock.h547 // FIXME - We should go through and figure out which lock kind works best for
549 // that explicit lock kind (and get rid of this section).
906 #define KMP_BIND_USER_LOCK_TEMPLATE(nest, kind, suffix) \
909 kmp_user_lock_p, kmp_int32))__kmp_acquire##nest##kind##_##suffix; \
911 kmp_user_lock_p, kmp_int32))__kmp_release##nest##kind##_##suffix; \
913 kmp_user_lock_p, kmp_int32))__kmp_test##nest##kind##_##suffix; \
915 (void (*)(kmp_user_lock_p))__kmp_init##nest##kind##_##suffix; \
917 (void (*)(kmp_user_lock_p))__kmp_destroy##nest##kind##_##suffix; \
920 #define KMP_BIND_USER_LOCK(kind) KMP_BIND_USER_LOCK_TEMPLATE(_, kind, loc
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnrdump/
H A Dsvnrdump.c706 if (opt_baton->start_revision.kind == svn_opt_revision_number)
710 else if (opt_baton->start_revision.kind == svn_opt_revision_head)
712 opt_baton->start_revision.kind = svn_opt_revision_number;
715 else if (opt_baton->start_revision.kind == svn_opt_revision_unspecified)
717 opt_baton->start_revision.kind = svn_opt_revision_number;
721 if (opt_baton->start_revision.kind != svn_opt_revision_number)
741 if (opt_baton->end_revision.kind == svn_opt_revision_unspecified)
743 opt_baton->end_revision.kind = svn_opt_revision_number;
749 else if (opt_baton->end_revision.kind == svn_opt_revision_head)
751 opt_baton->end_revision.kind
[all...]
H A Ddump_editor.c133 fetch_kind_func(svn_node_kind_t *kind, argument
147 SVN_ERR(svn_ra_check_path(eb->ra_session, path, base_revision, kind,
/freebsd-11-stable/lib/libedit/
H A Dtty.c939 tty__get_flag(struct termios *t, int kind) { argument
940 switch (kind) {
957 tty_update_flag(EditLine *el, tcflag_t f, int mode, int kind) argument
959 f &= ~el->el_tty.t_t[mode][kind].t_clrmask;
960 f |= el->el_tty.t_t[mode][kind].t_setmask;
966 tty_update_flags(EditLine *el, int kind) argument
969 tt = tty__get_flag(&el->el_tty.t_ts, kind);
970 ed = tty__get_flag(&el->el_tty.t_ed, kind);
971 ex = tty__get_flag(&el->el_tty.t_ex, kind);
973 if (*tt != *ex && (kind !
1335 int kind; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h28 CompilerContext(CompilerContextKind t, ConstString n) : kind(t), name(n) {}
31 return kind == rhs.kind && name == rhs.name;
37 CompilerContextKind kind; member in struct:lldb_private::CompilerContext
428 const lldb::MemberFunctionKind &kind)
429 : m_type(type), m_decl(decl), m_name(name), m_kind(kind) {}
426 TypeMemberFunctionImpl(const CompilerType &type, const CompilerDecl &decl, const std::string &name, const lldb::MemberFunctionKind &kind) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Dstat.c58 svn_node_kind_t *kind,
92 *kind = svn_node_none;
113 *kind = svn_node_dir;
115 *kind = svn_node_file;
176 fdb->entry->kind = svn_node_dir;
180 fdb->entry->kind = svn_node_file;
457 /* Always request node kind to check that path is really a
53 svn_ra_serf__check_path(svn_ra_session_t *ra_session, const char *relpath, svn_revnum_t revision, svn_node_kind_t *kind, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dcl-conflicts.c64 local_reason_str(svn_node_kind_t kind, svn_wc_conflict_reason_t reason, argument
67 switch (kind)
156 incoming_action_str(svn_node_kind_t kind, svn_wc_conflict_action_t action) argument
158 switch (kind)
298 /* Determine the node kind of the incoming change. */
312 * ### For 'replace', the node kind is ambiguous. However, src_left
351 svn_node_kind_t kind,
356 action_s = incoming_action_str(kind, action);
396 svn_hash_sets(att_hash, "kind", svn_cl__node_kind_str_xml(node_kind));
420 svn_hash_sets(att_hash, "kind",
347 svn_cl__get_human_readable_action_description( const char **desc, svn_wc_conflict_action_t action, svn_wc_operation_t operation, svn_node_kind_t kind, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/contrib/gcc/cp/
H A Dname-lookup.c403 kind of entity.
457 && binding->scope->kind != sk_class
541 if (b->kind == sk_namespace)
958 if (b->kind == sk_function_parms)
1182 /* Return a string describing the kind of SCOPE we have. */
1200 const scope_kind kind = scope->explicit_spec_p
1201 ? sk_template_spec : scope->kind;
1203 return scope_kind_names[kind];
1263 begin_scope (scope_kind kind, tree entity)
1279 switch (kind)
1198 const scope_kind kind = scope->explicit_spec_p local
1261 begin_scope(scope_kind kind, tree entity) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db.h622 The node's kind is described by KIND, and the reason for its absence
643 svn_node_kind_t kind,
656 The node's kind is described by KIND, and the reason for its absence
674 svn_node_kind_t kind,
774 svn_node_kind_t *kind,
798 svn_node_kind_t kind; member in struct:svn_wc__db_base_info_t
1183 When KIND is requested then the value will be set to the kind of external.
1209 svn_node_kind_t *kind,
1696 * Set *KIND to the node kind of the reverted node.
1704 svn_node_kind_t *kind,
1714 svn_node_kind_t kind; member in struct:svn_wc__db_revert_list_copied_child_info_t
1988 svn_node_kind_t kind; member in struct:svn_wc__db_info_t
2068 svn_node_kind_t kind; member in struct:svn_wc__db_walker_info_t
[all...]
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A DdecContext.c43 /* kind selects the required set of default values, one of: */
53 decContextDefault (decContext * context, Int kind) argument
66 switch (kind)
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_benchmark.c85 char *kind)
90 kind, n, size >> 10, sdomain, ddomain, time,
82 radeon_benchmark_log_results(int n, unsigned size, unsigned int time, unsigned sdomain, unsigned ddomain, char *kind) argument
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_mutexattr.c109 _pthread_mutexattr_setkind_np(pthread_mutexattr_t *attr, int kind) argument
116 (*attr)->m_type = kind;
/freebsd-11-stable/stand/ficl/
H A Dtools.c208 WORDKIND kind = ficlWordClassify(pFW); local
211 switch (kind)
297 ** CFA of the word to decompile for each kind of
305 WORDKIND kind; local
308 kind = ficlWordClassify(pFW);
310 switch (kind)
414 ** or a does> word. This is the easy kind of step.
444 WORDKIND kind; local
449 kind = ficlWordClassify(pFW);
451 switch (kind)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp49 TypeSummaryImpl::TypeSummaryImpl(Kind kind, const TypeSummaryImpl::Flags &flags) argument
50 : m_flags(flags), m_kind(kind) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h39 bool valid() const { return kind() != Kind(0); }
43 Kind kind() const { function in class:llvm::codeview::CVRecord
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp134 lldb::RegisterKind kind, uint32_t num) {
137 return m_reg_ctx_sp->ConvertRegisterKindToRegisterNumber(kind, num);
133 ConvertRegisterKindToRegisterNumber( lldb::RegisterKind kind, uint32_t num) argument
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp60 if (SS.kind() != DebugSubsectionKind::Symbols)
141 // If this is a tag kind and this is a PDB input, mark the complete type as
146 switch (Rec->kind()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DTpiHashing.cpp89 switch (Type.kind()) {
106 switch (Rec.kind()) {
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dfs.h490 /* node kind */ member in struct:svn_fs_x__noderev_t
491 svn_node_kind_t kind;
528 /** The node kind. */ member in struct:svn_fs_x__dirent_t
529 svn_node_kind_t kind;
/freebsd-11-stable/contrib/subversion/subversion/svnbench/
H A Dnull-log-cmd.c177 if (target_peg_revision.kind == svn_opt_revision_unspecified)
178 target_peg_revision.kind = (svn_path_is_url(target)
H A Dnull-list-cmd.c75 if (dirent->kind == svn_node_dir)
77 if (dirent->kind == svn_node_file)

Completed in 230 milliseconds

<<11121314151617181920>>