HomeSort by relevance Sort by last modified time
    Searched refs:Attributes (Results 76 - 100 of 278) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
ElementParser.java 20 import org.xml.sax.Attributes;
92 String qName, Attributes atts) {
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 18 import org.xml.sax.Attributes;
77 /** Attributes we test existence for (for example, contentDescription). */
111 * attributes.
115 Attributes atts) {
211 // Add all of the expected attributes.
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 86 Attributes temp = new Attributes(3);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 19 import org.xml.sax.Attributes;
24 abstract class ExpatAttributes implements Attributes {
32 * Gets the number of attributes.
  /libcore/luni/src/test/java/libcore/xml/
NamespacedAttributesLookupTest.java 20 import org.xml.sax.Attributes;
32 * Tests that we both report and retrieve attributes using the appropriate
107 String uri, String localName, String qName, Attributes attributes) {
119 for (int i = 0; i < attributes.getLength(); i++) {
122 serialized.append(attributes.getURI(i)).append(",");
123 serialized.append(attributes.getLocalName(i));
125 serialized.append(attributes.getQName(i));
129 .append(attributes.getValue("http://bar", "c")).append(",")
131 .append(attributes.getValue("bar:c")
    [all...]
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.h 31 const WebKit::WebGraphicsContext3D::Attributes& attributes) {
32 return make_scoped_ptr(new TestWebGraphicsContext3D(attributes));
58 virtual Attributes getContextAttributes();
255 const WebKit::WebGraphicsContext3D::Attributes& attributes);
262 Attributes attributes_;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.cpp 78 return (options & (Attributes | CharacterData | ChildList))
79 && ((options & Attributes) || !(options & AttributeOldValue))
80 && ((options & Attributes) || !(options & AttributeFilter))
96 { "attributes", Attributes },
MutationObserverInterestGroup.cpp 43 ASSERT((type == MutationObserver::Attributes && attributeName) || !attributeName);
  /external/lzma/CPP/Windows/
MemoryLock.cpp 54 tp.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED: 0;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
AttributesImpl.java 17 import org.xml.sax.Attributes;
21 * Default implementation of the Attributes interface.
31 * {@link org.xml.sax.Attributes Attributes} interface, with the
38 * <li>to take a persistent snapshot of an Attributes object
40 * <li>to construct or modify an Attributes object in a SAX2 driver or filter.</li>
45 * class; in addition to supporting the updated Attributes
54 public class AttributesImpl implements Attributes
75 * Copy an existing Attributes object.
80 * @param atts The existing Attributes object
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 1 // AttributesImpl.java - default implementation of Attributes.
9 import org.xml.sax.Attributes;
13 * Default implementation of the Attributes interface.
23 * {@link org.xml.sax.Attributes Attributes} interface, with the
30 * <li>to take a persistent snapshot of an Attributes object
32 * <li>to construct or modify an Attributes object in a SAX2 driver or filter.</li>
37 * class; in addition to supporting the updated Attributes
46 public class AttributesImpl implements Attributes
67 * Copy an existing Attributes object
    [all...]
  /external/chromium_org/sandbox/win/src/
restricted_token.cc 61 deny_only_array[i].Attributes = SE_GROUP_USE_FOR_DENY_ONLY;
72 sids_to_restrict_array[i].Attributes = 0;
83 privileges_to_disable_array[i].Attributes = 0;
219 if ((token_groups->Groups[i].Attributes & SE_GROUP_INTEGRITY) == 0 &&
220 (token_groups->Groups[i].Attributes & SE_GROUP_LOGON_ID) == 0) {
352 sids_to_restrict_.push_back(sid); // No attributes
385 if ((token_groups->Groups[i].Attributes & SE_GROUP_LOGON_ID) != 0) {
458 if ((token_groups->Groups[i].Attributes & SE_GROUP_INTEGRITY) == 0)
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SceneLoader.java 55 import org.xml.sax.Attributes;
109 private Quaternion parseQuat(Attributes attribs) throws SAXException{
144 private void parseLightNormal(Attributes attribs) throws SAXException {
155 private void parseLightAttenuation(Attributes attribs) throws SAXException {
183 private void parseLightSpotLightRange(Attributes attribs) throws SAXException{
199 private void parseLight(Attributes attribs) throws SAXException {
229 public void startElement(String uri, String localName, String qName, Attributes attribs) throws SAXException{
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 33 import java.util.jar.Attributes;
60 java.util.jar.Attributes a = juc.getAttributes();
61 assertEquals("Returned incorrect Attributes", "SHA MD5", a
62 .get(new java.util.jar.Attributes.Name("Digest-Algorithms")));
104 Map<String, Attributes> attr = manifest.getEntries();
271 java.util.jar.Attributes a = juc.getMainAttributes();
272 assertEquals("Returned incorrect Attributes", "1.0", a
273 .get(java.util.jar.Attributes.Name.MANIFEST_VERSION));
  /build/tools/signapk/
SignApk.java 69 import java.util.jar.Attributes;
232 Attributes main = output.getMainAttributes();
273 Attributes attr = null;
275 attr = attr != null ? new Attributes(attr) : new Attributes();
318 Attributes attr = new Attributes();
358 Attributes main = sf.getMainAttributes();
374 Map<String, Attributes> entries = manifest.getEntries();
375 for (Map.Entry<String, Attributes> entry : entries.entrySet())
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPlan.java 24 import org.xml.sax.Attributes;
60 public void startElement(String uri, String localName, String name, Attributes attributes)
63 final String entryUriValue = attributes.getValue(URI_ATTR);
64 TestFilter filter = parseExcludedTests(attributes.getValue(EXCLUDE_ATTR));
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 46 import org.xml.sax.Attributes;
62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
72 super.startElement(handler, uri, localName, rawName, attributes);
74 String val = attributes.getValue("name");
ProcessorOutputElem.java 31 import org.xml.sax.Attributes;
43 * being set from the attributes, and then nulled after that operation
179 * @param attributes The attributes attached to the element. If
180 * there are no attributes, it shall be an empty
181 * Attributes object.
186 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
195 setPropertiesFromAttributes(handler, rawName, attributes, this);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 25 import org.xml.sax.Attributes;
74 * with matching attributes, if so this field is true.
78 * to the attributes passed to the wrapped ContentHandler.
190 * @see org.xml.sax.ContentHandler#startElement(String,String,String,Attributes)
196 Attributes arg3)
243 * xmlns:foo) should appear as attributes of
246 * should appear as attributes
256 * also be mirrored with self generated additional attributes of elements
304 * Receives notification that an element starts, but attributes are not
326 * An element starts, but attributes are not fully known yet
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
SignerInfo.java 73 Attributes authenticatedAttributes,
76 Attributes unauthenticatedAttributes)
175 * authenticatedAttributes [0] IMPLICIT Attributes OPTIONAL,
178 * unauthenticatedAttributes [1] IMPLICIT Attributes OPTIONAL
  /external/chromium_org/ui/compositor/
test_web_graphics_context_3d.cc 88 TestWebGraphicsContext3D::Attributes
90 return Attributes();
  /external/llvm/lib/IR/
Android.mk 5 Attributes.cpp \
  /external/smack/src/com/kenai/jbosh/
BodyParserSAX.java 28 import org.xml.sax.Attributes;
91 final Attributes attributes) {
109 // Read in the attributes, making sure to expand the namespaces
111 for (int idx=0; idx < attributes.getLength(); idx++) {
112 String attrURI = attributes.getURI(idx);
116 String attrLN = attributes.getLocalName(idx);
117 String attrVal = attributes.getValue(idx);
  /libcore/benchmarks/src/benchmarks/
XmlParseBenchmark.java 35 import org.xml.sax.Attributes;
99 String qName, Attributes attributes) {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockHandler.java 20 import org.xml.sax.Attributes;
101 public void startElement(String uri, String localName, String name, Attributes atts)

Completed in 691 milliseconds

1 2 34 5 6 7 8 91011>>