Home
last modified time | relevance | path

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

1234567891011

/freebsd/tools/lua/
H A Dtemplate.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/contrib/wpa/src/utils/
H A Dbrowser.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/contrib/bsnmp/snmp_vacm/
H A Dvacm_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/contrib/unbound/services/
H A Dview.c2 * services/view.c - named views containing local zones authority service.
43 #include "services/view.h"
51 struct view* a = (struct view*)v1; in view_cmp()
52 struct view* b = (struct view*)v2; in view_cmp()
71 view_delete(struct view* v)
85 struct view* v = (struct view*)n;
99 /** create a new view */ in views_delete()
[all...]
H A Dview.h2 * services/view.h - named views containing local zones authority service.
57 /** lock on the view tree. When locking order, the views lock
60 /** rbtree of struct view */
67 struct view {
70 /** view name.
74 /** view specific local authority zones */
76 /** response-ip configuration data for this view */
78 /** Fallback to global local_zones when there is no match in the view
103 * @param v: view is set up.
110 * Compare two view entrie
66 struct view { global() struct
69 nodeview global() argument
73 nameview global() argument
75 local_zonesview global() argument
77 respip_setview global() argument
102 lockview global() argument
[all...]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dranges.cppm
H A Dranges.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 …]
H A Dstring_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
H A Dstring_view.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A Dranges62 // [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/sys/contrib/xen/hvm/
H A Dhvm_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/contrib/llvm-project/lldb/source/Utility/
H A DStringExtractorGDBRemote.cpp641 llvm::StringRef view = llvm::StringRef(m_packet).substr(m_index); in GetPidTid() local
642 size_t initial_length = view.size(); in GetPidTid()
646 if (view.consume_front("p")) { in GetPidTid()
648 if (view.consume_front("-1")) { in GetPidTid()
651 } else if (view.consumeInteger(16, pid) || pid == 0) { in GetPidTid()
658 if (!view.consume_front(".")) { in GetPidTid()
660 m_index += initial_length - view.size(); in GetPidTid()
667 if (view.consume_front("-1")) { in GetPidTid()
670 } else if (view.consumeInteger(16, tid) || tid == 0 || pid == AllProcesses) { in GetPidTid()
677 m_index += initial_length - view.size(); in GetPidTid()
H A DStringExtractor.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/contrib/llvm-project/libc/src/__support/CPP/
H A Dstring.h64 LIBC_INLINE string(const string_view &view) in string() argument
65 : string(view.data(), view.size()) {} in string()
87 LIBC_INLINE string &operator=(const string_view &view) {
88 return *this = string(view);
203 return buffer.view(); in to_dec_string()
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A Dfpbits_str.h52 s += bits.view(); in str()
59 s += exponent.view(); in str()
68 s += mantissa.view(); in str()
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dsplit_view.h49 requires view<_View> && view<_Pattern> &&
122 requires view<_View> && view<_Pattern> &&
177 requires view<_View> && view<_Pattern> &&
H A Dall.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)}; } …
H A Dconcepts.h98 concept view = range<_Tp> && movable<_Tp> && enable_view<_Tp>; variable
102 view<_Range> && range<const _Range> && same_as<iterator_t<_Range>, iterator_t<const _Range>> &&
135 ((view<remove_cvref_t<_Tp>> && constructible_from<remove_cvref_t<_Tp>, _Tp>) ||
136 (!view<remove_cvref_t<_Tp>> &&
/freebsd/contrib/bsnmp/snmpd/
H A Dmain.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()
2987 vacm_next_view(struct vacm_view *view) in vacm_next_view() argument
2989 if (view == NULL) in vacm_next_view()
2992 return (SLIST_NEXT(view, vvl)); in vacm_next_view()
3019 struct vacm_view *view, *temp, *prev; in vacm_new_view() local
[all …]
/freebsd/contrib/unbound/respip/
H A Drespip.c26 #include "services/view.h"
416 /** Iterate through raw view data and apply the view-specific respip
419 * an error. This additional iteration through view configuration data in respip_views_apply_cfg()
429 struct view* v; in respip_views_apply_cfg()
434 /** if no respip config for this view then there's in respip_views_apply_cfg()
443 log_err("view '%s' unexpectedly missing", cv->name); in respip_views_apply_cfg()
459 "for view '%s'", cv->name); in respip_views_apply_cfg()
887 struct view* view in respip_rewrite_reply()
878 struct view* view = NULL; respip_rewrite_reply() local
[all...]
/freebsd/contrib/file/magic/Magdir/
H A Dringdove20 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/contrib/llvm-project/llvm/lib/CodeGen/
H A DMBFIWrapper.cpp46 void MBFIWrapper::view(const Twine &Name, bool isSimple) { in printBlockFreq()
47 MBFI.view(Name, isSimple); in printBlockFreq()
56 void MBFIWrapper::view(const Twine &Name, bool isSimple) { view() function in MBFIWrapper
H A DEdgeBundles.cpp69 view(); in init()
113 void EdgeBundles::view() const { in view() function in EdgeBundles
/freebsd/contrib/unbound/daemon/
H A Dacl_list.h46 #include "services/view.h"
112 /* view element, NULL if none */
113 struct view* view;
111 struct view* view; global() member
/freebsd/crypto/krb5/src/windows/leash/
H A DLeashUIApplication.cpp226 IUnknown *view, UI_VIEWVERB verb, in OnViewChanged() argument
240 ret = view->QueryInterface(IID_PPV_ARGS(&ribbon)); in OnViewChanged()
249 ret = view->QueryInterface(IID_PPV_ARGS(&ribbon)); in OnViewChanged()

1234567891011