HomeSort by relevance Sort by last modified time
    Searched refs:attrMap (Results 1 - 10 of 10) sorted by null

  /packages/apps/IM/src/com/android/im/imps/
WbxmlPrimitiveSerializer.java 52 Map<String, String> attrMap = element.getAttributes();
53 if(attrMap != null && attrMap.size() > 0) {
54 atts = new String[attrMap.size() * 2];
56 for (Map.Entry<String, String> entry : attrMap.entrySet()) {
XmlPrimitiveSerializer.java 57 Map<String, String> attrMap = element.getAttributes();
58 if(attrMap != null && attrMap.size() > 0) {
59 for (Map.Entry<String, String> entry : attrMap.entrySet()) {
  /dalvik/libcore/awt-kernel/src/main/java/java/awt/font/
TextAttribute.java 50 /** The Constant attrMap. */
51 private static final Map<String, TextAttribute> attrMap = new HashMap<String, TextAttribute>();
60 attrMap.put(name, this);
72 TextAttribute result = attrMap.get(this.getName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/
AttrsXmlParserTest.java 91 Map<String, Map<String, Integer>> attrMap = mParser.getEnumFlagValues();
92 assertTrue(attrMap.containsKey("orientation"));
94 Map<String, Integer> valueMap = attrMap.get("orientation");
  /external/webkit/WebKit/chromium/src/
WebPageSerializerImpl.cpp 311 const NamedNodeMap *attrMap = element->attributes(true);
312 if (attrMap) {
313 unsigned numAttrs = attrMap->length();
317 const Attribute *attribute = attrMap->attributeItem(i);
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.cpp 498 const NamedNodeMap* attrMap = element->attributes(true);
499 if (!attrMap)
501 unsigned numAttrs = attrMap->length();
505 const Attribute *attribute = attrMap->attributeItem(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 562 self.attrMap[key] = value
580 if self.attrMap.has_key(key):
581 del self.attrMap[key]
815 if not getattr(self, 'attrMap'):
816 self.attrMap = {}
818 self.attrMap[key] = value
819 return self.attrMap
    [all...]
  /external/webkit/WebCore/dom/
Element.cpp     [all...]
Node.cpp 174 if (NamedNodeMap* attrMap = element->attributes(true)) {
175 attributes += attrMap->length();
177 if (attrMap->isMappedAttributeMap())
179 for (unsigned i = 0; i < attrMap->length(); ++i) {
180 Attribute* attr = attrMap->attributeItem(i);
    [all...]

Completed in 696 milliseconds