Home
last modified time | relevance | path

Searched refs:m_properties (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/inspector/
DInspectorState.cpp40 , m_properties(InspectorObject::create()) in InspectorState()
47 m_properties.clear(); in loadFromCookie()
50 m_properties = cookie->asObject(); in loadFromCookie()
51 if (!m_properties) in loadFromCookie()
52 m_properties = InspectorObject::create(); in loadFromCookie()
68 m_client->updateInspectorStateCookie(m_properties->toJSONString()); in updateCookie()
73 m_properties->setValue(propertyName, value); in setValue()
79 InspectorObject::iterator it = m_properties->find(propertyName); in getBoolean()
81 if (it != m_properties->end()) in getBoolean()
88 InspectorObject::iterator it = m_properties->find(propertyName); in getString()
[all …]
DInspectorState.h71 RefPtr<InspectorObject> m_properties; variable
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DOutputProperties.java68 m_properties = new Properties(defaults); in OutputProperties()
83 m_properties = new Properties( in OutputProperties()
101 cloned.m_properties = (Properties) cloned.m_properties.clone(); in clone()
141 m_properties.put(key, value); in setProperty()
155 return m_properties.getProperty(key.toNamespacedString()); in getProperty()
172 return m_properties.getProperty(key); in getProperty()
184 m_properties.put(key.toNamespacedString(), value ? "yes" : "no"); in setBooleanProperty()
196 m_properties.put(key, value ? "yes" : "no"); in setBooleanProperty()
228 return OutputPropertyUtils.getBooleanProperty(key, m_properties); in getBooleanProperty()
252 m_properties.put(key, Integer.toString(value)); in setIntProperty()
[all …]
/external/webkit/Source/WebCore/rendering/style/
DKeyframeList.h46 void addProperty(int prop) { m_properties.add(prop); } in addProperty()
47 bool containsProperty(int prop) const { return m_properties.contains(prop); } in containsProperty()
48 const HashSet<int>& properties() const { return m_properties; } in properties()
58 HashSet<int> m_properties; // The properties specified in this keyframe. variable
80 void addProperty(int prop) { m_properties.add(prop); } in addProperty()
81 bool containsProperty(int prop) const { return m_properties.contains(prop); } in containsProperty()
82 HashSet<int>::const_iterator beginProperties() const { return m_properties.begin(); } in beginProperties()
83 HashSet<int>::const_iterator endProperties() const { return m_properties.end(); } in endProperties()
93 HashSet<int> m_properties; // the properties being animated variable
DKeyframeList.cpp36 m_properties.clear(); in clear()
85 m_properties.clear(); in insert()
89 m_properties.add(*it); in insert()
93 m_properties.add(*it); in insert()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTable.java112 private List<PropertyInfo> m_properties; field in PropertyTable
328 int index = m_properties.indexOf(m_activePropertyInfo); in navigate()
335 newIndex = m_properties.size() - 1; in navigate()
339 newIndex = Math.min(index + m_page - 1, m_properties.size() - 1); in navigate()
343 newIndex = Math.min(index + 1, m_properties.size() - 1); in navigate()
346 if (newIndex != index && newIndex < m_properties.size()) { in navigate()
347 setActivePropertyInfo(m_properties.get(newIndex)); in navigate()
381 m_splitterResizing = event.button == 1 && m_properties != null && isLocationSplitter(event.x); in handleMouseDown()
383 if (!m_splitterResizing && m_properties != null) { in handleMouseDown()
385 if (propertyIndex >= m_properties.size()) { in handleMouseDown()
[all …]
/external/webkit/Source/WebCore/css/
DCSSMutableStyleDeclaration.cpp64 , m_properties(properties) in CSSMutableStyleDeclaration()
71 m_properties.shrinkToFit(); in CSSMutableStyleDeclaration()
83 m_properties.reserveInitialCapacity(numProperties); in CSSMutableStyleDeclaration()
94 m_properties.append(*property); in CSSMutableStyleDeclaration()
103 m_properties = other.m_properties; in operator =()
481 m_properties.remove(foundProperty - m_properties.data()); in removeProperty()
583 m_properties.append(property); in setPropertyInternal()
624 m_properties.clear(); in parseDeclaration()
634 m_properties.reserveCapacity(numProperties); in addParsedProperties()
641 m_properties.append(*properties[i]); in addParsedProperties()
[all …]
DCSSPropertyLonghand.h29 : m_properties(0) in CSSPropertyLonghand()
35 : m_properties(firstProperty) in CSSPropertyLonghand()
40 const int* properties() const { return m_properties; } in properties()
44 const int* m_properties;
DCSSMutableStyleDeclaration.h81 const_iterator begin() { return const_iterator(this, m_properties.begin()); } in begin()
82 const_iterator end() { return const_iterator(this, m_properties.end()); } in end()
94 unsigned length() const { return m_properties.size(); } in length()
140 …pertiesEqual(const CSSMutableStyleDeclaration* o) const { return m_properties == o->m_properties; } in propertiesEqual()
172 Vector<CSSProperty, 4> m_properties; variable
220 ASSERT(m_current != const_cast<CSSMutableStyleDeclaration*>(m_decl)->m_properties.end());
/external/webkit/Tools/DumpRenderTree/chromium/
DCppBoundClass.cpp206 for (PropertyList::iterator i = m_properties.begin(); i != m_properties.end(); ++i) in ~CppBoundClass()
221 return m_properties.find(ident) != m_properties.end(); in hasProperty()
254 PropertyList::const_iterator callback = m_properties.find(ident); in getProperty()
255 if (callback == m_properties.end()) { in getProperty()
269 PropertyList::iterator callback = m_properties.find(ident); in setProperty()
270 if (callback == m_properties.end()) in setProperty()
308 PropertyList::iterator oldCallback = m_properties.find(ident); in bindProperty()
309 if (oldCallback != m_properties.end()) { in bindProperty()
312 m_properties.remove(oldCallback); in bindProperty()
317 m_properties.set(ident, callback); in bindProperty()
DCppBoundClass.h217 PropertyList m_properties; variable
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
DPropertyListIntersector.java79 private final List<Property> m_properties = Lists.newArrayList(); field in PropertyListIntersector.PropertyGroup
87 m_properties.add(property); in PropertyGroup()
112 Property properties[] = m_properties.toArray(new Property[m_properties.size()]); in getCompositeProperty()
125 Property example = m_properties.get(0); in add()
129 m_properties.add(property); in add()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
DComplexProperty.java36 private Property[] m_properties; field in ComplexProperty
92 return m_properties; in getProperties()
99 m_properties = properties; in setProperties()
/external/webkit/Source/JavaScriptCore/heap/
DMarkStack.h96 , m_properties(properties) in MarkSet()
102 MarkSetProperties m_properties; member
/external/emma/core/java12/com/vladium/emma/rt/
DAppRunner.java741 … generator.process (mdataSnashot, cdataSnapshot, m_cache, m_properties); in run()
764 m_properties = null; in run()
797 m_properties = properties; in AppRunnerExitHook()
821 private IProperties m_properties; field in AppRunner.AppRunnerExitHook
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0667755 m_properties hash.
67759 Add a m_properties HashSet for the properties animated in this keyframe.
DChangeLog-2009-06-1660598 Iterates over m_properties vector of CSSProperty objects calling