Searched defs:properties (Results 226 - 250 of 412) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8Binding.h802 // is not a platform object that supports indexed properties. If it supports indexed properties,
938 v8::Handle<v8::Array> properties = v8::Array::New(info.GetIsolate(), length); local
942 properties->Set(integer, integer);
944 v8SetReturnValue(info, properties);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DFontFaceSet.cpp522 CSSPropertyValue properties[] = { local
532 styleResolver.applyPropertiesToStyle(properties, WTF_ARRAY_LENGTH(properties), style.get());
H A DStylePropertySet.cpp48 PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode) argument
56 return adoptRefWillBeNoop(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
72 MutableStylePropertySet::MutableStylePropertySet(const CSSProperty* properties, unsigned length) argument
77 m_propertyVector.uncheckedAppend(properties[i]);
80 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode) argument
86 metadataArray[i] = properties[i].metadata();
87 valueArray[i] = properties[i].value();
110 // Only enabled or internal properties should be part of the style.
180 bool ret = removePropertiesInSet(shorthand.properties(), shorthand.length());
187 return removePropertiesInSet(shorthandPrefixingVariant.properties(), shorthandPrefixingVarian
348 addParsedProperties(const WillBeHeapVector<CSSProperty, 256>& properties) argument
456 const CSSProperty* properties = m_propertyVector.data(); local
548 const CSSProperty* properties = m_propertyVector.data(); local
591 create(const CSSProperty* properties, unsigned count) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DWatchExpressionsSidebarPane.js160 // In the outer function, we calculate the number of properties
165 // method to get all the properties refreshed at once.
166 properties.push(property);
168 if (properties.length == propertyCount) {
169 this.updateProperties(properties);
189 var properties = []; variable
191 // Count the properties, so we known when to call this.updateProperties()
229 * @param {!Array.<!WebInspector.RemoteObjectProperty>} properties
231 updateProperties: function(properties)
234 WebInspector.ObjectPropertyTreeElement.populateWithProperties(this.propertiesTreeOutline, properties, [],
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDistanceFieldTextContext.cpp58 const SkDeviceProperties& properties,
60 : GrTextContext(context, properties) {
57 GrDistanceFieldTextContext(GrContext* context, const SkDeviceProperties& properties, bool enable) argument
/external/chromium_org/ui/compositor/
H A Dlayer_animation_element.cc32 Pause(AnimatableProperties properties, base::TimeDelta duration) argument
33 : LayerAnimationElement(properties, duration) {
328 ThreadedLayerAnimationElement(AnimatableProperties properties, argument
330 : LayerAnimationElement(properties, duration) {
581 AnimatableProperties properties = element->properties(); local
582 DCHECK(properties & TRANSFORM);
626 AnimatableProperties properties, base::TimeDelta duration)
628 properties_(properties),
842 AnimatableProperties properties,
625 LayerAnimationElement( AnimatableProperties properties, base::TimeDelta duration) argument
841 CreatePauseElement( AnimatableProperties properties, base::TimeDelta duration) argument
[all...]
/external/chromium_org/v8/src/ic/ia32/
H A Dhandler-compiler-ia32.cc73 // Load properties array.
74 Register properties = scratch0; local
75 __ mov(properties, FieldOperand(receiver, JSObject::kPropertiesOffset));
77 // Check that the properties array is a dictionary.
78 __ cmp(FieldOperand(properties, HeapObject::kMapOffset),
84 properties, name, scratch1);
392 // The properties must be extended before we can store the value.
393 // We jump to a runtime call that extends the properties array.
423 // Adjust for the number of properties stored in the object. Even in the
425 // object and the number of in-object properties i
[all...]
/external/chromium_org/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc41 // Load properties array.
42 Register properties = scratch0; local
43 __ movp(properties, FieldOperand(receiver, JSObject::kPropertiesOffset));
45 // Check that the properties array is a dictionary.
46 __ CompareRoot(FieldOperand(properties, HeapObject::kMapOffset),
52 properties, name, scratch1);
386 // The properties must be extended before we can store the value.
387 // We jump to a runtime call that extends the properties array.
417 // Adjust for the number of properties stored in the object. Even in the
419 // object and the number of in-object properties i
[all...]
/external/chromium_org/v8/src/ic/x87/
H A Dhandler-compiler-x87.cc73 // Load properties array.
74 Register properties = scratch0; local
75 __ mov(properties, FieldOperand(receiver, JSObject::kPropertiesOffset));
77 // Check that the properties array is a dictionary.
78 __ cmp(FieldOperand(properties, HeapObject::kMapOffset),
84 properties, name, scratch1);
394 // The properties must be extended before we can store the value.
395 // We jump to a runtime call that extends the properties array.
425 // Adjust for the number of properties stored in the object. Even in the
427 // object and the number of in-object properties i
[all...]
/external/chromium_org/v8/src/
H A Djson-parser.h186 ZoneList<Handle<Object> >* properties);
307 ZoneList<Handle<Object> > properties(8, zone());
407 properties.Add(value, zone());
416 CommitStateToJsonObject(json_object, map, &properties);
434 CommitStateToJsonObject(json_object, map, &properties);
445 ZoneList<Handle<Object> >* properties) {
452 // |properties| values correspond to the |map| and nothing more has to be
454 // iterate descriptors to ensure that properties still correspond to the
459 int length = properties->length();
465 Handle<Object> value = (*properties)[
443 CommitStateToJsonObject( Handle<JSObject> json_object, Handle<Map> map, ZoneList<Handle<Object> >* properties) argument
[all...]
H A Dtyping.cc402 ZoneList<ObjectLiteral::Property*>* properties = expr->properties(); local
403 for (int i = 0; i < properties->length(); ++i) {
404 ObjectLiteral::Property* prop = properties->at(i);
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java82 final SourcePathCache cache, final IProperties properties)
85 initialize (mdata, cdata, cache, properties);
81 process(final IMetaData mdata, final ICoverageData cdata, final SourcePathCache cache, final IProperties properties) argument
/external/emma/core/java12/com/vladium/emma/rt/
H A DAppRunner.java71 RT.reset (true, false); // reset RT [RT creates 'cdata' and loads app properties]
73 // load tool properties:
88 log.trace1 ("run", "complete tool properties:");
779 final SourcePathCache cache, final IProperties properties)
785 if (properties == null) throw new IllegalArgumentException ("null input: properties");
797 m_properties = properties;
775 AppRunnerExitHook(final Logger log, final boolean dumpRawData, final File sdataOutFile, final boolean sdataOutMerge, final IMetaData mdata, final ICoverageData cdata, final IReportGenerator [] generators, final SourcePathCache cache, final IProperties properties) argument
/external/harfbuzz_ng/test/api/
H A Dtest-unicode.c102 /* Check all properties */
469 static const property_t properties[] = variable
489 for (i = 0; i < G_N_ELEMENTS (properties); i++) {
490 const property_t *p = &properties[i];
526 for (i = 0; i < G_N_ELEMENTS (properties); i++) {
527 const property_t *p = &properties[i];
608 /* This is cruel: we use script-returning functions to test all properties,
611 for (i = 0; i < G_N_ELEMENTS (properties); i++) {
612 const property_t *p = &properties[i];
/external/openfst/src/include/fst/
H A Dqueue.h533 // queue discipline for a given FST based on its properties.
548 // First check if the FST is known to have these properties.
561 uint64 properties; local
563 SccVisitor<Arc> scc_visitor(&scc_, 0, 0, &properties);
H A Dvector-fst.h30 #include <fst/test-properties.h>
40 // State definition. This does not manage the Fst properties.
180 // manages Fst properties and the # of input and output epsilons.
546 uint64 properties = fst.Properties(kCopyProperties, false) | local
549 properties, &hdr);
573 properties, &hdr, start_offset);
/external/skia/src/gpu/
H A DGrDistanceFieldTextContext.cpp40 const SkDeviceProperties& properties,
42 : GrTextContext(context, properties) {
39 GrDistanceFieldTextContext(GrContext* context, const SkDeviceProperties& properties, bool enable) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar ... file String key String timestamp private java.util.Properties readTimestamps () java.util.Properties result java.io ...
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jar ... xml .api_description .options about.html plugin.properties org/ org/eclipse/ org/eclipse/core/ org/eclipse/core/internal ...
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_core.c37 #include <cutils/properties.h>
892 bt_property_t properties[6]; local
904 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDADDR,
906 btif_storage_get_adapter_property(&properties[num_props]);
910 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDNAME,
912 btif_storage_get_adapter_property(&properties[num_props]);
916 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_SCAN_MODE,
918 btif_storage_get_adapter_property(&properties[num_props]);
922 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_DISCOVERY_TIMEOUT,
924 btif_storage_get_adapter_property(&properties[num_prop
[all...]
/external/chromium_org/chrome/browser/chromeos/mobile/
H A Dmobile_activator.cc290 const base::DictionaryValue& properties) {
298 if (!properties.GetStringWithoutPathExpansion(
300 !properties.GetDictionaryWithoutPathExpansion(
304 NET_LOG_ERROR("MobileActivator missing properties", service_path_);
288 GetPropertiesAndContinueActivation( const std::string& service_path, const base::DictionaryValue& properties) argument
/external/chromium_org/chrome/browser/chromeos/options/
H A Dvpn_config_view.cc354 base::DictionaryValue properties; local
355 // Identifying properties
356 properties.SetStringWithoutPathExpansion(
358 properties.SetStringWithoutPathExpansion(
360 properties.SetStringWithoutPathExpansion(
362 properties.SetStringWithoutPathExpansion(
365 SetConfigProperties(&properties);
373 properties.SetBooleanWithoutPathExpansion(shill::kAutoConnectProperty,
377 ash::network_connect::CreateConfigurationAndConnect(&properties, shared);
387 base::DictionaryValue properties; local
809 SetConfigProperties( base::DictionaryValue* properties) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dmenu_manager.cc62 void SetIdKeyValue(base::DictionaryValue* properties, argument
66 properties->SetString(key, id.string_uid);
68 properties->SetInteger(key, id.uid);
630 base::DictionaryValue* properties = new base::DictionaryValue(); local
631 SetIdKeyValue(properties, "menuItemId", item->id());
633 SetIdKeyValue(properties, "parentMenuItemId", *item->parent_id());
637 properties->SetString("mediaType", "image");
640 properties->SetString("mediaType", "video");
643 properties->SetString("mediaType", "audio");
648 AddURLProperty(properties, "linkUr
[all...]

Completed in 1298 milliseconds

1234567891011>>