Searched defs:attributes (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/sax/java/android/sax/
H A DStartElementListener.java29 * @param attributes from the element
31 void start(Attributes attributes); argument
H A DRootElement.java111 Attributes attributes) throws SAXException {
116 startRoot(uri, localName, attributes);
134 start(child, attributes);
140 void startRoot(String uri, String localName, Attributes attributes) argument
150 start(root, attributes);
153 void start(Element e, Attributes attributes) { argument
158 e.startElementListener.start(attributes);
110 startElement(String uri, String localName, String qName, Attributes attributes) argument
/frameworks/base/awt/java/awt/im/
H A DInputMethodRequests.java35 public AttributedCharacterIterator cancelLatestCommittedText(AttributedCharacterIterator.Attribute[] attributes); argument
37 public AttributedCharacterIterator getCommittedText(int beginIndex, int endIndex, AttributedCharacterIterator.Attribute[] attributes); argument
45 public AttributedCharacterIterator getSelectedText(AttributedCharacterIterator.Attribute[] attributes); argument
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DTextDecorator.java49 * This class encapsulates a set of decoration attributes for a single text run.
156 * Creates Decoration object from the set of text attributes
157 * @param attributes - text attributes
160 static Decoration getDecoration(Map<? extends Attribute, ?> attributes) { argument
161 if (attributes == null) {
165 Object underline = attributes.get(TextAttribute.UNDERLINE);
168 Object imUnderline = attributes.get(TextAttribute.INPUT_METHOD_UNDERLINE);
173 attributes.get(TextAttribute.SWAP_COLORS)
178 attributes
[all...]
/frameworks/base/awt/org/apache/harmony/awt/im/
H A DInputMethodContext.java506 Attribute[] attributes) {
507 return getIMRequests().cancelLatestCommittedText(attributes);
512 Attribute[] attributes) {
514 attributes);
533 public AttributedCharacterIterator getSelectedText(Attribute[] attributes) { argument
534 return getIMRequests().getSelectedText(attributes);
505 cancelLatestCommittedText( Attribute[] attributes) argument
510 getCommittedText(int beginIndex, int endIndex, Attribute[] attributes) argument
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/
H A DSafeSaxTest.java56 public void start(Attributes attributes) { argument
69 public void start(Attributes attributes) { argument
243 public void start(Attributes attributes) {
244 String url = attributes.getValue("", "url");
253 public void start(Attributes attributes) {
254 String url = attributes.getValue("", "url");
263 public void start(Attributes attributes) {
264 String url = attributes.getValue("", "url");
301 public void start(Attributes attributes) {
302 String seconds = attributes
337 start(Attributes attributes) argument
360 startElement(String uri, String localName, String qName, Attributes attributes) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DFontLoader.java255 public void startElement(String uri, String localName, String name, Attributes attributes) argument
262 String ttf = attributes.getValue(ATTR_TTF);
273 String ttf = attributes.getValue(ATTR_TTF);
282 super.startElement(uri, localName, name, attributes);
/frameworks/base/awt/java/awt/font/
H A DTextLayout.java162 * attributes.
166 * @param attributes
167 * the attributes to be used for obtaining the text style.
173 Map<? extends java.text.AttributedCharacterIterator.Attribute, ?> attributes,
180 if (attributes == null) {
182 throw new IllegalArgumentException(Messages.getString("awt.01", "attributes")); //$NON-NLS-1$ //$NON-NLS-2$
191 as.addAttributes(attributes, 0, string.length());
172 TextLayout(String string, Map<? extends java.text.AttributedCharacterIterator.Attribute, ?> attributes, FontRenderContext frc) argument
/frameworks/base/awt/javax/imageio/metadata/
H A DIIOMetadataFormatImpl.java165 element.attributes.put(attrName, attr);
201 element.attributes.put(attrName, attr);
253 element.attributes.put(attrName, attr);
305 element.attributes.put(attrName, attr);
599 return element.attributes.keySet().toArray(new String[element.attributes.size()]);
745 element.attributes.remove(attrName);
777 * elements and attributes for this format.
808 * The attributes.
810 HashMap<String, Attlist> attributes field in class:IIOMetadataFormatImpl.Element
[all...]
/frameworks/base/awt/java/awt/
H A DFont.java65 * example, Arial). In all the Font is identified by three attributes: the
177 // Set of font attributes
179 * The requested attributes.
234 * Instantiates a new Font with the specified attributes. The Font will be
235 * created with default attributes if the attribute's parameter is null.
237 * @param attributes
238 * the attributes to be assigned to the new Font, or null.
240 public Font(Map<? extends Attribute, ?> attributes) { argument
251 if (attributes != null) {
253 fRequestedAttributes = new Hashtable<Attribute, Object>(attributes);
738 deriveFont(Map<? extends Attribute, ?> attributes) argument
853 getFont(Map<? extends Attribute, ?> attributes) argument
[all...]
/frameworks/base/core/java/android/text/
H A DHtml.java443 private void handleStartTag(String tag, Attributes attributes) { argument
468 startFont(mSpannableStringBuilder, attributes);
475 startA(mSpannableStringBuilder, attributes);
488 startImg(mSpannableStringBuilder, attributes, mImageGetter);
599 Attributes attributes, Html.ImageGetter img) {
600 String src = attributes.getValue("", "src");
621 Attributes attributes) {
622 String color = attributes.getValue("", "color");
623 String face = attributes.getValue("", "face");
667 private static void startA(SpannableStringBuilder text, Attributes attributes) { argument
598 startImg(SpannableStringBuilder text, Attributes attributes, Html.ImageGetter img) argument
620 startFont(SpannableStringBuilder text, Attributes attributes) argument
729 startElement(String uri, String localName, String qName, Attributes attributes) argument
[all...]
/frameworks/base/tools/localize/
H A DXMLHandler.cpp174 vector<vector<XMLAttribute>*> attributes; member in struct:xml_handler_data
493 vector<XMLAttribute> attributes; local
496 convert_attrs(attrs, &attributes);
498 handler->OnStartElement(pos, nsString, nameString, attributes, &next);
508 next->elementAttributes = attributes;
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1391 public void start(Attributes attributes) { argument
1392 String path = attributes.getValue("", "src");

Completed in 598 milliseconds