Home
last modified time | relevance | path

Searched refs:creationPolicy (Results 1 – 25 of 47) sorted by relevance

12

/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/framework/src/mx/core/
H A DIDeferredContentOwner.as59 …* <p>If no <code>creationPolicy</code> is specified for a container, that container inherits the …
60 * its parent's <code>creationPolicy</code> property.</p>
69 function get creationPolicy():String;
70 function set creationPolicy(value:String):void;
73 … * Create the content for this component. If the value of the <code>creationPolicy</code> property
75 … * <code>creationPolicy</code> property is <code>none</code>, you must explicitly call this method
H A DContainerCreationPolicy.as17 * for the <code>creationPolicy</code> property of the Container class.
19 * @see mx.core.Container#creationPolicy
40 * has this <code>creationPolicy</code>, it will immediately create
56 * <p>Avoid using this <code>creationPolicy</code> because
87 * <p>With this <code>creationPolicy</code>, it is the developer's
H A DUIComponentDescriptor.as34 * Depending on the value of the container's <code>creationPolicy</code>,
45 * @see mx.core.Container#creationPolicy
/dports/devel/flex-sdk35/flex-sdk3-3.5.0.12683_1/frameworks/projects/framework/src/mx/states/
H A DAddChild.as56 * If the <code>creationPolicy</code> property is set to <code>auto</code>,
69 * creationPolicy="auto"
145 // creationPolicy
150 * Storage for the creationPolicy property.
177 public function get creationPolicy():String property in AddChild
185 public function set creationPolicy(value:String):void property in AddChild
250 if (!_target && creationPolicy != ContainerCreationPolicy.NONE)
291 * determined by the <code>creationPolicy</code> property.</p>
296 * Setting this property with a <code>creationPolicy</code> of "all"
311 if (creationPolicy == ContainerCreationPolicy.ALL)
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/framework/src/mx/states/
H A DAddChild.as53 * If the <code>creationPolicy</code> property is set to <code>auto</code>,
66 * creationPolicy="auto"
152 // creationPolicy
157 * Storage for the creationPolicy property.
189 public function get creationPolicy():String property in AddChild
197 public function set creationPolicy(value:String):void property in AddChild
277 if (!_target && creationPolicy != ContainerCreationPolicy.NONE)
318 * determined by the <code>creationPolicy</code> property.</p>
323 * Setting this property with a <code>creationPolicy</code> of "all"
343 if (creationPolicy == ContainerCreationPolicy.ALL)
[all …]
H A DAddItems.as139 // creationPolicy
144 * Storage for the creationPolicy property.
176 public function get creationPolicy():String property in AddItems
184 public function set creationPolicy(value:String):void property in AddItems
278 * property with a <code>creationPolicy</code> of <code>"all"</code>.
290 if (!_items && creationPolicy != ContainerCreationPolicy.NONE)
321 * determined by the <code>creationPolicy</code> property.</p>
326 * Setting this property with a <code>creationPolicy</code> of "all"
346 if (creationPolicy == ContainerCreationPolicy.ALL)
472 * Flex automatically calls this method if the <code>creationPolicy</code>
[all …]
/dports/devel/flex-sdk35/flex-sdk3-3.5.0.12683_1/frameworks/projects/framework/src/mx/core/
H A DContainerCreationPolicy.as17 * for the <code>creationPolicy</code> property of the Container class.
19 * @see mx.core.Container#creationPolicy
35 * has this <code>creationPolicy</code>, it will immediately create
46 * <p>Avoid using this <code>creationPolicy</code> because
66 * <p>With this <code>creationPolicy</code>, it is the developer's
H A DUIComponentDescriptor.as34 * Depending on the value of the container's <code>creationPolicy</code>,
45 * @see mx.core.Container#creationPolicy
H A DApplication.as287 // We get the id and the creationPolicy, which we want to
839 creationPolicy = documentDescriptor.properties.creationPolicy;
840 if (creationPolicy == null || creationPolicy.length == 0)
841 creationPolicy = ContainerCreationPolicy.AUTO;
1198 * The container should have the <code>creationPolicy</code> property
1330 Container(nextChild).creationPolicy == ContainerCreationPolicy.QUEUED)
H A DContainer.as222 * creationPolicy="auto|all|queued|none"
1011 // creationPolicy
1016 * Storage for the creationPolicy property.
1075 public function get creationPolicy():String property in Container
1083 public function set creationPolicy(value:String):void property in Container
2597 if (creationPolicy != null)
2599 actualCreationPolicy = creationPolicy;
3483 // containers which have an undefined creationPolicy.
3498 if (childContainer.creationPolicy == null)
3541 if (creationPolicy == ContainerCreationPolicy.QUEUED ||
[all …]
H A DComponentDescriptor.as38 * Depending on the value of the container's <code>creationPolicy</code>,
51 * @see mx.core.Container#creationPolicy
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Composition/src/System/ComponentModel/Composition/
H A DPartCreationPolicyAttribute.cs19 public PartCreationPolicyAttribute(CreationPolicy creationPolicy) in PartCreationPolicyAttribute() argument
21 CreationPolicy = creationPolicy; in PartCreationPolicyAttribute()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/
H A DPartCreationPolicyAttribute.cs21 public PartCreationPolicyAttribute(CreationPolicy creationPolicy) in PartCreationPolicyAttribute() argument
23 this.CreationPolicy = creationPolicy; in PartCreationPolicyAttribute()
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/spark/modules/
H A DModuleLoader.as391 // Register the _creationPolicy style as inheriting. See the creationPolicy
403 // creationPolicy
406 // Internal flag used when creationPolicy="none".
423 public function get creationPolicy():String property in spark.modules.ModuleLoader
445 public function set creationPolicy(value:String):void property in spark.modules.ModuleLoader
449 // creationPolicy of none is not inherited by descendants.
451 // flag for subsequent access to the creationPolicy property.
595 // if nobody has overridden creationPolicy, get it from the
597 if (creationPolicy == ContainerCreationPolicy.AUTO)
602 creationPolicy = parentCreationPolicy ==
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/Direct3D9/src/
H A DOgreD3D9ResourceManager.cpp50 void D3D9ResourceManager::setCreationPolicy(D3D9ResourceCreationPolicy creationPolicy) in setCreationPolicy() argument
52 mResourceCreationPolicy = creationPolicy; in setCreationPolicy()
/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/Direct3D9/src/
H A DOgreD3D9ResourceManager.cpp50 void D3D9ResourceManager::setCreationPolicy(D3D9ResourceCreationPolicy creationPolicy) in setCreationPolicy() argument
52 mResourceCreationPolicy = creationPolicy; in setCreationPolicy()
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/spark/components/
H A DSkinnableContainer.as254 * creationPolicy="auto"
432 // Register the _creationPolicy style as inheriting. See the creationPolicy
476 // creationPolicy
479 // Internal flag used when creationPolicy="none".
496 public function get creationPolicy():String property in spark.components.SkinnableContainer
518 public function set creationPolicy(value:String):void property in spark.components.SkinnableContainer
522 // creationPolicy of none is not inherited by descendants.
524 // flag for subsequent access to the creationPolicy property.
869 * Create content children, if the <code>creationPolicy</code> property
884 // creationPolicy="none".
[all …]
H A DNavigatorContent.as211 // if nobody has overridden creationPolicy, get it from the
213 if (creationPolicy == ContainerCreationPolicy.AUTO)
217 var parentCreationPolicy:String = IDeferredContentOwner(parent).creationPolicy;
218 creationPolicy = parentCreationPolicy ==
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/Direct3D9/include/
H A DOgreD3D9ResourceManager.h82 void setCreationPolicy (D3D9ResourceCreationPolicy creationPolicy);
/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/Direct3D9/include/
H A DOgreD3D9ResourceManager.h82 void setCreationPolicy (D3D9ResourceCreationPolicy creationPolicy);
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Composition/src/System/ComponentModel/Composition/Hosting/
H A DCompositionServices.cs180 …c IDictionary<string, object> GetPartMetadataForType(this Type type, CreationPolicy creationPolicy) in GetPartMetadataForType() argument
184 if (creationPolicy != CreationPolicy.Any) in GetPartMetadataForType()
186 dictionary.Add(CompositionConstants.PartCreationPolicyMetadataName, creationPolicy); in GetPartMetadataForType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ComponentModel.Composition.4.5/src/ComponentModel/System/ComponentModel/Composition/Hosting/
H A DCompositionServices.cs187 …c IDictionary<string, object> GetPartMetadataForType(this Type type, CreationPolicy creationPolicy) in GetPartMetadataForType() argument
191 if (creationPolicy != CreationPolicy.Any) in GetPartMetadataForType()
193 dictionary.Add(CompositionConstants.PartCreationPolicyMetadataName, creationPolicy); in GetPartMetadataForType()
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/mx/src/mx/core/
H A DApplication.as345 // We get the id and the creationPolicy, which we want to
1037 creationPolicy = documentDescriptor.properties.creationPolicy;
1038 if (creationPolicy == null || creationPolicy.length == 0)
1039 creationPolicy = ContainerCreationPolicy.AUTO;
1448 * The container should have the <code>creationPolicy</code> property
1585 Container(nextChild).creationPolicy == ContainerCreationPolicy.QUEUED)
H A DContainer.as352 * creationPolicy="auto|all|queued|none"
1226 // creationPolicy
1229 // Internal flag used when creationPolicy="none".
1283 public function get creationPolicy():String property in Container
1299 public function set creationPolicy(value:String):void property in Container
3161 if (creationPolicy != null)
3162 actualCreationPolicy = creationPolicy;
4124 // containers which have an undefined creationPolicy.
4139 if (childContainer.creationPolicy == null)
4188 if (creationPolicy == ContainerCreationPolicy.QUEUED ||
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/charts/src/mx/charts/
H A DLegend.as563 * creationPolicy="auto|all|queued|none"
1747 // creationPolicy
1750 // Internal flag used when creationPolicy="none".
1804 public function get creationPolicy():String property in Legend
1820 public function set creationPolicy(value:String):void property in Legend
3400 if (creationPolicy != null)
3401 actualCreationPolicy = creationPolicy;
4455 // containers which have an undefined creationPolicy.
4470 if (childContainer.creationPolicy == null)
4519 if (creationPolicy == ContainerCreationPolicy.QUEUED ||
[all …]

12