Searched defs:properties (Results 101 - 125 of 412) sorted by relevance

1234567891011>>

/external/chromium_org/ui/compositor/
H A Dlayer_animation_observer.cc143 LayerAnimationElement::AnimatableProperties properties = local
144 sequence->properties();
148 if (i & properties) {
/external/chromium_org/ui/surface/
H A Daccelerated_surface_mac.cc215 base::ScopedCFTypeRef<CFMutableDictionaryRef> properties; local
216 properties.reset(CFDictionaryCreateMutable(kCFAllocatorDefault,
220 AddIntegerValue(properties, kIOSurfaceWidth, clamped_size.width());
221 AddIntegerValue(properties, kIOSurfaceHeight, clamped_size.height());
222 AddIntegerValue(properties, kIOSurfaceBytesPerElement, 4);
223 AddBooleanValue(properties, kIOSurfaceIsGlobal, true);
227 io_surface_.reset(IOSurfaceCreate(properties));
/external/chromium_org/v8/src/compiler/
H A Dcommon-operator-unittest.cc9 #include "src/compiler/operator-properties-inl.h"
26 Operator::Properties properties; member in struct:v8::internal::compiler::__anon17264::SharedOperator
41 #define SHARED(Name, properties, value_input_count, effect_input_count, \
44 &CommonOperatorBuilder::Name, IrOpcode::k##Name, properties, \
109 EXPECT_EQ(sop.properties, op->properties());
H A Dlinkage-impl.h63 Operator::kNoProperties, // properties
73 Operator::Properties properties) {
123 properties, // properties
176 Operator::kNoProperties, // properties
208 Operator::kNoProperties, // properties
71 GetRuntimeCallDescriptor( Zone* zone, Runtime::FunctionId function_id, int js_parameter_count, Operator::Properties properties) argument
H A Dlinkage.cc35 // TODO(svenpanne) Output properties etc. and be less cryptic.
97 Operator::Properties properties) {
98 return GetRuntimeCallDescriptor(function, parameter_count, properties,
148 Operator::Properties properties, Zone* zone) {
95 GetRuntimeCallDescriptor( Runtime::FunctionId function, int parameter_count, Operator::Properties properties) argument
146 GetRuntimeCallDescriptor( Runtime::FunctionId function, int parameter_count, Operator::Properties properties, Zone* zone) argument
/external/chromium_org/v8/src/compiler/x64/
H A Dlinkage-x64.cc59 Operator::Properties properties, Zone* zone) {
61 properties);
57 GetRuntimeCallDescriptor( Runtime::FunctionId function, int parameter_count, Operator::Properties properties, Zone* zone) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DComplexProperty.java47 public ComplexProperty(String title, String text, Property[] properties) { argument
52 setProperties(properties);
89 * @return the sub-properties.
96 * Sets the sub-properties.
98 public void setProperties(Property[] properties) { argument
99 m_properties = properties;
103 * Sets the sub-properties.
105 public void setProperties(List<Property> properties) { argument
106 Property[] propertiesArray = properties.toArray(new Property[properties
[all...]
H A DProperty.java22 * {@link Property} is used to display/change properties of ObjectInfo's.
131 public Property getComposite(Property[] properties) { argument
/external/emma/core/java12/com/vladium/emma/
H A DEMMAProperties.java26 * A reflection of "${IAppConstants.APP_PROPERTY_RES_NAME}.properties" resource
102 * @param properties [null results in null result]
104 public static IProperties wrap (final Properties properties) argument
106 if (properties == null) return null;
108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER);
112 * Retrieves application properties as classloader resource with a given name.
116 * @return properties [can be null]
127 IProperties properties = (IProperties) s_properties.get (loader);
129 if (properties != null)
130 return properties;
[all...]
/external/emma/core/java12/com/vladium/emma/report/txt/
H A DReportGenerator.java61 final SourcePathCache cache, final IProperties properties)
64 initialize (mdata, cdata, cache, properties);
60 process(final IMetaData mdata, final ICoverageData cdata, final SourcePathCache cache, final IProperties properties) argument
/external/emma/core/java12/com/vladium/util/
H A DIProperties.java49 Iterator /* String */ properties (); method in interface:IProperties
77 * with an optional property mapper. Note that 'properties' content is
81 * @param properties [may not be null]
83 * @return a property set based on 'properties' [never null]
85 public static IProperties wrap (final Properties properties, final IMapper mapper) argument
91 for (Enumeration names = properties.propertyNames (); names.hasMoreElements (); )
94 final String v = properties.getProperty (n);
208 public Iterator /* String */ properties () method in class:IProperties.Factory.PropertiesImpl
217 for (Iterator i = properties (); i.hasNext (); )
243 for (Iterator names = properties (); name
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DSoapObject.java53 * The Vector of properties (can contain PropertyInfo and SoapObject)
55 protected Vector properties = new Vector(); field in class:SoapObject
57 // TODO: accessing properties and attributes would work much better if we
58 // kept a list of known properties instead of iterating through the list
95 int numProperties = properties.size();
96 if (numProperties != otherSoapObject.properties.size()) {
100 // SoapObjects are only considered the same if properties equals and in the same order
102 Object thisProp = this.properties.elementAt(propIndex);
122 Object thisProp = this.properties.elementAt(index);
150 Object prop = properties
420 getPropertyInfo(int index, Hashtable properties, PropertyInfo propertyInfo) argument
[all...]
/external/lzma/CPP/7zip/Common/
H A DFilterCoder.cpp221 const PROPVARIANT *properties, UInt32 numProperties)
223 return _SetCoderProperties->SetCoderProperties(propIDs, properties, numProperties);
220 SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *properties, UInt32 numProperties) argument
/external/lzma/CS/7zip/
H A DICoder.cs76 /// Provides the fields that represent properties idenitifiers for compressing.
145 void SetCoderProperties(CoderPropID[] propIDs, object[] properties); argument
155 void SetDecoderProperties(byte[] properties); argument
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_scan.h88 } properties[TGSI_PROPERTY_COUNT]; member in struct:tgsi_shader_info
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java76 private final ImmutableMap<String, Property> properties; field in class:CssSchema
78 private CssSchema(ImmutableMap<String, Property> properties) { argument
79 if (properties == null) { throw new NullPointerException(); }
80 this.properties = properties;
84 * A schema that includes all and only the named properties.
106 * @return A schema that allows all and only CSS properties that are allowed
111 Map<String, Property> properties = Maps.newLinkedHashMap();
113 properties.putAll(cssSchema.properties);
[all...]
/external/chromium_org/extensions/test/data/
H A Djson_schema_test.js80 properties: {
129 [schema.items[0].properties.url.pattern])]);
136 [schema.items[0].properties.id.minimum])]);
159 { type: "object", properties: { foo: { type: "string" } } }
192 properties: {
219 schema.properties.bar.optional = true;
244 properties: {
259 properties: {
293 delete schemaInlineReference.properties.bar;
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_connect.cc247 void CallCreateConfiguration(base::DictionaryValue* properties, argument
255 properties->SetStringWithoutPathExpansion(
258 *properties,
274 // Move empty string properties to properties_to_clear.
281 // Remove cleared properties from properties_to_set.
462 const base::DictionaryValue& properties,
466 scoped_ptr<base::DictionaryValue> properties_to_set(properties.DeepCopy());
482 void CreateConfigurationAndConnect(base::DictionaryValue* properties, argument
485 CallCreateConfiguration(properties, shared, true /* connect_on_configure */);
488 void CreateConfiguration(base::DictionaryValue* properties, boo argument
461 ConfigureNetworkAndConnect(const std::string& service_path, const base::DictionaryValue& properties, bool shared) argument
[all...]
/external/chromium_org/athena/system/
H A Dnetwork_selector.cc132 base::DictionaryValue properties; local
133 properties.SetStringWithoutPathExpansion(shill::kPassphraseProperty,
137 properties,
/external/chromium_org/chrome/browser/chromeos/options/
H A Dwimax_config_view.cc153 base::DictionaryValue properties; local
154 properties.SetStringWithoutPathExpansion(
156 properties.SetStringWithoutPathExpansion(
158 properties.SetBooleanWithoutPathExpansion(
167 properties.SetBooleanWithoutPathExpansion(shill::kAutoConnectProperty,
172 service_path_, properties, share_network);
361 const base::DictionaryValue& properties) {
364 properties.GetStringWithoutPathExpansion(
371 properties.GetBooleanWithoutPathExpansion(
359 InitFromProperties( const std::string& service_path, const base::DictionaryValue& properties) argument
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dtts.js40 cvox.ChromeTts.prototype.speak = function(textString, queueMode, properties) {
41 if (!properties) {
42 properties = {};
45 goog.base(this, 'speak', textString, queueMode, properties);
48 this.createMessageForProperties_(textString, queueMode, properties));
112 * @param {Object=} properties Speech properties to use for this utterance.
117 function(textString, queueMode, properties) {
122 'properties': properties};
[all...]
/external/chromium_org/chrome/installer/setup/
H A Dinstall.cc47 const ShellUtil::ShortcutProperties& properties,
62 message.append((properties.level == ShellUtil::CURRENT_USER) ? "per-user " :
88 if (properties.has_shortcut_name())
89 message.append(base::UTF16ToUTF8(properties.shortcut_name));
95 message.append(base::UTF16ToUTF8(properties.target.value()));
96 if (properties.has_arguments())
97 message.append(base::UTF16ToUTF8(properties.arguments));
99 if (properties.pin_to_taskbar &&
115 const ShellUtil::ShortcutProperties& properties,
117 LogShortcutOperation(location, dist, properties, operatio
45 LogShortcutOperation(ShellUtil::ShortcutLocation location, BrowserDistribution* dist, const ShellUtil::ShortcutProperties& properties, ShellUtil::ShortcutOperation operation, bool failed) argument
112 ExecuteAndLogShortcutOperation( ShellUtil::ShortcutLocation location, BrowserDistribution* dist, const ShellUtil::ShortcutProperties& properties, ShellUtil::ShortcutOperation operation) argument
[all...]
/external/chromium_org/chrome/installer/util/
H A Dshell_util_unittest.cc35 // tests. Specifically, we should not overly rely on getting shortcut properties
96 const ShellUtil::ShortcutProperties& properties) {
100 expected_path = (properties.level == ShellUtil::CURRENT_USER) ?
107 expected_path = (properties.level == ShellUtil::CURRENT_USER) ?
118 base::string16 shortcut_name = properties.has_shortcut_name() ?
119 properties.shortcut_name :
125 // Validates that the shortcut at |location| matches |properties| (and
126 // implicit default properties) for |dist|.
132 const ShellUtil::ShortcutProperties& properties) {
134 GetExpectedShortcutPath(location, dist, properties));
93 GetExpectedShortcutPath( ShellUtil::ShortcutLocation location, BrowserDistribution* dist, const ShellUtil::ShortcutProperties& properties) argument
129 ValidateChromeShortcut( ShellUtil::ShortcutLocation location, BrowserDistribution* dist, const ShellUtil::ShortcutProperties& properties) argument
[all...]
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_gatt_descriptor_client.cc91 return iter->second->properties.get();
144 Properties* properties = new Properties(base::Bind( local
148 properties->uuid.ReplaceValue(uuid);
149 properties->characteristic.ReplaceValue(characteristic_path);
152 data->properties.reset(properties);
H A Dfake_shill_profile_client.cc26 base::DictionaryValue properties; // Dictionary of Profile properties member in struct:chromeos::FakeShillProfileClient::ProfileProperties
67 scoped_ptr<base::DictionaryValue> properties(profile->properties.DeepCopy());
69 properties->SetWithoutPathExpansion(shill::kEntriesProperty, entry_paths);
77 base::Bind(&PassDictionary, callback, base::Owned(properties.release())));
133 profile->properties.SetStringWithoutPathExpansion(shill::kUserHashProperty,
142 const base::DictionaryValue& properties) {
146 profile->entries.SetWithoutPathExpansion(entry_path, properties.DeepCopy());
223 base::DictionaryValue* properties) {
140 AddEntry(const std::string& profile_path, const std::string& entry_path, const base::DictionaryValue& properties) argument
221 GetService(const std::string& service_path, std::string* profile_path, base::DictionaryValue* properties) argument
[all...]

Completed in 2481 milliseconds

1234567891011>>