HomeSort by relevance Sort by last modified time
    Searched refs:attrName (Results 151 - 175 of 324) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 671 String attrName = attr.getNodeName();
686 attrName=attr.getLocalName();
693 attrName.equals("xmlns") || attrName.startsWith("xmlns:");
731 attrName = declAttrPrefix + ":" + localName;
733 attrName = localName;
760 attrName = attrPrefix + ":" + localName;
782 new Object[] { attrName });
838 fSerializer.addAttribute(attrNS, localName, attrName, type, attrValue);
850 attrName,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 578 * @param attrName The value of the name attribute of <attr>
583 private String[] parseEnumFlagValues(Node attrNode, String filter, String attrName) {
591 attrName, filter);
603 attrName, filter, name);
610 Map<String, Integer> map = mEnumFlagValues.get(attrName);
613 mEnumFlagValues.put(attrName, map);
620 attrName, filter, name, value);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 130 public void putAttributeInfo(String uri, String attrName, IAttributeInfo info) {
131 mAttributeInfos.put(uri + attrName, info);
135 public IAttributeInfo getAttributeInfo(@Nullable String uri, @NonNull String attrName) {
136 return mAttributeInfos.get(uri + attrName);
180 public String getStringAttr(@Nullable String uri, @NonNull String attrName) {
181 IAttribute attr = mAttributes.get(uri + attrName);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 290 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const QualifiedName& attrName)
292 CSSPropertyID propertyId = cssPropertyID(attrName.localName());
294 propertyNameToIdMap->set(attrName.localName().impl(), propertyId);
297 CSSPropertyID SVGElement::cssPropertyIdForSVGAttributeName(const QualifiedName& attrName)
299 if (!attrName.namespaceURI().isNull())
369 return propertyNameToIdMap->get(attrName.localName().impl());
702 bool SVGElement::isAnimatableCSSProperty(const QualifiedName& attrName)
704 return animatedPropertyTypeForCSSAttribute(attrName) != AnimatedUnknown;
    [all...]
SVGAnimationElement.cpp 134 bool SVGAnimationElement::isSupportedAttribute(const QualifiedName& attrName)
148 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
208 void SVGAnimationElement::svgAttributeChanged(const QualifiedName& attrName)
210 if (!isSupportedAttribute(attrName)) {
211 SVGSMILElement::svgAttributeChanged(attrName);
SVGLength.cpp 352 SVGLengthMode SVGLength::lengthModeForAnimatedLengthAttribute(const QualifiedName& attrName)
383 if (s_lengthModeMap.contains(attrName))
384 return s_lengthModeMap.get(attrName);
  /frameworks/rs/driver/
rsdShaderCache.h 61 int32_t vtxAttribSlot(const android::String8 &attrName) const;
rsdShaderCache.cpp 231 int32_t RsdShaderCache::vtxAttribSlot(const String8 &attrName) const {
233 if (attrName == mCurrent->vtxAttrs[ct].name) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 279 String attrName = parser.getAttributeName(i);
287 Attr attr = document.createAttributeNS(attrNamespace, attrName);
310 String attrName = parser.getAttributeName(i);
314 Attr attr = document.createAttribute(attrName);
  /frameworks/base/services/core/java/com/android/server/am/
ActivityRecord.java     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ST.stg 145 /** An action has %st.attrName=expr; or %{st}.attrName=expr; */
146 actionSetAttribute(st,attrName,expr) ::= <<
147 (<st>).SetAttribute("<attrName>",<expr>);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ST.stg 163 /** An action has %st.attrName=expr; or %{st}.attrName=expr; */
164 actionSetAttribute(st,attrName,expr) ::= <<
165 (<st>)["<attrName>"] = <expr>
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
TestAttributeSet.java 143 String attrName = resourceExtractor.getResourceName(resourceId);
144 String value = getAttributeValueInMap(null, attrName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 141 String attrName = matcher.group(1);
152 if (attrName.equals(name)) {
AndroidContentAssist.java 377 String attrName = attrInfo.name;
379 int pos = attrName.indexOf(':');
381 attrName = attrName.substring(pos + 1);
386 if (attrNode.getDescriptor().getXmlLocalName().equals(attrName)) {
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java 700 String attrName = attribute.getFirst();
706 attrName);
711 value = set.getAttributeValue(BridgeConstants.NS_APP_RES_AUTO, attrName);
723 attrName, frameworkAttr);
729 attrName, frameworkAttr);
735 resValue = mRenderResources.findItemInTheme(attrName, frameworkAttr);
743 defaultPropMap.put(attrName, resValue.getValue());
749 ta.bridgeSetValue(index, attrName, frameworkAttr, resValue);
753 ta.bridgeSetValue(index, attrName, frameworkAttr,
754 mRenderResources.resolveValue(null, attrName, value, isPlatformFile))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 144 void handleAttributeChanged(const QualifiedName& attrName, Element*);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 93 static const AtomicString& eventNameForAttributeName(const QualifiedName& attrName);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar 
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 222 int attrName = attributeSet.getAttributeNameResource(i);
223 if (attrName == R.attr.animation) {
229 attrName : -attrName;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestPackageResult.java 177 * @param attrName
181 private void serializeAttribute(KXmlSerializer serializer, String attrName, String attrValue)
184 serializer.attribute(ns, attrName, attrValue);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST4ObjC.stg 224 /** An action has %st.attrName=expr; or %{st}.attrName=expr; */
225 actionSetAttribute(st,attrName,expr) ::= <<
226 [(<st>) setAttribute:@"<attrName>" value:<expr>];
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs-ant.jar 
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 253 static PassOwnPtrWillBeRawPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const HTMLQualifiedName& tagName, const QualifiedName& attrName)
255 return adoptPtrWillBeNoop(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
257 static PassOwnPtrWillBeRawPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName)
259 return adoptPtrWillBeNoop(new HTMLAttributeEquivalent(propertyID, attrName));
272 HTMLAttributeEquivalent(CSSPropertyID, const HTMLQualifiedName& tagName, const QualifiedName& attrName);
273 HTMLAttributeEquivalent(CSSPropertyID, const QualifiedName& attrName);
277 HTMLAttributeEquivalent::HTMLAttributeEquivalent(CSSPropertyID id, const HTMLQualifiedName& tagName, const QualifiedName& attrName)
279 , m_attrName(attrName)
283 HTMLAttributeEquivalent::HTMLAttributeEquivalent(CSSPropertyID id, const QualifiedName& attrName)
285 , m_attrName(attrName)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 976 String attrName = n.getNodeName();
    [all...]

Completed in 788 milliseconds

1 2 3 4 5 67 8 91011>>