Home
last modified time | relevance | path

Searched refs:Properties (Results 1 – 25 of 356) sorted by relevance

12345678910>>...15

/third_party/typescript/tests/baselines/reference/
DdoubleUnderscoreMappedTypes.symbols2 interface Properties {
3 >Properties : Symbol(Properties, Decl(doubleUnderscoreMappedTypes.ts, 0, 0))
6 >property1 : Symbol(Properties.property1, Decl(doubleUnderscoreMappedTypes.ts, 0, 22))
9 >__property2 : Symbol(Properties.__property2, Decl(doubleUnderscoreMappedTypes.ts, 1, 22))
13 const ok: Properties = {
15 >Properties : Symbol(Properties, Decl(doubleUnderscoreMappedTypes.ts, 0, 0))
26 type Keys = keyof Properties;
28 >Properties : Symbol(Properties, Decl(doubleUnderscoreMappedTypes.ts, 0, 0))
35 type Property2Type = Properties["__property2"];
37 >Properties : Symbol(Properties, Decl(doubleUnderscoreMappedTypes.ts, 0, 0))
[all …]
DdoubleUnderscoreMappedTypes.types2 interface Properties {
11 const ok: Properties = {
12 >ok : Properties
26 type Keys = keyof Properties;
27 >Keys : keyof Properties
30 >k : keyof Properties
34 type Property2Type = Properties["__property2"];
38 const partial: Partial<Properties> = {
39 >partial : Partial<Properties>
DdoubleUnderscoreMappedTypes.js2 interface Properties {
8 const ok: Properties = {
14 type Keys = keyof Properties;
18 type Property2Type = Properties["__property2"];
21 const partial: Partial<Properties> = {
DtsxAttributeResolution16.types23 type Properties = CanadianAddress | AmericanAddress;
24 >Properties : Properties
26 export class AddressComp extends React.Component<Properties, void> {
28 >React.Component : React.Component<Properties, void>
DtsxAttributeResolution16.symbols31 type Properties = CanadianAddress | AmericanAddress;
32 >Properties : Symbol(Properties, Decl(file.tsx, 13, 1))
36 export class AddressComp extends React.Component<Properties, void> {
41 >Properties : Symbol(Properties, Decl(file.tsx, 13, 1))
DexcessPropertyCheckWithUnions.types383 type Properties =
384 >Properties : Properties
401 function F1(_arg: { props: Properties }) { }
402 >F1 : (_arg: { props: Properties;}) => void
403 >_arg : { props: Properties; }
404 >props : Properties
408 >F1 : (_arg: { props: Properties; }) => void
424 function F2(_props: Properties) { }
425 >F2 : (_props: Properties) => void
426 >_props : Properties
[all …]
DcontrolFlowPropertyDeclarations.js10 for (var propname in HTMLDOMPropertyConfig.Properties) {
11 if (!HTMLDOMPropertyConfig.Properties.hasOwnProperty(propname)) {
159 for (var propname in HTMLDOMPropertyConfig.Properties) {
160 if (!HTMLDOMPropertyConfig.Properties.hasOwnProperty(propname)) {
DcontrolFlowPropertyDeclarations.types14 // TODO handle/use .Properties value eg: MUST_USE_PROPERTY is not HTML attr
15 for (var propname in HTMLDOMPropertyConfig.Properties) {
17 >HTMLDOMPropertyConfig.Properties : any
19 >Properties : any
21 if (!HTMLDOMPropertyConfig.Properties.hasOwnProperty(propname)) {
22 >!HTMLDOMPropertyConfig.Properties.hasOwnProperty(propname) : boolean
23 >HTMLDOMPropertyConfig.Properties.hasOwnProperty(propname) : any
24 >HTMLDOMPropertyConfig.Properties.hasOwnProperty : any
25 >HTMLDOMPropertyConfig.Properties : any
27 >Properties : any
DexcessPropertyCheckWithUnions.symbols335 type Properties =
336 >Properties : Symbol(Properties, Decl(excessPropertyCheckWithUnions.ts, 127, 1))
359 function F1(_arg: { props: Properties }) { }
363 >Properties : Symbol(Properties, Decl(excessPropertyCheckWithUnions.ts, 127, 1))
380 function F2(_props: Properties) { }
383 >Properties : Symbol(Properties, Decl(excessPropertyCheckWithUnions.ts, 127, 1))
/third_party/gstreamer/gstreamer/docs/random/
Dmimetypes84 Properties:
90 Properties:
96 Properties: 'systemstream' = TRUE (BOOLEAN)
102 Properties:
108 Properties:
114 Properties: 'systemstream' = TRUE (BOOLEAN)
120 Properties: 'systemstream' = TRUE (BOOLEAN)
126 Properties:
132 Properties:
138 Properties:
[all …]
/third_party/typescript/tests/cases/compiler/
DdoubleUnderscoreMappedTypes.ts1 interface Properties { interface
7 const ok: Properties = {
13 type Keys = keyof Properties; alias
17 type Property2Type = Properties["__property2"];
20 const partial: Partial<Properties> = {
DexcessPropertyCheckWithUnions.ts131 type Properties = alias
142 function F1(_arg: { props: Properties }) { }
150 function F2(_props: Properties) { }
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DHeapAllocatorD3D12.cpp37 heapDesc.Properties.Type = mHeapType; in AllocateResourceHeap()
38 heapDesc.Properties.CPUPageProperty = D3D12_CPU_PAGE_PROPERTY_UNKNOWN; in AllocateResourceHeap()
39 heapDesc.Properties.MemoryPoolPreference = D3D12_MEMORY_POOL_UNKNOWN; in AllocateResourceHeap()
40 heapDesc.Properties.CreationNodeMask = 0; in AllocateResourceHeap()
41 heapDesc.Properties.VisibleNodeMask = 0; in AllocateResourceHeap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineFunction.h159 return Properties[static_cast<unsigned>(P)];
163 Properties.set(static_cast<unsigned>(P));
168 Properties.reset(static_cast<unsigned>(P));
174 Properties.reset();
179 Properties |= MFP.Properties;
184 Properties.reset(MFP.Properties);
191 return !V.Properties.test(Properties);
198 BitVector Properties =
298 MachineFunctionProperties Properties;
560 const MachineFunctionProperties &getProperties() const { return Properties; }
[all …]
/third_party/rust/crates/unicode-ident/generate/src/
Dparse.rs7 pub struct Properties { struct
12 impl Properties { implementation
22 pub fn parse_xid_properties(ucd_dir: &Path) -> Properties { in parse_xid_properties() argument
23 let mut properties = Properties { in parse_xid_properties()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DICUConfig.java18 import java.util.Properties;
26 private static final Properties CONFIG_PROPS;
29 CONFIG_PROPS = new Properties();
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUConfig.java17 import java.util.Properties;
24 private static final Properties CONFIG_PROPS;
27 CONFIG_PROPS = new Properties();
/third_party/icu/tools/unicodetools/com/ibm/rbm/
DPreferences.java24 private static Properties prop;
153 Properties defaults = new Properties(); in init()
160 prop = new Properties(defaults); in init()
/third_party/flutter/skia/third_party/externals/sdl/src/video/winrt/
DSDL_winrtpointerinput.cpp139 switch (pt->Properties->PointerUpdateKind)
249 pointerPoint->Properties->Pressure);
275 pointerPoint->Properties->Pressure);
305 pointerPoint->Properties->Pressure);
339 short motion = pointerPoint->Properties->MouseWheelDelta / WHEEL_DELTA;
/third_party/pcre2/pcre2/maint/Unicode.tables/
DPropertyAliases.txt57 # Numeric Properties
65 # String Properties
81 # Miscellaneous Properties
107 # Catalog Properties
114 # Enumerated Properties
139 # Binary Properties
/third_party/skia/third_party/externals/angle2/src/common/
DPackedCLEnums_autogen.cpp96 return CommandQueueInfo::Properties; in FromCLenum()
118 case CommandQueueInfo::Properties: in ToCLenum()
145 case CommandQueueInfo::Properties: in operator <<()
174 return ContextInfo::Properties; in FromCLenum()
190 case ContextInfo::Properties: in ToCLenum()
210 case ContextInfo::Properties: in operator <<()
1585 return MemInfo::Properties; in FromCLenum()
1615 case MemInfo::Properties: in ToCLenum()
1657 case MemInfo::Properties: in operator <<()
1764 return PipeInfo::Properties; in FromCLenum()
[all …]
DPackedCLEnums_autogen.h49 Properties = 3, enumerator
67 Properties = 2, enumerator
350 Properties = 10, enumerator
385 Properties = 2, enumerator
482 Properties = 5, enumerator
/third_party/typescript/tests/cases/conformance/jsx/
DtsxAttributeResolution16.tsx22 type Properties = CanadianAddress | AmericanAddress;
24 export class AddressComp extends React.Component<Properties, void> {
/third_party/node/tools/doc/
DREADME.md103 * Classes have (description, Properties, Methods, Events).
107 * Modules have (description, Properties, Functions, Classes, Examples).
108 * Properties have (type, description).
/third_party/ejdb/src/bindings/ejdb2_android/test/
Dbuild.gradle27 Properties properties = new Properties()

12345678910>>...15