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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/protocol/
SyncBasicHttpContext.java 54 public synchronized Object getAttribute(final String id) {
55 return super.getAttribute(id);
DefaultedHttpContext.java 63 public Object getAttribute(final String id) {
64 Object obj = this.local.getAttribute(id);
66 return this.defaults.getAttribute(id);
HttpContext.java 57 Object getAttribute(String id);
BasicHttpContext.java 65 public Object getAttribute(final String id) {
74 obj = this.parentContext.getAttribute(id);
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchConfiguration.java 109 mLaunchAction = config.getAttribute(LaunchConfigDelegate.ATTR_LAUNCH_ACTION,
118 mReuseLastUsedDevice = config.getAttribute(
120 mLastUsedDevice = config.getAttribute(
127 mAvdName = config.getAttribute(LaunchConfigDelegate.ATTR_AVD_NAME, mAvdName);
134 index = config.getAttribute(LaunchConfigDelegate.ATTR_SPEED, index);
142 index = config.getAttribute(LaunchConfigDelegate.ATTR_DELAY, index);
149 mEmulatorCommandLine = config.getAttribute(
156 mWipeData = config.getAttribute(LaunchConfigDelegate.ATTR_WIPE_DATA, mWipeData);
162 mNoBootAnim = config.getAttribute(LaunchConfigDelegate.ATTR_NO_BOOT_ANIM,
175 String value = config.getAttribute(LaunchConfigDelegate.ATTR_TARGET_MODE
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
TypeCommandHandlerTest.groovy 36 assert session.getAttribute(SessionKeys.ASCII_TYPE) == true
42 assert session.getAttribute(SessionKeys.ASCII_TYPE) == false
47 assert session.getAttribute(SessionKeys.ASCII_TYPE) == null
CwdCommandHandlerTest.groovy 40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
55 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == null
62 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == null
70 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == null
CdupCommandHandlerTest.groovy 41 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
48 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == '/'
57 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == SUBDIR
RnfrCommandHandlerTest.groovy 41 assert session.getAttribute(SessionKeys.RENAME_FROM) == FILE
49 assert session.getAttribute(SessionKeys.RENAME_FROM) == FILE
55 assert session.getAttribute(SessionKeys.RENAME_FROM) == null
62 assert session.getAttribute(SessionKeys.RENAME_FROM) == DIR
UserCommandHandlerTest.groovy 62 assert session.getAttribute(SessionKeys.USER_ACCOUNT) == userAccount
120 assert session.getAttribute(SessionKeys.USERNAME) == expectedValue
128 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == currentDirectory
  /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/jetty/src/java/org/eclipse/jetty/util/
Attributes.java 33 public Object getAttribute(String name);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
HostedConnection.java 83 public <T> T getAttribute( String name );
  /external/deqp/executor/
xeTestResultParser.cpp 382 const char* TestResultParser::getAttribute (const char* name)
387 return m_xmlParser.getAttribute(name);
449 const char* version = getAttribute("Version");
453 m_result->casePath = getAttribute("CasePath");
457 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType"));
481 result->statusCode = getTestStatusCode(getAttribute("StatusCode"));
493 section->name = getAttribute("Name");
494 section->description = getAttribute("Description");
502 number->name = getAttribute("Name");
503 number->description = getAttribute("Description")
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelementcasesensitive.java 75 attribute1 = newElement1.getAttribute("district");
76 attribute2 = newElement2.getAttribute("county");
  /cts/tools/utils/
rerun.py 26 #print "parent " + parent.getAttribute("name") + " " + tagName +\
27 # " " + child.getAttribute("name")
37 for failure in parseSuite(child, parentName + child.getAttribute("name")):
41 className = parentName + child.getAttribute("name")
43 if test.getAttribute("result") != "pass":
44 failureName = className + "#" + test.getAttribute("name")
  /external/apache-http/src/org/apache/http/cookie/
ClientCookie.java 68 String getAttribute(String name);
  /frameworks/base/libs/androidfw/tests/
Theme_test.cpp 47 ASSERT_GE(theme1.getAttribute(android::R::attr::background, &val), 0);
50 ASSERT_GE(theme1.getAttribute(app::R::attr::number, &val), 0);
60 ASSERT_GE(theme2.getAttribute(android::R::attr::background, &val), 0);
63 ASSERT_GE(theme2.getAttribute(app::R::attr::number, &val), 0);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 81 s.getAttribute(null);
86 assertNull("getAttribute(aaa) failed", s.getAttribute("aaa"));
95 assertNull("getAttribute(bbb) failed", s.getAttribute("bbb"));
96 assertEquals("getAttribute(attribute) failed", "value", s
97 .getAttribute("attribute"));
98 assertEquals("getAttribute(KeySize) failed", "1024", s
99 .getAttribute("KeySize"));
  /cts/suite/cts/utils/
get_csv_report.py 28 #print "parent " + parent.getAttribute("name") + " " + tagName +\
29 # " " + child.getAttribute("name")
61 cases.update(parseSuite(child, parentName + child.getAttribute("name")))
64 className = parentName + child.getAttribute("name")
66 methodName = test.getAttribute("name")
71 result = str(test.getAttribute("result"))
78 summary[sts[0].getAttribute("message")] = getText(sts[0])
83 details[d.getAttribute("message")] = values
101 buildId = buildInfo.getAttribute("buildID")
102 deviceId = buildInfo.getAttribute("deviceID"
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
AttributeContainer.java 28 public Object getAttribute(int index) {
45 public Object getAttribute(String name) {
48 return getAttribute(i.intValue());
62 return getAttribute(i.intValue()).toString();
88 return getAttribute(i.intValue());
105 return getAttribute(i.intValue()).toString();
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestSummaryXml.java 108 mPlan = getAttribute(parser, CtsXmlResultReporter.PLAN_ATTR);
109 mStartTime = getAttribute(parser, CtsXmlResultReporter.STARTTIME_ATTR);
112 mDeviceSerials = getAttribute(parser, DeviceInfoConstants.SERIAL_NUMBER);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 58 AuthState targetAuthState = (AuthState) context.getAttribute(
63 AuthState proxyAuthState = (AuthState) context.getAttribute(
70 ManagedClientConnection conn = (ManagedClientConnection) context.getAttribute(
  /development/testrunner/coverage/
coverage_targets.py 108 target.SetName(target_element.getAttribute(self._NAME_ATTR))
109 target.SetType(target_element.getAttribute(self._TYPE_ATTR))
110 target.SetBuildPath(target_element.getAttribute(self._BUILD_ATTR))
120 rel_path = src_element.getAttribute(self._PATH_ATTR)

Completed in 3848 milliseconds

1 2 3 4 5 6 7 8 91011>>