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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/editor/
NamedAttributeDeleter.java 42 private final String attributeName;
45 public NamedAttributeDeleter(String attributeName)
47 this.attributeName = attributeName;
58 new AttributesEditor(programClass, false).deleteAttribute(attributeName);
69 new AttributesEditor(programClass, programMember, false).deleteAttribute(attributeName);
80 new AttributesEditor((ProgramClass)clazz, (ProgramMember)method, codeAttribute, false).deleteAttribute(attributeName);
AttributesEditor.java 84 public Attribute findAttribute(String attributeName)
91 attributeName) :
95 attributeName) :
98 attributeName);
165 public void deleteAttribute(String attributeName)
173 attributeName);
180 attributeName);
187 attributeName);
249 String attributeName)
254 attributeName);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAnnotations.java 36 * @param attributeName {@code non-null;} the name of the attribute
41 public BaseAnnotations(String attributeName, Annotations annotations,
43 super(attributeName);
BaseParameterAnnotations.java 36 * @param attributeName {@code non-null;} the name of the attribute
41 public BaseParameterAnnotations(String attributeName,
43 super(attributeName);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ResourceReferenceResolver.java 54 private void resolveUnresolvedReferences(String attributeName, T value) {
55 List<String> references = unresolvedReferences.remove(attributeName);
64 private void addUnresolvedReference(String valuePointer, String attributeName) {
65 List<String> references = unresolvedReferences.get(attributeName);
68 unresolvedReferences.put(attributeName, references);
74 String attributeName = rawValue.substring(1);
75 T value = attributeNamesToValues.get(attributeName);
77 addUnresolvedReference(valuePointer, attributeName);
  /external/owasp/sanitizer/src/main/org/owasp/html/
AttributePolicy.java 50 * @param attributeName the lower-case attribute name.
58 String elementName, String attributeName, String value);
95 String elementName, String attributeName, String value) {
103 String elementName, String attributeName, String value) {
119 String elementName, String attributeName, @Nullable String value) {
122 value = p.apply(elementName, attributeName, value);
HtmlPolicyBuilder.java 303 for (String attributeName : attributeNames) {
304 b.add(HtmlLexer.canonicalName(attributeName));
327 for (String attributeName : attributeNames) {
333 AttributePolicy oldPolicy = globalAttrPolicies.get(attributeName);
335 attributeName, AttributePolicy.Util.join(oldPolicy, policy));
350 for (String attributeName : attributeNames) {
351 AttributePolicy oldPolicy = policies.get(attributeName);
353 attributeName,
600 String attributeName = ape.getKey();
603 if (globalAttrPolicies.containsKey(attributeName)) { continue;
    [all...]
StandardUrlAttributePolicy.java 43 public String apply(String elementName, String attributeName, String s) {
Sanitizers.java 84 String elementName, String attributeName, String value) {
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementretrieveallattributes.java 66 String attributeName;
82 attributeName = attribute.getNodeName();
83 actual.add(attributeName);
hc_nodecloneattributescopied.java 68 String attributeName;
87 attributeName = attributeNode.getNodeName();
88 result.add(attributeName);
nodecloneattributescopied.java 71 String attributeName;
85 attributeName = attributeNode.getNodeName();
86 result.add(attributeName);
  /frameworks/base/tools/aapt2/
ManifestValidator.cpp 104 StringPiece16 attributeName(parser->getAttributeName(idx, &len), len);
111 << attributeName
116 return validateAttributeImpl(element, attributeName, result.value(), charSet,
124 StringPiece16 attributeName(parser->getAttributeName(idx, &len), len);
131 << attributeName
136 return validateAttributeImpl(element, attributeName, result.value(), charSet,
141 const StringPiece16& attributeName,
152 << attributeName
167 << attributeName
178 << attributeName
    [all...]
ManifestValidator.h 46 bool validateAttributeImpl(const StringPiece16& element, const StringPiece16& attributeName,
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapConvoContactElement.java 254 String attributeName = parser.getAttributeName(i).trim();
256 if(attributeName.equalsIgnoreCase(XML_ATT_UCI)) {
258 } else if(attributeName.equalsIgnoreCase(XML_ATT_NAME)) {
260 } else if(attributeName.equalsIgnoreCase(XML_ATT_DISPLAY_NAME)) {
262 } else if(attributeName.equalsIgnoreCase(XML_ATT_CHAT_STATE)) {
264 } else if(attributeName.equalsIgnoreCase(XML_ATT_LAST_ACTIVITY)) {
266 } else if(attributeName.equalsIgnoreCase(XML_ATT_X_BT_UID)) {
268 } else if(attributeName.equalsIgnoreCase(XML_ATT_PRESENCE_AVAILABILITY)) {
270 } else if(attributeName.equalsIgnoreCase(XML_ATT_PRESENCE_STATUS)) {
272 } else if(attributeName.equalsIgnoreCase(XML_ATT_PRIORITY))
    [all...]
BluetoothMapConvoListingElement.java 294 String attributeName = parser.getAttributeName(i).trim();
296 if(attributeName.equalsIgnoreCase(XML_ATT_ID)) {
298 } else if(attributeName.equalsIgnoreCase(XML_ATT_NAME)) {
300 } else if(attributeName.equalsIgnoreCase(XML_ATT_LAST_ACTIVITY)) {
302 } else if(attributeName.equalsIgnoreCase(XML_ATT_READ)) {
304 } else if(attributeName.equalsIgnoreCase(XML_ATT_VERSION_COUNTER)) {
306 } else if(attributeName.equalsIgnoreCase(XML_ATT_SUMMARY)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 52 String parentTagName, String attributeName, Node node, String wordPrefix,
54 if (attributeName.endsWith(ATTRIBUTE_MIN_SDK_VERSION)
55 || attributeName.endsWith(ATTRIBUTE_TARGET_SDK_VERSION)) {
90 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName,
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
TestCLDRVsICU.java 194 void set(String attributeName, String attributeValue) {
195 // if (DEBUG) logln(attributeName + " => " + attributeValue);
196 settings.put(attributeName, attributeValue);
227 String attributeName = (String) it.next();
228 String attributeValue = (String) settings.get(attributeName);
229 temp += " " + attributeName + "=<" + attributeValue + ">";
364 String attributeName = (String) it.next();
365 String attributeValue = (String) settings.get(attributeName);
370 if (attributeName.equals("draft")) {
378 if (attributeName.equals("input"))
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlChangeReporterTest.java 59 for (String attributeName : attributeNames) {
60 log.append(' ').append(attributeName);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 144 public void setAttributeValues(String attributeName, float[] data, int componentCount) {
145 if (!setShaderAttributeValues(attributeName, data, componentCount)) {
147 attributeName + "'!");
151 public void setAttributeValues(String attributeName,
158 if (!setShaderAttributeVertexFrame(attributeName,
166 attributeName + "'!");
289 private native boolean setShaderAttributeValues(String attributeName,
293 private native boolean setShaderAttributeVertexFrame(String attributeName,
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ControlPane.java 156 String attributeName, int defaultValue) throws XmlPullParserException {
157 String value = configParser.getAttributeValue(null, attributeName);
176 String attributeName, String defaultValue) throws XmlPullParserException {
177 String value = configParser.getAttributeValue(null, attributeName);
  /frameworks/base/services/core/java/com/android/server/firewall/
StringFilter.java 79 String attributeName = parser.getAttributeName(attributeIndex);
81 switch (attributeName.charAt(0)) {
83 if (!attributeName.equals(ATTR_EQUALS)) {
88 if (!attributeName.equals(ATTR_IS_NULL)) {
93 if (!attributeName.equals(ATTR_STARTS_WITH)) {
99 if (!attributeName.equals(ATTR_CONTAINS)) {
104 if (!attributeName.equals(ATTR_PATTERN)) {
110 if (!attributeName.equals(ATTR_REGEX)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetScrollViewSizeFix.java 57 String attributeName = isHorizontal ? ATTR_LAYOUT_WIDTH : ATTR_LAYOUT_HEIGHT;
58 element.setAttributeNS(ANDROID_URI, attributeName, VALUE_WRAP_CONTENT);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 74 String parentTagName, String attributeName, Node node, String wordPrefix,
79 if (attributeName.endsWith(INTERPOLATOR_PROPERTY_NAME)) {
98 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName,
101 && attributeName.endsWith(PROPERTY_NAME)) {
164 return super.computeAttributeValues(proposals, offset, parentTagName, attributeName,
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java     [all...]

Completed in 795 milliseconds

1 2 3 4 5 6 7 8 91011>>