HomeSort by relevance Sort by last modified time
    Searched defs:attributeName (Results 1 - 25 of 540) 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);
  /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);
  /external/robolectric/v1/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);
  /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);
  /external/vogar/src/vogar/
XmlReportReader.java 129 String attributeName = parser.getAttributeName(i);
131 attributeMap.put(attributeName, attributeValue);
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
iio.hpp 126 * @param attributeName attribute mame
133 readInt(const std::string& attributeName) const
136 mraa_result_t res = mraa_iio_read_int(m_iio, attributeName.c_str(), &value);
139 oss << "IIO readInt for attibute " << attributeName << " failed";
148 * @param attributeName attribute mame
155 readFloat(const std::string& attributeName) const
158 mraa_result_t res = mraa_iio_read_float(m_iio, attributeName.c_str(), &value);
161 oss << "IIO readFloat for attibute " << attributeName << " failed";
170 * @param attributeName attribute mame
176 writeInt(const std::string& attributeName, int value) cons
    [all...]
  /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)) {
  /external/owasp/sanitizer/src/main/org/owasp/html/
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...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
Resources_Delegate.java 122 String attributeName = resourceInfo.getSecond();
124 return Pair.of(attributeName, platformResFlag_out[0] ?
125 renderResources.getFrameworkResource(resourceInfo.getFirst(), attributeName) :
126 renderResources.getProjectResource(resourceInfo.getFirst(), attributeName));
    [all...]
  /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)) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
TestCLDRVsICU.java 198 void set(String attributeName, String attributeValue) {
199 // if (DEBUG) logln(attributeName + " => " + attributeValue);
200 settings.put(attributeName, attributeValue);
231 String attributeName = (String) it.next();
232 String attributeValue = (String) settings.get(attributeName);
233 temp += " " + attributeName + "=<" + attributeValue + ">";
368 String attributeName = (String) it.next();
369 String attributeValue = (String) settings.get(attributeName);
374 if (attributeName.equals("draft")) {
382 if (attributeName.equals("input"))
    [all...]
  /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...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.3/
maven-antrun-plugin-1.3.jar 
  /prebuilts/tools/common/m2/repository/commons-digester/commons-digester/1.6/
commons-digester-1.6.jar 
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 169 String attributeName = parser.getAttributeName(counter);
171 ((SoapObject) obj).addAttribute(attributeName, value);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
XmlReader.java 91 String attributeName = null;
254 attributeName = new String(data, s, p - s);
260 attribute(attributeName, new String(data, s, p - s));
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 330 IGLProperty attributeName = new GLStringProperty(GLStateType.ATTRIBUTE_NAME, "");
338 attributeName, attributeType, attributeSize, attributeValue);
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /libcore/ojluni/src/main/java/java/security/
Provider.java 668 String attributeName = attributeString.substring(i + 1);
670 while (attributeName.startsWith(" ")) {
671 attributeName = attributeName.substring(1);
673 attributeName = attributeName.intern();
682 s.addAttribute(attributeName, attributeValue);
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 816 String attributeName = readName();
873 defineAttributeDefault(elementName, attributeName, value);
878 private void defineAttributeDefault(String elementName, String attributeName, String value) {
887 elementAttributes.put(attributeName, value);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 371 String attributeName = attribute.getLocalName();
372 return ATTR_CLASS.equals(attributeName) && (VIEW.equals(tag) || VIEW_FRAGMENT.equals(tag))
373 || ATTR_NAME.equals(attributeName) && VIEW_FRAGMENT.equals(tag)
374 || (ATTR_CONTEXT.equals(attributeName)
    [all...]

Completed in 1009 milliseconds

1 2 3 4 5 6 7 8 91011>>