Home
last modified time | relevance | path

Searched refs:view (Results 1 – 25 of 223) sorted by relevance

123456789

/freebsd-13-stable/tools/lua/
HDtemplate.lua124 local function rpos(view, s)
126 local c = byte(view, s, s)
136 local function escaped(view, s)
137 if s > 1 and byte(view, s - 1, s - 1) == BSOL then
138 if s > 2 and byte(view, s - 2, s - 2) == BSOL then
157 return function(view, plain)
158 if plain == true then return view end
159 local path, root = view, template.root
162 if byte(view, 1) == SOL then path = sub(view, 2) end
165 return plain == false and assert(read_file(path)) or read_file(path) or view
[all …]
/freebsd-13-stable/contrib/wpa/src/utils/
HDbrowser.c22 WebKitWebView *view; member
91 static void view_cb_notify_estimated_load_progress(WebKitWebView *view, in view_cb_notify_estimated_load_progress() argument
95 ctx->progress = 100 * webkit_web_view_get_estimated_load_progress(view); in view_cb_notify_estimated_load_progress()
102 static void view_cb_resource_load_starting(WebKitWebView *view, in view_cb_resource_load_starting() argument
114 static gboolean view_cb_decide_policy(WebKitWebView *view, in view_cb_decide_policy() argument
157 static void view_cb_mouse_target_changed(WebKitWebView *view, in view_cb_mouse_target_changed() argument
183 static void view_cb_notify_title(WebKitWebView *view, GParamSpec *ps, in view_cb_notify_title() argument
188 title = webkit_web_view_get_title(ctx->view); in view_cb_notify_title()
197 static void view_cb_notify_progress(WebKitWebView *view, GParamSpec *pspec, in view_cb_notify_progress() argument
200 ctx->progress = 100 * webkit_web_view_get_progress(view); in view_cb_notify_progress()
[all …]
/freebsd-13-stable/contrib/bsnmp/snmp_vacm/
HDvacm_snmp.c462 struct vacm_view *view; in op_vacm_view() local
466 if ((view = vacm_get_view(&val->var, sub)) == NULL) in op_vacm_view()
471 if ((view = vacm_get_next_view(&val->var, sub)) == NULL) in op_vacm_view()
473 vacm_append_viewindex(&val->var, sub, view); in op_vacm_view()
477 if ((view = vacm_get_view(&val->var, sub)) == NULL && in op_vacm_view()
481 if (view != NULL) { in op_vacm_view()
483 view->type == StorageType_readOnly) in op_vacm_view()
485 if (view->status == RowStatus_active && in op_vacm_view()
492 if (val->v.octetstring.len > sizeof(view->mask)) in op_vacm_view()
493 ctx->scratch->ptr1 = malloc(sizeof(view->mask)); in op_vacm_view()
[all …]
/freebsd-13-stable/contrib/unbound/services/
HDview.c50 struct view* a = (struct view*)v1; in view_cmp()
51 struct view* b = (struct view*)v2; in view_cmp()
75 view_delete(struct view* v) in view_delete()
89 struct view* v = (struct view*)n; in delviewnode()
104 static struct view*
107 struct view* v = (struct view*)calloc(1, sizeof(*v)); in view_create()
121 static struct view*
124 struct view* v = view_create(name); in views_enter_view_name()
148 struct view* v; in views_apply_cfg()
224 struct view*
[all …]
HDview.h66 struct view { struct
120 void view_delete(struct view* v);
136 struct view* views_find_view(struct views* vs, const char* name, int write);
/freebsd-13-stable/contrib/llvm-project/libcxx/modules/std/
HDranges.inc53 // [range.view], views
55 using std::ranges::view;
69 // [view.interface], class template view_­interface
98 // [range.empty], empty view
105 // [range.single], single view
112 // [range.iota], iota view
120 // [range.repeat], repeat view
129 // [range.istream], istream view
158 // [range.all], all view
164 // [range.ref.view], ref view
[all …]
HDstring_view.inc11 // [string.view.template], class template basic_string_view
19 // [string.view.comparison], non-member comparison functions
23 // [string.view.io], inserters and extractors
37 // [string.view.hash], hash support
42 // [string.view.literals], suffix for basic_string_view literals
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
HDranges62 // [range.view], views
69 concept view = ...;
101 // [view.interface], class template view_interface
125 // [range.elements], elements view
147 template<class C, input_range R, class... Args> requires (!view<C>)
151 template<class C, class... Args> requires (!view<C>)
156 // [range.empty], empty view
169 // [range.all], all view
191 // [range.filter], filter view
193 requires view<V> && is_object_v<Pred>
[all …]
/freebsd-13-stable/sys/xen/interface/hvm/
HDhvm_op.h43 uint16_t view; member
51 uint16_t view; member
254 uint16_t view; member
263 uint16_t view; member
276 uint16_t view; member
288 uint16_t view; member
305 uint16_t view; member
367 struct xen_hvm_altp2m_view view; member
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
HDStringExtractorGDBRemote.cpp643 llvm::StringRef view = llvm::StringRef(m_packet).substr(m_index); in GetPidTid() local
644 size_t initial_length = view.size(); in GetPidTid()
648 if (view.consume_front("p")) { in GetPidTid()
650 if (view.consume_front("-1")) { in GetPidTid()
653 } else if (view.consumeInteger(16, pid) || pid == 0) { in GetPidTid()
660 if (!view.consume_front(".")) { in GetPidTid()
662 m_index += initial_length - view.size(); in GetPidTid()
669 if (view.consume_front("-1")) { in GetPidTid()
672 } else if (view.consumeInteger(16, tid) || tid == 0 || pid == AllProcesses) { in GetPidTid()
679 m_index += initial_length - view.size(); in GetPidTid()
HDStringExtractor.cpp341 llvm::StringRef view(m_packet); in GetNameColonValue() local
342 if (view.empty()) in GetNameColonValue()
346 view = view.substr(m_index); in GetNameColonValue()
347 std::tie(a, b) = view.split(':'); in GetNameColonValue()
359 size_t bytes_consumed = d.data() - view.data(); in GetNameColonValue()
/freebsd-13-stable/contrib/apr/
HDCHANGES54 *) http://svn.apache.org/viewvc/apr/apr/branches/1.6.x/CHANGES?view=markup
58 *) http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/CHANGES?view=markup
62 *) http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/CHANGES?view=markup
66 *) http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/CHANGES?view=markup
70 *) http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/CHANGES?view=markup
74 *) http://svn.apache.org/viewvc/apr/apr/branches/1.1.x/CHANGES?view=markup
78 *) http://svn.apache.org/viewvc/apr/apr/branches/1.0.x/CHANGES?view=markup
82 *) http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/CHANGES?view=markup
/freebsd-13-stable/contrib/apr-util/
HDCHANGES59 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/CHANGES?view=markup
63 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/CHANGES?view=markup
67 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/CHANGES?view=markup
71 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/CHANGES?view=markup
75 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.1.x/CHANGES?view=markup
79 *) http://svn.apache.org/viewvc/apr/apr-util/branches/1.0.x/CHANGES?view=markup
83 *) http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/CHANGES?view=markup
/freebsd-13-stable/contrib/llvm-project/libcxx/include/__ranges/
HDconcepts.h94 concept view = range<_Tp> && movable<_Tp> && enable_view<_Tp>; variable
98 view<_Range> && range<const _Range> && same_as<iterator_t<_Range>, iterator_t<const _Range>> &&
131 ((view<remove_cvref_t<_Tp>> && constructible_from<remove_cvref_t<_Tp>, _Tp>) ||
132 (!view<remove_cvref_t<_Tp>> &&
HDsplit_view.h49 requires view<_View> && view<_Pattern> &&
122 requires view<_View> && view<_Pattern> &&
177 requires view<_View> && view<_Pattern> &&
HDall.h41 requires ranges::view<decay_t<_Tp>>
48 …requires(!ranges::view<decay_t<_Tp>>) && requires(_Tp&& __t) { ranges::ref_view{std::forward<_Tp>(… in requires()
56 …!ranges::view<decay_t<_Tp>> && !requires(_Tp&& __t) { ranges::ref_view{std::forward<_Tp>(__t)}; } …
/freebsd-13-stable/contrib/bsnmp/snmpd/
HDmain.c380 struct vacm_view *view; in snmp_pdu_auth_access() local
444 if ((view = acl->read_view) == NULL) in snmp_pdu_auth_access()
449 if ((view = acl->write_view) == NULL) in snmp_pdu_auth_access()
457 if ((view = acl->notify_view) == NULL) in snmp_pdu_auth_access()
469 suboid = asn_is_suboid(&view->subtree, &pdu->bindings[i].var); in snmp_pdu_auth_access()
470 if ((!suboid && !view->exclude) || (suboid && view->exclude)) { in snmp_pdu_auth_access()
2990 vacm_next_view(struct vacm_view *view) in vacm_next_view() argument
2992 if (view == NULL) in vacm_next_view()
2995 return (SLIST_NEXT(view, vvl)); in vacm_next_view()
3022 struct vacm_view *view, *temp, *prev; in vacm_new_view() local
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDMBFIWrapper.cpp46 void MBFIWrapper::view(const Twine &Name, bool isSimple) { in view() function in MBFIWrapper
47 MBFI.view(Name, isSimple); in view()
HDEdgeBundles.cpp54 view(); in runOnMachineFunction()
99 void EdgeBundles::view() const { in view() function in EdgeBundles
/freebsd-13-stable/contrib/unbound/respip/
HDrespip.c422 struct view* v; in respip_views_apply_cfg()
878 struct view* view = NULL; in respip_rewrite_reply() local
902 view = cinfo->view; in respip_rewrite_reply()
917 if(view) { in respip_rewrite_reply()
918 lock_rw_rdlock(&view->lock); in respip_rewrite_reply()
919 if(view->respip_set) { in respip_rewrite_reply()
921 view->respip_set, &rrset_id, &rr_id))) { in respip_rewrite_reply()
927 if(!raddr && !view->isfirst) in respip_rewrite_reply()
929 if(!raddr && view->isfirst) { in respip_rewrite_reply()
930 lock_rw_unlock(&view->lock); in respip_rewrite_reply()
[all …]
HDrespip.h71 struct view* view; member
/freebsd-13-stable/contrib/file/magic/Magdir/
HDringdove20 0 regex/128l li:pcb-rnd-view-list-v[0-9]+[\ \t\r\n]*[{] pcb-rnd view list (lihata)
21 0 regex/128l li:view-list-v[0-9]+[\ \t\r\n]*[{] pcb-rnd view list (lihata)
/freebsd-13-stable/contrib/unbound/daemon/
HDacl_list.h111 struct view* view; member
/freebsd-13-stable/sys/contrib/device-tree/src/arm/
HDam335x-osd335x-common.dtsi26 * Therefore, from a DEVICE_ID revision point of view, the silicon looks
27 * like it is Revision 2.1. However, from an EFUSE_SMA point of view for
/freebsd-13-stable/tools/build/options/
HDWITHOUT_VI1 Do not build and install vi, view, ex and related programs.

123456789