Home
last modified time | relevance | path

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

123456789

/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.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 …]
H A Dview.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/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.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.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()
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/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 Dconcepts.h88 // [range.view], views
94 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>> &&
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)}; } …
/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()
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/contrib/unbound/respip/
H A Drespip.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 …]
H A Drespip.h71 struct view* view; member
/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.cpp54 view(); in runOnMachineFunction()
99 void EdgeBundles::view() const { in view() function in EdgeBundles
/freebsd/contrib/unbound/daemon/
H A Dacl_list.h111 struct view* view; member
/freebsd/crypto/openssl/doc/internal/man7/
H A Ddeprecation.pod21 explicitly removes the symbol from public view.
24 symbols from public view (with the configuration option C<no-deprecated>, or
58 The symbol is planned to be removed from public view, but will otherwise
69 from public view, it should be moved to an internal header file, with the
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Dam335x-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/contrib/googletest/
H A DREADME.md126 is a VS Code extension allowing to view GoogleTest in a tree view and run/debug
130 Code extension allowing to view GoogleTest in a tree view and run/debug your

123456789