HomeSort by relevance Sort by last modified time
    Searched defs:getAttribute (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/lib/DebugInfo/
DWARFAttribute.h 24 uint16_t getAttribute() const { return Attribute; }
  /external/apache-http/src/org/apache/http/protocol/
HttpContext.java 52 Object getAttribute(String id);
SyncBasicHttpContext.java 49 public synchronized Object getAttribute(final String id) {
50 return super.getAttribute(id);
BasicHttpContext.java 60 public Object getAttribute(final String id) {
69 obj = this.parentContext.getAttribute(id);
DefaultedHttpContext.java 58 public Object getAttribute(final String id) {
59 Object obj = this.local.getAttribute(id);
61 return this.defaults.getAttribute(id);
  /external/smack/src/com/kenai/jbosh/
AbstractBody.java 70 public final String getAttribute(final BodyQName attr) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
AbstractXmlPullParser.java 91 protected String getAttribute(XmlPullParser parser, String name) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RuleLabelScope.java 88 public Attribute getAttribute(String name) {
91 if ( rulePropertiesScope.getAttribute(name)!=null ) {
92 return rulePropertiesScope.getAttribute(name);
96 return referencedRule.returnScope.getAttribute(name);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXSlider.cpp 99 const AtomicString& AXSlider::getAttribute(const QualifiedName& attribute) const
101 return element()->getAttribute(attribute);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
HostedConnection.java 83 public <T> T getAttribute( String name );
  /frameworks/base/drm/java/android/drm/
DrmEvent.java 125 public Object getAttribute(String key) {
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 29 public static int getAttribute(Theme theme, int attrId) {
39 return getAttribute(theme, android.R.attr.selectableItemBackground);
46 return getAttribute(theme, android.R.attr.activatedBackgroundIndicator);
  /external/apache-http/src/org/apache/http/cookie/
ClientCookie.java 63 String getAttribute(String name);
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerFactory.java 307 public abstract Object getAttribute(String name);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderFactoryImpl.java 38 public Object getAttribute(String name) throws IllegalArgumentException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetAttributeFix.java 51 protected String getAttribute() {
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 94 WebString WebElement::getAttribute(const WebString& attrName) const
96 return constUnwrap<Element>()->getAttribute(attrName);
  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 38 IItemAttribute getAttribute (int attributeID, int unitsID);
Item.java 61 public final IItemAttribute getAttribute (final int attributeID, final int unitsID)
68 return IItemAttribute.Factory.getAttribute (attributeID, unitsID);
  /external/proguard/src/proguard/classfile/
ProgramMember.java 79 (CodeAttribute)getAttribute(clazz, ClassConstants.ATTR_Code);
86 (LineNumberTableAttribute)codeAttribute.getAttribute(clazz,
103 private Attribute getAttribute(Clazz clazz, String name)
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 172 public Object getAttribute(Attribute attribute);
  /libcore/luni/src/main/java/libcore/icu/
NativeCollation.java 25 public static native int getAttribute(long address, int type);
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 53 public String getAttribute(String name);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 106 public IDragAttribute getAttribute(@Nullable String uri, @NonNull String localName) {
  /cts/tests/tests/drm/src/android/drm/cts/
DrmEventTest.java 169 assertNull(event.getAttribute(key));
171 assertEquals(event.getAttribute(key), attributes.get(key));

Completed in 346 milliseconds

1 2 3 4 5 6 7 8