Searched defs:attrs (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/www/
H A DMimeTable.java281 String attrs = entries.getProperty(type);
282 parse(type, attrs);
313 void parse(String type, String attrs) { argument
317 StringTokenizer tokenizer = new StringTokenizer(attrs, ";");
/libcore/ojluni/src/main/java/java/text/
H A DAttributedString.java106 Map attrs = iterator.getAttributes();
108 if (mapsDiffer(last, attrs)) {
109 setAttributes(attrs, index - start + offset);
111 last = attrs;
690 * (typically the end of the text) to the ones specified in attrs.
693 private void setAttributes(Map attrs, int offset) { argument
701 if (attrs != null && (size = attrs.size()) > 0) {
704 Iterator iterator = attrs.entrySet().iterator();
718 * Returns true if the attributes specified in last and attrs diffe
720 mapsDiffer(Map last, Map attrs) argument
[all...]

Completed in 110 milliseconds