HomeSort by relevance Sort by last modified time
    Searched refs:attributeMap (Results 1 - 25 of 38) sorted by null

1 2

  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
AffiliationProvider.java 32 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
34 return new Affiliation(attributeMap.get("jid"), attributeMap.get("node"), Affiliation.Type.valueOf(attributeMap.get("affiliation")));
AffiliationsProvider.java 33 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
35 return new AffiliationsExtension(attributeMap.get("node"), (List<Affiliation>)content);
ItemsProvider.java 33 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
35 return new ItemsExtension(ItemsExtension.ItemsElementType.items, attributeMap.get("node"), content);
RetractEventProvider.java 33 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
35 return new RetractItem(attributeMap.get("id"));
SimpleNodeProvider.java 33 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
35 return new NodeExtension(PubSubElementType.valueOfFromElemName(currentElement, currentNamespace), attributeMap.get("node"));
SubscriptionsProvider.java 33 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
35 return new SubscriptionsExtension(attributeMap.get("node"), (List<Subscription>)content);
FormNodeProvider.java 35 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
37 return new FormNode(FormNodeType.valueOfFromElementName(currentElement, currentNamespace), attributeMap.get("node"), new Form((DataForm)content.iterator().next()));
  /external/webkit/Source/WebCore/dom/
DatasetDOMStringMap.cpp 148 NamedNodeMap* attributeMap = m_element->attributes(true);
149 if (attributeMap) {
150 unsigned length = attributeMap->length();
152 Attribute* attribute = attributeMap->attributeItem(i);
161 NamedNodeMap* attributeMap = m_element->attributes(true);
162 if (attributeMap) {
163 unsigned length = attributeMap->length();
165 Attribute* attribute = attributeMap->attributeItem(i);
176 NamedNodeMap* attributeMap = m_element->attributes(true);
177 if (attributeMap) {
    [all...]
StyledElement.h 41 bool hasMappedAttributes() const { return attributeMap() && attributeMap()->hasMappedAttributes(); }
102 ASSERT(attributeMap());
103 return attributeMap()->classNames();
StyledElement.cpp 155 if (attributeMap())
156 attributeMap()->declRemoved();
165 if (attributeMap())
166 attributeMap()->declAdded();
174 if (attributeMap())
175 attributeMap()->declAdded();
198 if (attributeMap())
199 attributeMap()->declAdded();
228 } else if (attributeMap())
229 attributeMap()->clearClass()
    [all...]
  /external/smack/src/org/jivesoftware/smackx/receipts/
DeliveryReceipt.java 71 Map<String, String> attributeMap, List<? extends PacketExtension> content)
73 return new DeliveryReceipt(attributeMap.get("id"));
  /external/smack/src/org/jivesoftware/smackx/provider/
HeadersProvider.java 32 protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content)
EmbeddedExtensionProvider.java 110 abstract protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content);
  /libcore/luni/src/main/java/java/text/
AttributedString.java 39 Map<AttributedCharacterIterator.Attribute, List<Range>> attributeMap;
186 return attrString.attributeMap.keySet();
190 (attrString.attributeMap.size() * 4 / 3) + 1);
191 Iterator<Map.Entry<Attribute, List<Range>>> it = attrString.attributeMap
223 ArrayList<Range> ranges = (ArrayList<Range>) attrString.attributeMap
233 (attrString.attributeMap.size() * 4 / 3) + 1);
234 Iterator<Map.Entry<Attribute, List<Range>>> it = attrString.attributeMap
276 ArrayList<Range> ranges = (ArrayList<Range>) attrString.attributeMap
324 ArrayList<Range> ranges = (ArrayList<Range>) attrString.attributeMap
403 attributeMap = new HashMap<Attribute, List<Range>>
    [all...]
  /sdk/attribute_stats/src/
Analyzer.java 247 Map<String, Usage> attributeMap = mFrequencies.get(tag);
248 if (attributeMap == null) {
249 attributeMap = new HashMap<String, Usage>(70);
250 mFrequencies.put(tag, attributeMap);
277 Usage usage = attributeMap.get(name);
283 attributeMap.put(name, usage);
289 Map<String, Usage> attributeMap = mLayoutAttributeFrequencies.get(parentTag);
290 if (attributeMap == null) {
291 attributeMap = new HashMap<String, Usage>(70);
292 mLayoutAttributeFrequencies.put(parentTag, attributeMap);
    [all...]
  /external/smack/src/org/jivesoftware/smack/provider/
EmbeddedExtensionProvider.java 108 abstract protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attributeMap, List<? extends PacketExtension> content);
  /external/webkit/Source/WebCore/bindings/js/
JSElementCustom.cpp 61 markDOMObjectWrapper(markStack, globalData, element->attributeMap());
  /external/webkit/Source/WebCore/html/
HTMLViewSourceDocument.cpp 289 RefPtr<NamedNodeMap> attributeMap = NamedNodeMap::create();
290 attributeMap->addAttribute(Attribute::createMapped(hrefAttr, href));
291 base->setAttributeMap(attributeMap.release());
ClassList.cpp 143 return m_element->attributeMap()->classNames();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 306 Map<String, AttributeInfo> attributeMap = parser.getAttributeMap();
307 assertNotNull(attributeMap);
308 assertNotNull(attributeMap.get("layout_width"));
311 checkDir(new File(git, "packages" + File.separator + "apps"), false, attributeMap, seen);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 105 * @param attributeMap the map
107 public void setAttributeMap(@NonNull Map<String, AttributeInfo> attributeMap) {
108 mAttributeMap = attributeMap;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 258 NamedNodeMap attributeMap = element.getAttributes();
259 for (int i = 0, n = attributeMap.getLength(); i < n; i++) {
260 Attr attribute = (Attr) attributeMap.item(i);
  /external/webkit/Source/WebCore/svg/
SVGStyledElement.cpp 388 if (!attributeMap())
392 Attribute* attr = attributeMap()->getAttributeItem(attributeName);
  /external/webkit/Source/WebCore/editing/
ReplaceSelectionCommand.cpp     [all...]

Completed in 240 milliseconds

1 2