Home
last modified time | relevance | path

Searched refs:HasProps (Results 1 – 25 of 50) sorted by relevance

12

/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/
H A Dbase.d.ts1 import { HasProps } from "./core/has_props";
3 [key: string]: typeof HasProps;
6 (name: string): typeof HasProps;
7 get(name: string): typeof HasProps | undefined;
8 register(name: string, model: typeof HasProps): void;
20 protected _known_models: Map<string, typeof HasProps>;
21 get(name: string): typeof HasProps;
22 get<T>(name: string, or_else: T): (typeof HasProps) | T;
23 register(model: typeof HasProps): void;
H A Dmodel.d.ts1 import { HasProps } from "./core/has_props";
8 type Props = HasProps.Props & {
23 export declare class Model extends HasProps {
37 select<T extends HasProps>(selector: Class<T> | string): T[];
38 select_one<T extends HasProps>(selector: Class<T> | string): T | null;
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/core/property/
H A Dtest_dataspec.py69 class Foo(HasProps):
77 class Foo(HasProps):
87 class Foo(HasProps):
100 class Foo(HasProps):
109 class Foo(HasProps):
122 class Foo(HasProps):
135 class Foo(HasProps):
156 class Foo(HasProps):
167 class Foo(HasProps):
178 class Foo(HasProps):
[all …]
H A D_util_property.py18 from bokeh.core.has_props import HasProps
39 class _TestHasProps(HasProps):
46 class _TestModel(HasProps):
53 class _TestModel2(HasProps):
H A Dtest_include.py19 from bokeh.core.has_props import HasProps
33 class IsDelegate(HasProps):
45 class IncludesDelegateWithPrefix(HasProps):
65 class IncludesDelegateWithoutPrefix(HasProps):
81 class IncludesDelegateWithoutPrefixUsingOverride(HasProps):
H A Dtest_bases.py23 from bokeh.core.has_props import HasProps
69 hp = HasProps()
81 hp = HasProps()
95 hp = HasProps()
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/core/
H A Dtest_properties.py129 class Foo(HasProps):
169 class Foo(HasProps):
190 class Base(HasProps):
202 class Foo(HasProps):
219 class Foo(HasProps):
228 class Base(HasProps):
276 class Base(HasProps):
460 class Foo(HasProps):
463 class Bar(HasProps):
466 class Baz(HasProps):
[all …]
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/document/
H A Ddocument.d.ts3 import { HasProps } from "../core/has_props";
34 export declare type RefMap = Map<ID, HasProps>;
44 _all_models: Map<ID, HasProps>;
71 get_model_by_id(model_id: string): HasProps | null;
72 get_model_by_name(name: string): HasProps | null;
80 … _notify_change(model: HasProps, attr: string, old_value: unknown, new_value: unknown, options?: {
84 …iate_object(obj_id: string, obj_type: string, obj_attrs: Attrs, resolver: ModelResolver): HasProps;
88 …Struct, key: string, new_value: unknown, doc: Document, value_refs: Set<HasProps>): ModelChanged |…
89 …cts(from_obj: Struct, to_obj: Struct, to_doc: Document, value_refs: Set<HasProps>): ModelChanged[];
H A Devents.d.ts3 import { HasProps } from "../core/has_props";
68 readonly model: HasProps;
74 …constructor(document: Document, model: HasProps, attr: string, old: unknown, new_: unknown, setter…
97 readonly model: HasProps;
99 constructor(document: Document, model: HasProps, setter_id?: string | undefined);
103 readonly model: HasProps;
105 constructor(document: Document, model: HasProps, setter_id?: string | undefined);
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/core/
H A Dhas_props.d.ts14 export declare module HasProps {
24 export interface HasProps extends HasProps.Attrs, ISignalable { interface
38 export declare abstract class HasProps extends HasProps_base implements Equatable, Printable, Seria… class
55 default_value?: (self: HasProps) => unknown;
92 setv(changed_attrs: Attrs, options?: HasProps.SetOptions): void;
102 static _json_record_references(doc: Document, v: unknown, refs: Set<HasProps>, options: {
105 static _value_record_references(v: unknown, refs: Set<HasProps>, options: {
108 references(): Set<HasProps>;
H A Dbuild_views.d.ts1 import { HasProps } from "./has_props";
3 export declare type ViewStorage<T extends HasProps> = Map<T, ViewOf<T>>;
7 export declare function build_view<T extends HasProps>(model: T, options?: Options<ViewOf<T>>, cls?…
8 export declare function build_views<T extends HasProps>(view_storage: ViewStorage<T>, models: T[], …
9 export declare function remove_views(view_storage: ViewStorage<HasProps>): void;
H A Dview.d.ts1 import type { HasProps } from "./has_props";
6 export declare type ViewOf<T extends HasProps> = T["__view_type__"];
14 model: HasProps;
20 readonly model: HasProps;
H A Dvectorization.d.ts2 import { HasProps } from "./has_props";
8 change: Signal0<HasProps>;
12 change: Signal0<HasProps>;
16 change: Signal0<HasProps>;
H A Dproperties.d.ts2 import type { HasProps } from "./has_props";
27 …fer T> ? [PropertyConstructor<T> | PropertyAlias | Kind<T>, (T | ((obj: HasProps) => T))?, Propert…
30 [K in keyof P]: P[K] extends Property<infer T> ? T | ((obj: HasProps) => T) : never;
34 on_update?(value: T, obj: HasProps): void;
37 …new (obj: HasProps, attr: string, kind: Kind<T>, default_value?: (obj: HasProps) => T, initial_val…
41 readonly obj: HasProps;
44 readonly default_value?: ((obj: HasProps) => T) | undefined;
54 readonly change: Signal0<HasProps>;
56 on_update?(value: T, obj: HasProps): void;
57 …constructor(obj: HasProps, attr: string, kind: Kind<T>, default_value?: ((obj: HasProps) => T) | u…
H A Dselection_manager.d.ts1 import { HasProps } from "./has_props";
9 type Props = HasProps.Props & {
16 export declare class SelectionManager extends HasProps {
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/core/
H A Dproperty_mixins.py85 from .has_props import HasProps
240 class FillProps(HasProps):
250 class ScalarFillProps(HasProps):
260 class HatchProps(HasProps):
274 class ScalarHatchProps(HasProps):
288 class LineProps(HasProps):
304 class ScalarLineProps(HasProps):
320 class TextProps(HasProps):
340 class ScalarTextProps(HasProps):
H A Dhas_props.py66 if not issubclass(cls, HasProps):
77 return issubclass(cls, HasProps) and getattr(cls, "__data_model__", False) and cls != DataModel
187 if issubclass(base, HasProps) and attr in base.properties():
222 if issubclass(c, HasProps) and hasattr(c, propname):
245 if issubclass(c, HasProps) and hasattr(c, propname):
253 class HasProps(metaclass=MetaHasProps): class
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/document/
H A Dutil.py26 from ..core.has_props import HasProps
86 HasProps.__init__(instance)
90 def instantiate_references_json(references_json, existing_instances: Dict[str, HasProps]): argument
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/models/canvas/
H A Dcanvas.d.ts1 import { HasProps } from "../../core/has_props";
41 type Props = HasProps.Props & {
48 export declare class Canvas extends HasProps {
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/util/
H A Doptions.py26 from ..core.has_props import HasProps
40 class Options(HasProps):
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/core/property/
H A Dbases.py38 from ..has_props import HasProps
328 def prepare_value(self, owner: Union[HasProps, Type[HasProps]], name: str, value: Any): argument
349 obj_repr = owner if isinstance(owner, HasProps) else owner.__name__
352 if isinstance(owner, HasProps):
H A Dinclude.py26 from ..has_props import HasProps
50 if not (isinstance(delegate, type) and issubclass(delegate, HasProps)):
/dports/misc/perkeep/perkeep-0.11/vendor/myitcv.io/react/cmd/reactGen/
H A Dcomp_gen.go22 HasProps bool member
63 cg.HasProps = hasProps
298 func build{{.Name}}Elem({{if .HasProps}}props {{.Name}}Props,{{end}} children ...react.Element) *{{…
300 …Element: react.CreateElement(build{{.Name}}, {{if .HasProps}}props{{else}}nil{{end}}, children...),
356 {{if .HasProps}}
/dports/www/firefox/firefox-99.0/layout/painting/
H A DRetainedDisplayListBuilder.h29 enum class FrameFlag : uint8_t { Modified, HasProps, HadWillChange }; enumerator
63 bool HasProps(nsIFrame* aFrame) const { in HasProps() function
64 return GetFlags(aFrame).contains(FrameFlag::HasProps); in HasProps()
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/models/widgets/
H A Dbuttons.py23 from ...core.has_props import HasProps, abstract
58 class ButtonLike(HasProps):

12