Searched refs:attributes (Results 1 - 20 of 20) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DDownloadRecord.java26 // Only word lists have attributes, and the ContentValues should contain the same
28 // attributes, a null pointer here means this record represents metadata.
30 public DownloadRecord(final String clientId, final ContentValues attributes) { argument
32 mAttributes = attributes;
/packages/apps/Mms/src/com/android/mms/dom/smil/parser/
H A DSmilContentHandler.java57 public void startElement(String uri, String localName, String qName, Attributes attributes) { argument
62 if (attributes != null) {
63 for (int i = 0; i < attributes.getLength(); i++) {
66 " lname = " + attributes.getLocalName(i) +
67 " value = " + attributes.getValue(i));
69 element.setAttribute(attributes.getLocalName(i),
70 attributes.getValue(i));
H A DSmilXmlSerializer.java53 NamedNodeMap attributes = element.getAttributes();
54 for (int i = 0; i < attributes.getLength(); i++) {
55 Attr attribute = (Attr)attributes.item(i);
/packages/experimental/PrintService/src/foo/bar/printservice/
H A DCustomPrintOptionsActivity.java33 PrintAttributes attributes = new PrintAttributes.Builder()
40 builder.setAttributes(attributes);
42 builder.setAttributes(attributes);
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlDocument.java99 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) { argument
100 return createTag(element, attributes, null, null);
108 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
110 return new Tag(element, attributes, false, originalHtmlBeforeAttributes,
119 List<TagAttribute> attributes) {
120 return createSelfTerminatingTag(element, attributes, null, null);
128 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
130 return new Tag(element, attributes, true, originalHtmlBeforeAttributes,
507 private List<TagAttribute> attributes; field in class:HtmlDocument.Tag
517 * @param attributes lis
107 createTag(HTML.Element element, List<TagAttribute> attributes, String originalHtmlBeforeAttributes, String originalHtmlAfterAttributes) argument
118 createSelfTerminatingTag(HTML.Element element, List<TagAttribute> attributes) argument
127 createSelfTerminatingTag(HTML.Element element, List<TagAttribute> attributes, String originalHtmlBeforeAttributes, String originalHtmlAfterAttributes) argument
534 Tag(HTML.Element element, List<TagAttribute> attributes, boolean isSelfTerminating, String originalHtmlBeforeAttributes, String originalHtmlAfterAttributes) argument
[all...]
H A DHTML4.java30 * See http://www.w3.org/TR/html401/index/attributes.html
39 /** Map of all attributes */
40 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap(); field in class:HTML4
71 return attributes.get(name.toLowerCase());
83 * @return Unmodifiable Map of all valid HTML4 attributes. Key is lowercase
87 return Collections.unmodifiableMap(attributes);
148 attributes.put(attribute, attr);
260 * All the HTML4 attributes
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java100 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) { argument
101 return createTag(element, attributes, null, null);
109 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
111 return new Tag(element, attributes, false, originalHtmlBeforeAttributes,
120 List<TagAttribute> attributes) {
121 return createSelfTerminatingTag(element, attributes, null, null);
129 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
131 return new Tag(element, attributes, true, originalHtmlBeforeAttributes,
508 private List<TagAttribute> attributes; field in class:HtmlDocument.Tag
518 * @param attributes lis
108 createTag(HTML.Element element, List<TagAttribute> attributes, String originalHtmlBeforeAttributes, String originalHtmlAfterAttributes) argument
119 createSelfTerminatingTag(HTML.Element element, List<TagAttribute> attributes) argument
128 createSelfTerminatingTag(HTML.Element element, List<TagAttribute> attributes, String originalHtmlBeforeAttributes, String originalHtmlAfterAttributes) argument
535 Tag(HTML.Element element, List<TagAttribute> attributes, boolean isSelfTerminating, String originalHtmlBeforeAttributes, String originalHtmlAfterAttributes) argument
[all...]
H A DHTML4.java31 * See http://www.w3.org/TR/html401/index/attributes.html
40 /** Map of all attributes */
41 private static final HashMap<String,HTML.Attribute> attributes = Maps.newHashMap(); field in class:HTML4
72 return attributes.get(name.toLowerCase());
84 * @return Unmodifiable Map of all valid HTML4 attributes. Key is lowercase
88 return Collections.unmodifiableMap(attributes);
149 attributes.put(attribute, attr);
261 * All the HTML4 attributes
/packages/apps/Browser/src/com/android/browser/
H A DErrorConsoleView.java66 public ErrorConsoleView(Context context, AttributeSet attributes) { argument
67 super(context, attributes);
214 public ErrorConsoleListView(Context context, AttributeSet attributes) { argument
215 super(context, attributes);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DCombinedInputOutput.java84 final HashMap<String, String> attributes = new HashMap<>();
90 attributes.put(keyValue[0], keyValue[1]);
93 attributes.remove(OPTIONS_TAG);
95 new FusionDictionary(new PtNodeArray(), new DictionaryOptions(attributes));
H A DXmlDictInputOutput.java115 final HashMap<String, String> attributes = new HashMap<>();
118 attributes.put(attrName, attrs.getValue(attrIndex));
121 new DictionaryOptions(attributes));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DFormatSpec.java51 * | attributes list
53 * attributes list is:
337 public DictionaryOptions(final HashMap<String, String> attributes) { argument
338 mAttributes = attributes;
/packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
H A DWbxmlEncoder.java47 NamedNodeMap attributes = node.getAttributes();
53 //proceed all attributes
54 for (int i = 0; i < attributes.getLength(); i++) {
55 Node attribute = attributes.item(i);
58 // close tag after all attributes if required...
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native_async/src/
H A DdmtAsyncData.cc519 dmtFreeCharPtr(pStruct->attributes.name);
520 dmtFreeCharPtr(pStruct->attributes.format);
521 dmtFreeCharPtr(pStruct->attributes.title);
522 dmtFreeCharPtr(pStruct->attributes.type);
523 dmtFreeCharPtr(pStruct->attributes.acl);
H A DdmtAsyncAPI.cc662 attrStruct.attributes.name = name.detach();
663 attrStruct.attributes.format = format.detach();
664 attrStruct.attributes.title = title.detach();
665 attrStruct.attributes.type = type.detach();
668 attrStruct.attributes.acl = aclStr.detach();
669 attrStruct.attributes.version = oAttr.GetVersion();
670 attrStruct.attributes.size = oAttr.GetSize();
671 attrStruct.attributes.timestamp = oAttr.GetTimestamp();
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicRendererSurfaceView.java224 int[] attributes = {
295 for (int i = 0; i < attributes.length; i++) {
296 int attribute = attributes[i];
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DBinaryDictionary.java136 * @param attributeMap the attributes of the dictionary
244 final HashMap<String, String> attributes = new HashMap<>();
250 attributes.put(attributeKey, attributeValue);
253 attributes.get(DictionaryHeader.HAS_HISTORICAL_INFO_KEY));
254 return new DictionaryHeader(outHeaderSize[0], new DictionaryOptions(attributes),
423 // Add a unigram entry to binary dictionary with unigram attributes in native code.
/packages/apps/Settings/tests/src/com/android/settings/vpn2/
H A DVpnProfileParser.java67 Attributes attributes) throws SAXException {
/packages/apps/OMA-DM/engine/dmlib/api/native_async/
H A DdmtAsyncAPI.h201 DMT_ATTRIBUTE_T attributes; /* node's attributes */ member in struct:__anon50
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java1981 final List<HtmlDocument.TagAttribute> attributes =
1983 for (HtmlDocument.TagAttribute attribute : attributes) {

Completed in 717 milliseconds