HomeSort by relevance Sort by last modified time
    Searched defs:setAttribute (Results 51 - 75 of 215) sorted by null

1 23 4 5 6 7 8 9

  /external/tagsoup/src/org/ccil/cowan/tagsoup/
AttributesImpl.java 424 public void setAttribute (int index, String uri, String localName,
Schema.java 84 e.setAttribute(attrName, type, value);
  /frameworks/base/tests/CoreTests/android/core/
TestHttpClient.java 99 this.context.setAttribute(ExecutionContext.HTTP_REQUEST, request);
100 this.context.setAttribute(ExecutionContext.HTTP_TARGET_HOST, targetHost);
101 this.context.setAttribute(ExecutionContext.HTTP_CONNECTION, conn);
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 304 setAttribute(cookie, attributeName, attributeValue);
315 private void setAttribute(HttpCookie cookie, String name, String value) {
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 284 public abstract void setAttribute(String name, Object value)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 416 public void setAttribute (int index, String uri, String localName,
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 88 mExif.setAttribute(tag, value);
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 105 public void setAttribute(String name, String value) throws DOMException {
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementParallelTimeContainerImpl.java 69 mSmilElement.setAttribute(ENDSYNC_ATTRIBUTE_NAME, endSync);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
AbsoluteLayoutRule.java 204 newChild.setAttribute(ANDROID_URI, ATTR_LAYOUT_X,
206 newChild.setAttribute(ANDROID_URI, ATTR_LAYOUT_Y,
230 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_X,
235 node.setAttribute(ANDROID_URI, ATTR_LAYOUT_Y,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 193 setAttribute(rootEdit, newRoot, attribute.getNamespaceURI(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetPropertyFix.java 85 element.setAttribute(attribute, proposal);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FixLaunchConfig.java 106 copy.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, activity);
XmlErrorHandler.java 167 marker.setAttribute(AdtConstants.MARKER_ATTR_TYPE,
169 marker.setAttribute(AdtConstants.MARKER_ATTR_CLASS, className);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkHelper.java 162 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP, true);
163 config.setAttribute(NdkLaunchConstants.ATTR_NDK_GDB, NdkLaunchConstants.DEFAULT_GDB);
164 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT,
166 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_PORT,
168 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_HOST, "localhost"); //$NON-NLS-1$
169 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, false);
170 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
172 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME,
175 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
177 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_ID
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 76 wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_PROJECT_NAME,
83 wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_CONNECT_MAP, connectMap);
86 wc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_VM_CONNECTOR,
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.cpp 205 int EntryPoint::setAttribute(const std::string &line, size_t lc)
  /frameworks/opt/net/voip/src/java/android/net/sip/
SimpleSessionDescription.java 38 * media.setAttribute("sendrecv", "");
226 public void setAttribute(String name, String value) {
227 mFields.setAttribute(name, value);
509 public void setAttribute(String name, String value) {
  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpClient.java 218 context.setAttribute(
221 context.setAttribute(
224 context.setAttribute(
227 context.setAttribute(
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 303 public void setAttribute(final String name, final String value) {
RFC2965Spec.java 140 cookie.setAttribute(s, attrib.getValue());
  /external/apache-http/src/org/apache/http/protocol/
HttpService.java 129 context.setAttribute(ExecutionContext.HTTP_CONNECTION, conn);
183 context.setAttribute(ExecutionContext.HTTP_REQUEST, request);
184 context.setAttribute(ExecutionContext.HTTP_RESPONSE, response);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
TransformerFactoryImpl.java 510 public void setAttribute(String name, Object value)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMEditor.cpp 148 m_element->setAttribute(m_name, m_value, exceptionState);
168 : InspectorHistory::Action("SetAttribute")
187 m_element->setAttribute(m_name, m_oldValue, exceptionState);
195 m_element->setAttribute(m_name, m_value, exceptionState);
371 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ExceptionState& exceptionState)
428 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ErrorString* errorString)
431 bool result = setAttribute(element, name, value, exceptionState);

Completed in 547 milliseconds

1 23 4 5 6 7 8 9