| /freebsd-14.2/tools/lua/ |
| H A D | template.lua | 162 if byte(view, 1) == SOL then path = sub(view, 2) end 170 return function(view) return func(view, false) end 174 return function(view) return func(view, true) end 257 context.view = template.process(view, context) 259 layout.view = context.view or EMPTY 265 context.view = template.process(view, context) 267 layout.view = context.view 274 context.view = template.process(view, context) 280 context.view = template.process(view, context) 368 view = template.load(view, plain) [all …]
|
| /freebsd-14.2/contrib/wpa/src/utils/ |
| H A D | browser.c | 22 WebKitWebView *view; member 188 title = webkit_web_view_get_title(ctx->view); in view_cb_notify_title() 295 WebKitWebView *view; in hs20_web_browser() local 327 view = WEBKIT_WEB_VIEW(webkit_web_view_new()); in hs20_web_browser() 328 ctx.view = view; in hs20_web_browser() 335 g_signal_connect(G_OBJECT(view), "decide-policy", in hs20_web_browser() 339 g_signal_connect(G_OBJECT(view), "notify::title", in hs20_web_browser() 354 g_signal_connect(G_OBJECT(view), "title-changed", in hs20_web_browser() 361 gtk_widget_grab_focus(GTK_WIDGET(view)); in hs20_web_browser() 364 settings = webkit_web_view_get_settings(view); in hs20_web_browser() [all …]
|
| /freebsd-14.2/contrib/bsnmp/snmp_vacm/ |
| H A D | vacm_snmp.c | 481 if (view != NULL) { in op_vacm_view() 499 memset(view->mask, 0, sizeof(view->mask)); in op_vacm_view() 591 return (string_get(val, view->mask, sizeof(view->mask))); in op_vacm_view() 593 if (view->exclude) in op_vacm_view() 826 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_get_view() 829 return (view); in vacm_get_view() 847 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_get_next_view() 860 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_get_view_by_name() 863 return (view); in vacm_get_view_by_name() 1009 for (view = vacm_first_view(); view != NULL; view = vacm_next_view(view)) in vacm_dump() [all …]
|
| /freebsd-14.2/contrib/unbound/services/ |
| H A D | view.c | 50 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* 148 struct view* v; in views_apply_cfg() 224 struct view* 227 struct view* v; in views_find_view() [all …]
|
| H A D | view.h | 66 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-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | ranges.inc | 53 // [range.view], views 55 using std::ranges::view; 98 // [range.empty], empty view 112 // [range.iota], iota view 144 // [range.all], all view 150 // [range.ref.view], ref view 153 // [range.owning.view], owning view 179 // [range.take], take view 193 // [range.drop], drop view 221 // [range.split], split view [all …]
|
| H A D | string_view.inc | 11 // [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-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | ranges | 62 // [range.view], views 69 concept view = ...; 164 // [range.all], all view 195 // [range.drop], drop view 196 template<view V> 225 template<view V> 230 template<view V> 288 requires view<V> && view<Pattern> && 295 requires view<V> && view<Pattern> && 317 // [range.zip], zip view [all …]
|
| /freebsd-14.2/sys/contrib/xen/hvm/ |
| H A D | hvm_op.h | 43 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-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | StringExtractorGDBRemote.cpp | 643 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 D | StringExtractor.cpp | 341 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-14.2/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | concepts.h | 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 D | split_view.h | 49 requires view<_View> && view<_Pattern> && 122 requires view<_View> && view<_Pattern> && 177 requires view<_View> && view<_Pattern> &&
|
| H A D | all.h | 41 requires ranges::view<decay_t<_Tp>> 49 …requires(!ranges::view<decay_t<_Tp>>) && requires(_Tp&& __t) { ranges::ref_view{std::forward<_Tp>(… in requires() 57 …!ranges::view<decay_t<_Tp>> && !requires(_Tp&& __t) { ranges::ref_view{std::forward<_Tp>(__t)}; } …
|
| /freebsd-14.2/contrib/bsnmp/snmpd/ |
| H A D | main.c | 380 struct vacm_view *view; in snmp_pdu_auth_access() local 470 if ((!suboid && !view->exclude) || (suboid && view->exclude)) { in snmp_pdu_auth_access() 2992 if (view == NULL) in vacm_next_view() 2995 return (SLIST_NEXT(view, vvl)); in vacm_next_view() 3028 if ((view = (struct vacm_view *)malloc(sizeof(*view))) == NULL) in vacm_new_view() 3031 memset(view, 0, sizeof(*view)); in vacm_new_view() 3032 strlcpy(view->viewname, vname, sizeof(view->viewname)); in vacm_new_view() 3038 return (view); in vacm_new_view() 3053 free(view); in vacm_new_view() 3057 return (view); in vacm_new_view() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MBFIWrapper.cpp | 46 void MBFIWrapper::view(const Twine &Name, bool isSimple) { in view() function in MBFIWrapper 47 MBFI.view(Name, isSimple); in view()
|
| H A D | EdgeBundles.cpp | 54 view(); in runOnMachineFunction() 99 void EdgeBundles::view() const { in view() function in EdgeBundles
|
| /freebsd-14.2/contrib/unbound/respip/ |
| H A D | respip.c | 422 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() 927 if(!raddr && !view->isfirst) in respip_rewrite_reply() 929 if(!raddr && view->isfirst) { in respip_rewrite_reply() 931 view = NULL; in respip_rewrite_reply() 1015 if(view) { in respip_rewrite_reply() [all …]
|
| H A D | respip.h | 71 struct view* view; member
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | ringdove | 20 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-14.2/contrib/unbound/daemon/ |
| H A D | acl_list.h | 111 struct view* view; member
|
| /freebsd-14.2/crypto/openssl/doc/internal/man7/ |
| H A D | deprecation.pod | 21 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-14.2/sys/contrib/device-tree/src/arm/ |
| H A D | am335x-osd335x-common.dtsi | 26 * 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-14.2/tools/build/options/ |
| H A D | WITHOUT_VI | 1 Do not build and install vi, view, ex and related programs.
|
| /freebsd-14.2/contrib/googletest/ |
| H A D | README.md | 130 is a VS Code extension allowing to view GoogleTest in a tree view and run/debug 134 Code extension allowing to view GoogleTest in a tree view and run/debug your
|