Searched defs:property (Results 1 - 25 of 257) sorted by last modified time

1234567891011

/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.c533 * wpas_dbus_signal_network_enabled_changed - Signals Enabled property changes
535 * @ssid: configured network which Enabled property has changed
537 * Sends PropertyChanged signals containing new value of Enabled property
1714 * wpas_dbus_signal_prop_changed - Signals change of property
1716 * @property: indicates which property has changed
1719 * depending on which property has changed.
1722 enum wpas_dbus_prop property)
1731 switch (property) {
1759 __func__, property);
1721 wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s, enum wpas_dbus_prop property) argument
1782 wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s, enum wpas_dbus_bss_prop property, unsigned int id) argument
[all...]
H A Ddbus_new.h134 enum wpas_dbus_prop property);
136 enum wpas_dbus_bss_prop property,
241 enum wpas_dbus_prop property)
246 struct wpa_supplicant *wpa_s, enum wpas_dbus_bss_prop property,
240 wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s, enum wpas_dbus_prop property) argument
245 wpas_dbus_bss_signal_prop_changed( struct wpa_supplicant *wpa_s, enum wpas_dbus_bss_prop property, unsigned int id) argument
H A Ddbus_new_helpers.c54 /* An error getting a property fails the request entirely */
183 "Failed to read property");
210 /* Skip the interface name and the property name */
214 /* Iter will now point to the property's new value */
222 "Failed to set property");
236 char *property; local
242 /* Second argument: property name (DBUS_TYPE_STRING) */
248 dbus_message_iter_get_basic(iter, &property);
251 /* compare property names and
253 if (!os_strncmp(property_dsc->dbus_property, property,
871 wpa_dbus_mark_property_changed(struct wpas_dbus_priv *iface, const char *path, const char *interface, const char *property) argument
[all...]
/external/webkit/Source/WebCore/platform/animation/
H A DAnimation.h97 int property() const { return m_property; } function in class:WebCore::Animation
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsLayer.cpp251 String GraphicsLayer::animationNameForTransition(AnimatedPropertyID property) argument
254 return makeString("-|transition", static_cast<char>(property), '-');
323 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
H A DGraphicsLayer.h154 // which can be inferred from the property.
159 KeyframeValueList(AnimatedPropertyID property) argument
160 : m_property(property)
169 AnimatedPropertyID property() const { return m_property; } function in class:WebCore::KeyframeValueList
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp74 static String propertyIdToString(AnimatedPropertyID property) argument
76 switch (property) {
895 if (valueList.property() == AnimatedPropertyWebkitTransform) {
919 switch (valueList.property()) {
940 anim->setName(propertyIdToString(valueList.property()));
964 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
983 anim->setName(propertyIdToString(valueList.property()));
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.cpp308 void LayerAndroid::removeAnimationsForProperty(AnimatedPropertyID property) argument
313 if ((it->second)->type() == property)
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp212 static String propertyIdToString(AnimatedPropertyID property) argument
214 switch (property) {
228 static String animationIdentifier(const String& animationName, AnimatedPropertyID property, int index) argument
230 return makeString(animationName, '_', String::number(property), '_', String::number(index));
445 void GraphicsLayerCA::moveOrCopyAnimationsForProperty(MoveOrCopy operation, AnimatedPropertyID property, PlatformCALayer *fromLayer, PlatformCALayer *toLayer) argument
447 // Look for running animations affecting this property.
454 if (currAnimation.m_property == property)
615 if (valueList.property() == AnimatedPropertyOpacity)
625 if (valueList.property() == AnimatedPropertyWebkitTransform)
1454 void GraphicsLayerCA::setAnimationOnLayer(PlatformCAAnimation* caAnim, AnimatedPropertyID property, cons argument
1493 removeCAAnimationFromLayer(AnimatedPropertyID property, const String& animationName, int index) argument
1518 pauseCAAnimationOnLayer(AnimatedPropertyID property, const String& animationName, int index, double timeOffset) argument
[all...]
H A DGraphicsLayerCA.h361 // This represents the animation of a single property. There may be multiple transform animations for
364 LayerPropertyAnimation(PassRefPtr<PlatformCAAnimation> caAnimation, const String& animationName, AnimatedPropertyID property, int index, double timeOffset) argument
367 , m_property(property)
395 // Map of animation names to their associated lists of property animations, so we can remove/pause them.
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp334 // Set transform property, if it is not animating. We have to do this here because the transform
1344 bool RenderLayerBacking::startTransition(double timeOffset, int property, const RenderStyle* fromStyle, const RenderStyle* toStyle) argument
1348 ASSERT(property != cAnimateAll);
1350 if (property == (int)CSSPropertyOpacity) {
1365 if (property == (int)CSSPropertyWebkitTransform && m_owningLayer->hasTransform()) {
1388 void RenderLayerBacking::transitionPaused(double timeOffset, int property) argument
1390 AnimatedPropertyID animatedProperty = cssToGraphicsLayerProperty(property);
1395 void RenderLayerBacking::transitionFinished(int property) argument
1397 AnimatedPropertyID animatedProperty = cssToGraphicsLayerProperty(property);
1434 int RenderLayerBacking::graphicsLayerToCSSProperty(AnimatedPropertyID property) argument
[all...]
H A DRenderLayerCompositor.cpp1325 void RenderLayerCompositor::didStartAcceleratedAnimation(CSSPropertyID property) argument
1330 if (property == CSSPropertyWebkitTransform)
/external/webkit/Source/WebCore/svg/
H A DSVGSVGElement.cpp56 // Animated property definitions
292 static void updateCSSForAttribute(SVGSVGElement* element, const QualifiedName& attrName, CSSPropertyID property, const SVGLength& value) argument
297 element->addCSSProperty(attribute, property, value.valueAsString());
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedListPropertyTearOff.h56 int removeItemFromList(SVGProperty* property, bool shouldSynchronizeWrappers) argument
60 return static_pointer_cast<SVGListPropertyTearOff<PropertyType> >(m_baseVal)->removeItemFromList(static_cast<ListItemTearOff*>(property), shouldSynchronizeWrappers);
H A DSVGAnimatedProperty.h65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property) argument
70 wrapper = TearOffType::create(element, attributeName, property);
H A DSVGAnimatedPropertyTearOff.h49 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
52 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, property));
55 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
57 , m_property(property)
H A DSVGAnimatedStaticPropertyTearOff.h42 void setBaseVal(const PropertyType& property) argument
44 m_property = property;
54 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
57 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, property));
60 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
62 , m_property(property)
/external/webkit/Source/WebKit/chromium/src/
H A DWebBindings.cpp91 bool WebBindings::getProperty(NPP npp, NPObject* object, NPIdentifier property, NPVariant* result) argument
93 return _NPN_GetProperty(npp, object, property, result);
111 bool WebBindings::hasProperty(NPP npp, NPObject* object, NPIdentifier property) argument
113 return _NPN_HasProperty(npp, object, property);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFullscreenVideoController.cpp69 static void onFullscreenGtkActiveNotification(GtkWidget* widget, GParamSpec* property, FullscreenVideoController* controller) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DFrameLoaderClientQt.cpp1545 CSSPropertyID property = qstyleSheetProperties[i]; local
1547 styleSheet += QString::fromLatin1(getPropertyName(property));
1549 styleSheet += computedStyle(element)->getPropertyValue(property);
1663 QVariant value = m_webFrame->page()->property("_q_MIMESniffingDisabled");
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp265 globalObject->removeDirect(*m_globalData, function->ident()); // Make sure our new function is not shadowed by an old property.
1133 bool BytecodeGenerator::findScopedProperty(const Identifier& property, int& index, size_t& stackDepth, bool forWriting, bool& requiresDynamicChecks, JSObject*& globalObject) argument
1136 if (property == propertyNames().arguments || !canOptimizeNonLocals()) {
1157 SymbolTableEntry entry = currentVariableObject->symbolTable().get(property.impl());
1159 // Found the property
1179 // Can't locate the property but we're able to avoid a few lookups.
1204 RegisterID* BytecodeGenerator::emitResolve(RegisterID* dst, const Identifier& property) argument
1210 if (!findScopedProperty(property, index, depth, false, requiresDynamicChecks, globalObject) && !globalObject) {
1214 instructions().append(addConstant(property));
1222 // Directly index the property looku
1294 emitResolveBase(RegisterID* dst, const Identifier& property) argument
1314 emitResolveBaseForPut(RegisterID* dst, const Identifier& property) argument
1340 emitResolveWithBase(RegisterID* baseDst, RegisterID* propDst, const Identifier& property) argument
1386 emitGetById(RegisterID* dst, RegisterID* base, const Identifier& property) argument
1415 emitPutById(RegisterID* base, const Identifier& property, RegisterID* value) argument
1435 emitDirectPutById(RegisterID* base, const Identifier& property, RegisterID* value) argument
1455 emitPutGetter(RegisterID* base, const Identifier& property, RegisterID* value) argument
1464 emitPutSetter(RegisterID* base, const Identifier& property, RegisterID* value) argument
1473 emitDeleteById(RegisterID* dst, RegisterID* base, const Identifier& property) argument
1482 emitGetArgumentByVal(RegisterID* dst, RegisterID* base, RegisterID* property) argument
1492 emitGetByVal(RegisterID* dst, RegisterID* base, RegisterID* property) argument
1514 emitPutByVal(RegisterID* base, RegisterID* property, RegisterID* value) argument
1523 emitDeleteByVal(RegisterID* dst, RegisterID* base, RegisterID* property) argument
2089 emitPushNewScope(RegisterID* dst, const Identifier& property, RegisterID* value) argument
[all...]
H A DBytecodeGenerator.h124 // property. Returns false if for any reason the property cannot be safely
126 // VariableObject that defines the property. If the property cannot be found
307 RegisterID* emitIn(RegisterID* dst, RegisterID* property, RegisterID* base) { return emitBinaryOp(op_in, dst, property, base, OperandTypes()); } argument
309 RegisterID* emitResolve(RegisterID* dst, const Identifier& property);
313 RegisterID* emitResolveBase(RegisterID* dst, const Identifier& property);
314 RegisterID* emitResolveBaseForPut(RegisterID* dst, const Identifier& property);
315 RegisterID* emitResolveWithBase(RegisterID* baseDst, RegisterID* propDst, const Identifier& property);
[all...]
H A DNodesCodegen.cpp269 RegisterID* property = generator.emitNode(m_subscript); local
271 return generator.emitGetArgumentByVal(generator.finalDestination(dst), generator.uncheckedRegisterForArguments(), property);
275 RegisterID* property = generator.emitNode(m_subscript); local
277 return generator.emitGetByVal(generator.finalDestination(dst), base.get(), property);
387 RegisterID* property = generator.emitNode(m_subscript); local
389 RefPtr<RegisterID> function = generator.emitGetByVal(generator.tempDestination(dst), base.get(), property);
593 RefPtr<RegisterID> property = generator.emitNode(m_subscript); local
596 RefPtr<RegisterID> value = generator.emitGetByVal(generator.newTemporary(), base.get(), property.get());
608 generator.emitPutByVal(base.get(), property.get(), value.get());
768 RefPtr<RegisterID> property local
1257 RefPtr<RegisterID> property = generator.emitNodeForLeftHandSide(m_subscript, m_rightHasAssignments, m_right->isPure(generator)); local
1271 RefPtr<RegisterID> property = generator.emitNodeForLeftHandSide(m_subscript, m_rightHasAssignments, m_right->isPure(generator)); local
[all...]
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGAliasTracker.h38 // This class id used to detect aliasing property accesses, which we may
51 NodeIndex lookupGetByVal(NodeIndex base, NodeIndex property) argument
54 // property; in these cases, we may be able to omit the subsequent get on the
63 if (possibleAlias.child1 == base && equalIgnoringLaterNumericConversion(possibleAlias.child2, property))
H A DDFGOperations.cpp68 JSValue property = JSValue::decode(encodedProperty); local
73 if (property.isUInt32()) {
75 uint32_t i = property.asUInt32();
92 if (property.isString()) {
93 Identifier propertyName(exec, asString(property)->value(exec));
100 Identifier ident(exec, property.toString(exec));
117 JSValue property = JSValue::decode(encodedProperty); local
120 if (LIKELY(property.isUInt32())) {
121 uint32_t i = property.asUInt32();
154 Identifier ident(exec, property
[all...]

Completed in 357 milliseconds

1234567891011