HomeSort by relevance Sort by last modified time
    Searched full:attributename (Results 76 - 100 of 120) sorted by null

1 2 34 5

  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java 133 String attributeName = resourceInfo.getSecond();
135 return Pair.of(attributeName, mContext.getRenderResources().getFrameworkResource(
136 resourceInfo.getFirst(), attributeName));
145 String attributeName = resourceInfo.getSecond();
147 return Pair.of(attributeName, mContext.getRenderResources().getProjectResource(
148 resourceInfo.getFirst(), attributeName));
  /sdk/sdk_common/src/com/android/ide/common/xml/
AndroidManifestParser.java 520 * @param attributeName the name of the attribute to look for.
525 private String getAttributeValue(Attributes attributes, String attributeName,
529 if (attributeName.equals(attributes.getLocalName(i)) &&
544 * @param attributeName the name of the attribute to look for.
549 private Boolean getAttributeBooleanValue(Attributes attributes, String attributeName,
553 if (attributeName.equals(attributes.getLocalName(i)) &&
  /external/webkit/Source/WebCore/inspector/front-end/
ElementsTreeOutline.js 842 _triggerEditAttribute: function(attributeName)
846 if (attributeElements[i].textContent === attributeName) {
867 var attributeName = attributeNameElement.textContent;
887 context: attributeName,
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 666 QualifiedName attributeName(nullAtom, localName, nullAtom);
673 if (isIdAttributeName(old ? old->name() : attributeName))
679 m_attributeMap->addAttribute(createAttribute(attributeName, value));
828 const QualifiedName& attributeName = m_attributeMap->m_attributes[i]->name();
829 if (isEventHandlerAttribute(attributeName)) {
834 if (isAttributeToRemove(attributeName, m_attributeMap->m_attributes[i]->value()))
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 148 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const String& attributeName)
151 if (attributeName.isEmpty())
153 if (!attributeName.contains(':'))
154 return QualifiedName(nullAtom, attributeName, nullAtom);
159 if (!Document::parseQualifiedName(attributeName, prefix, localName, ec))
    [all...]
SVGSMILElement.h 59 const QualifiedName& attributeName() const { return m_attributeName; }
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 287 String attributeName = readAttributeName(true);
288 if (attributeName == null) {
297 || "expires".equals(attributeName) || "port".equals(attributeName)
304 setAttribute(cookie, attributeName, attributeValue);
  /cts/tools/signature-tools/src/signature/converter/dex/
DexUtil.java 387 * @param attributeName
392 String attributeName) {
395 if (attributeName.equals(dexAnnotationAttribute.getName())) {
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_mac_unittest.mm 34 // |attributeName| remains the same.
37 NSString* attributeName) {
40 [string attribute:attributeName
  /external/webkit/Source/WebCore/svg/
SVGStyledElement.cpp 391 QualifiedName attributeName(nullAtom, name, nullAtom);
392 Attribute* attr = attributeMap()->getAttributeItem(attributeName);
402 mapToEntry(attributeName, entry);
SVGAnimateTransformElement.cpp 77 if (targetElement->animatedPropertyTypeForAttribute(attributeName()) != AnimatedTransformList)
  /external/webkit/Source/WebCore/html/parser/
HTMLToken.h 443 Attribute* getAttributeItem(const QualifiedName& attributeName)
448 return m_attributes->getAttributeItem(attributeName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 306 IGLProperty attributeName = new GLStringProperty(GLStateType.ATTRIBUTE_NAME, "");
314 attributeName, attributeType, attributeSize, attributeValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 191 public String replace(String attributeUri, String attributeName,
193 if (attributeName.equals("hidden")) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 156 String attributeName) {
163 IAttributeInfo info = first.getAttributeInfo(ANDROID_URI, attributeName);
177 attributeName),
179 first.getStringAttr(ANDROID_URI, attributeName), ICON_GRAVITY,
462 String replace(String attributeUri, String attributeName, String attributeValue);
    [all...]
  /cts/tools/utils/
CollectAllTests.java 308 String attributeName) {
311 return e.getAttribute(attributeName);
  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 275 jsattributes.forEach(function(attributeName) {
276 n.removeAttribute(attributeName);
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.cpp 528 String attributeName = attribute->localName();
530 attrStyleObject->setString("name", attributeName.utf8().data());
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
CodeGeneratorTestRunner.pm 520 my $attributeName = $_->signature->name;
528 return "{ \"$attributeName\", $getterName, $setterName, " . join(" | ", @attributes) . " }";
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 112 String attributeName, XmlSerializerAndParser<V> serializerAndParser) {
116 mAttributesName = attributeName;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 453 * @param attributeName the attribute name
456 public boolean definesAttribute(String namespaceUri, String attributeName) {
458 if (desc.getXmlLocalName().equals(attributeName) &&
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 187 inline const QualifiedName& attributeName() const { return m_attrName; }
669 if (shouldPreserveWritingDirection == PreserveWritingDirection && equivalent->attributeName() == HTMLNames::dirAttr)
678 conflictingAttributes.append(equivalent->attributeName());
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 512 public static Map<String, Integer> getEnumValues(String attributeName) {
514 return sEnumValueMap.get(attributeName);
  /external/webkit/Source/WebKit/gtk/tests/
testatk.c     [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 806 String attributeName = readName();
861 defineAttributeDefault(elementName, attributeName, value);
866 private void defineAttributeDefault(String elementName, String attributeName, String value) {
875 elementAttributes.put(attributeName, value);
    [all...]

Completed in 1099 milliseconds

1 2 34 5