Home
last modified time | relevance | path

Searched refs:IRef (Results 1 – 25 of 109) sorted by relevance

12345

/dports/devel/fc++/FC++.1.5/
H A Dref_count.h135 class IRef {
138 static void swap( IRef<T>& x, IRef<T>& y ) { in swap()
143 static void rotate( IRef<T>& x, IRef<T>& y, IRef<T>& z ) { in rotate()
152 explicit IRef(T* p=0) : ptr(p) { in ptr()
157 IRef(const IRef<T>& other) : ptr(other.ptr) { in IRef() function
162 ~IRef() { in ~IRef()
167 IRef<T>& operator=(const IRef<T>& other) {
177 bool operator==(const IRef<T>& other) const {
180 bool operator!=(const IRef<T>& other) const {
H A Dreuse.h76 IRef<const M> ref;
80 if( !ref ) ref = IRef<const M>( new M(f) );
114 IRef<const M> ref;
118 if( !ref ) ref = IRef<const M>( new M(f,x) );
155 IRef<const M> ref;
159 if( !ref ) ref = IRef<const M>( new M(f,x,y) );
203 IRef<const M> ref;
207 if( !ref ) ref = IRef<const M>( new M(f,x,y,z) );
H A Dlist.h67 List( const IRef<Cache<T> >& p ) : rep(p) {} in List()
124 IRef<Cache<T> > tmp( rep ); in ~List()
329 static IRef<Cache<T> > xnil, xbad;
330 static IRef<Cache<T> > xempty;
336 static const IRef<Cache<T> >& XEMPTY() { in XEMPTY()
338 static IRef<Cache<T> > xempty( xempty_helper<T>() ); in XEMPTY()
351 static IRef<Cache<T> > xnil( xnil_helper<T>() ); in XNIL()
364 static IRef<Cache<T> > xbad( xnil_helper<T>() ); in XBAD()
433 IRef<Cache<T> > operator()( const F& f ) const {
438 IRef<Cache<T> > operator()( const F& f ) const {
[all …]
H A Dfunction.h54 Fun0Impl<Rd>* convert0( const IRef<const Fun0Impl<Rs> >& f );
61 typedef IRef<const Fun0Impl<Result> > RefImpl;
132 typedef IRef<const Fun0Impl<Rs> > MyFun;
148 typedef IRef<const Fun0Impl<Rs> > MyFun;
213 typedef IRef<const Fun1Impl<Arg1,Result> > RefImpl;
249 typedef IRef<const Fun1Impl<A1s,Rs> > MyFun;
265 typedef IRef<const Fun1Impl<A1s,Rs> > MyFun;
411 typedef IRef<const Fun2Impl<A1s,A2s,Rs> > MyFun;
427 typedef IRef<const Fun2Impl<A1s,A2s,Rs> > MyFun;
596 typedef IRef<const Fun3Impl<A1s,A2s,A3s,Rs> > MyFun;
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esnext/common/
H A Drefs.d.ts1 export declare type IRef<T extends HTMLElement = HTMLElement> = IRefObject<T> | IRefCallback<T>; alias
5 export declare function isRefObject<T extends HTMLElement>(value: IRef<T> | undefined | null): valu…
7 export declare function isRefCallback<T extends HTMLElement>(value: IRef<T> | undefined | null): va…
11 export declare function setRef<T extends HTMLElement>(refTarget: IRef<T> | undefined | null, ref: T…
18 export declare function mergeRefs<T extends HTMLElement>(...refs: Array<IRef<T> | null>): IRefCallb…
28 }, refTargetKey: K, refProp?: IRef<T> | undefined | null): IRefCallback<T>;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esm/common/
H A Drefs.d.ts1 export declare type IRef<T extends HTMLElement = HTMLElement> = IRefObject<T> | IRefCallback<T>;
5 export declare function isRefObject<T extends HTMLElement>(value: IRef<T> | undefined | null): valu…
7 export declare function isRefCallback<T extends HTMLElement>(value: IRef<T> | undefined | null): va…
11 export declare function setRef<T extends HTMLElement>(refTarget: IRef<T> | undefined | null, ref: T…
18 export declare function mergeRefs<T extends HTMLElement>(...refs: Array<IRef<T> | null>): IRefCallb…
28 }, refTargetKey: K, refProp?: IRef<T> | undefined | null): IRefCallback<T>;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/cjs/common/
H A Drefs.d.ts1 export declare type IRef<T extends HTMLElement = HTMLElement> = IRefObject<T> | IRefCallback<T>; alias
5 export declare function isRefObject<T extends HTMLElement>(value: IRef<T> | undefined | null): valu…
7 export declare function isRefCallback<T extends HTMLElement>(value: IRef<T> | undefined | null): va…
11 export declare function setRef<T extends HTMLElement>(refTarget: IRef<T> | undefined | null, ref: T…
18 export declare function mergeRefs<T extends HTMLElement>(...refs: Array<IRef<T> | null>): IRefCallb…
28 }, refTargetKey: K, refProp?: IRef<T> | undefined | null): IRefCallback<T>;
/dports/devel/upp/upp/uppsrc/Ole/
H A Dutil.h232 class IRef : public Moveable< IRef<T>, IRefBase<T> >
235 IRef() {} in IRef() function
239 IRef(const IRef<T>& x) : Moveable< IRef<T>, IRefBase<T> >(x) {} in IRef() function
240 explicit IRef(const VARIANT& v) in IRef() function
253 IRef& operator = (const IRef<T>& x) { Set(x.ptr); return *this; }
257 class IRef<IUnknown> : public IRefBase<IUnknown>
260 IRef() {} in IRef() function
261 IRef(IUnknown *u) : IRefBase<IUnknown>(u) {} in IRef() function
263 IRef(const IRef<IUnknown>& x) : IRefBase<IUnknown>(x.ptr) {} in IRef() function
265 IRef& operator = (const IRef<IUnknown>& x) { Set(x.ptr); return *this; }
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/src/common/
H A Drefs.ts17 export type IRef<T extends HTMLElement = HTMLElement> = IRefObject<T> | IRefCallback<T>; alias
24 export function isRefObject<T extends HTMLElement>(value: IRef<T> | undefined | null): value is IRe…
30 export function isRefCallback<T extends HTMLElement>(value: IRef<T> | undefined | null): value is I…
37 export function setRef<T extends HTMLElement>(refTarget: IRef<T> | undefined | null, ref: T | null)…
54 export function mergeRefs<T extends HTMLElement>(...refs: Array<IRef<T> | null>): IRefCallback<T> {
79 refProp?: IRef<T> | undefined | null,
/dports/devel/upp/upp/uppsrc/Ole/Ctrl/
H A DOleCtrl.h254 IRef<ITypeInfo> dispatch_info;
392 IRef<ITypeInfo> GetCoClassTypeInfo();
474 IRef<ITypeLib>& GetTypeLib();
478 IRef<ITypeLib> typelib;
713 IRef<IOleClientSite> client_site;
714 IRef<IOleInPlaceSite> in_place_site;
715 SinkMap< IRef<IAdviseSink> > advise_sinks;
718 IRef<IAdviseSink> view_sink;
778 IRef<OcxConnectionPoint> point;
789 VectorMap<dword, IRef<IDispatch> > conn_map;
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/cjs/components/button/
H A Dbuttons.d.ts2 import { IRef } from "../../common/refs";
8 protected handleRef: IRef<HTMLButtonElement>;
15 protected handleRef: IRef<HTMLAnchorElement>;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esm/components/button/
H A Dbuttons.d.ts2 import { IRef } from "../../common/refs";
8 protected handleRef: IRef<HTMLButtonElement>;
15 protected handleRef: IRef<HTMLAnchorElement>;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esnext/components/button/
H A Dbuttons.d.ts2 import { IRef } from "../../common/refs";
8 protected handleRef: IRef<HTMLButtonElement>;
15 protected handleRef: IRef<HTMLAnchorElement>;
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/OpenMP/
H A Dinterop_ast_print.cpp30 omp_interop_t &IRef = I; in foo1() local
54 #pragma omp interop init(target:IRef) in foo1()
60 #pragma omp interop use(IRef) in foo1()
66 #pragma omp interop destroy(IRef) in foo1()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/OpenMP/
H A Dinterop_ast_print.cpp30 omp_interop_t &IRef = I; in foo1() local
54 #pragma omp interop init(target:IRef) in foo1()
60 #pragma omp interop use(IRef) in foo1()
66 #pragma omp interop destroy(IRef) in foo1()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/OpenMP/
H A Dinterop_ast_print.cpp30 omp_interop_t &IRef = I; in foo1() local
54 #pragma omp interop init(target:IRef) in foo1()
60 #pragma omp interop use(IRef) in foo1()
66 #pragma omp interop destroy(IRef) in foo1()
/dports/lang/clang-mesa/clang-13.0.1.src/test/OpenMP/
H A Dinterop_ast_print.cpp30 omp_interop_t &IRef = I; in foo1() local
54 #pragma omp interop init(target:IRef) in foo1()
60 #pragma omp interop use(IRef) in foo1()
66 #pragma omp interop destroy(IRef) in foo1()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/OpenMP/
H A Dinterop_ast_print.cpp30 omp_interop_t &IRef = I; in foo1() local
54 #pragma omp interop init(target:IRef) in foo1()
60 #pragma omp interop use(IRef) in foo1()
66 #pragma omp interop destroy(IRef) in foo1()
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/OpenMP/
H A Dinterop_ast_print.cpp30 omp_interop_t &IRef = I; in foo1() local
54 #pragma omp interop init(target:IRef) in foo1()
60 #pragma omp interop use(IRef) in foo1()
66 #pragma omp interop destroy(IRef) in foo1()
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/cjs/components/forms/
H A DinputGroup.d.ts2 import { AbstractPureComponent2, IRef } from "../../common";
33 inputRef?: IRef<HTMLInputElement>;
88 inputRef?: IRef<HTMLInputElement>;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esm/components/forms/
H A DinputGroup.d.ts2 import { AbstractPureComponent2, IRef } from "../../common";
33 inputRef?: IRef<HTMLInputElement>;
88 inputRef?: IRef<HTMLInputElement>;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esnext/components/forms/
H A DinputGroup.d.ts2 import { AbstractPureComponent2, IRef } from "../../common";
33 inputRef?: IRef<HTMLInputElement>;
88 inputRef?: IRef<HTMLInputElement>;
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/erts/emulator/test/
H A Dnode_container_SUITE.erl204 IRef = make_ref(),
218 true = IRef < IPid,
232 true = IRef < EPid,
247 true = IRef < IPort,
261 true = IRef < EPort,
272 true = 1 < IRef,
273 true = 1.3 < IRef,
277 true = IRef < IPort,
279 true = IRef < IPid,
280 true = IRef < EPid,
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/erts/emulator/test/
H A Dnode_container_SUITE.erl204 IRef = make_ref(),
218 true = IRef < IPid,
232 true = IRef < EPid,
247 true = IRef < IPort,
261 true = IRef < EPort,
272 true = 1 < IRef,
273 true = 1.3 < IRef,
277 true = IRef < IPort,
279 true = IRef < IPid,
280 true = IRef < EPid,
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esm/components/menu/
H A Dmenu.d.ts2 import { AbstractPureComponent2, IRef } from "../../common";
12 ulRef?: IRef<HTMLUListElement>;

12345