Searched refs:attributes (Results 1 - 18 of 18) 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.java56 public void startElement(String uri, String localName, String qName, Attributes attributes) { argument
61 if (attributes != null) {
62 for (int i = 0; i < attributes.getLength(); i++) {
65 " lname = " + attributes.getLocalName(i) +
66 " value = " + attributes.getValue(i));
68 element.setAttribute(attributes.getLocalName(i),
69 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/apps/VideoEditor/src/com/android/videoeditor/
H A DOverlayTitleEditor.java39 public static final String PARAM_OVERLAY_ATTRIBUTES = "attributes";
102 final Bundle attributes = getIntent().getBundleExtra(PARAM_OVERLAY_ATTRIBUTES);
103 if (attributes != null) {
106 mOverlayType = MovieOverlay.getType(attributes);
107 mTitleView.setText(MovieOverlay.getTitle(attributes));
108 mSubtitleView.setText(MovieOverlay.getSubtitle(attributes));
136 final Bundle attributes = extras.getBundleExtra(
138 mOverlayType = MovieOverlay.getType(attributes);
166 final Bundle attributes = MovieOverlay.buildUserAttributes(mOverlayType,
168 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, attributes);
[all...]
/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DAbstractDictDecoder.java55 final HashMap<String, String> attributes = HeaderReader.readAttributes(dictBuffer,
59 new FusionDictionary.DictionaryOptions(attributes,
107 final HashMap<String, String> attributes = new HashMap<String, String>();
113 attributes.put(key, value);
116 return attributes;
H A DFusionDictionary.java309 public DictionaryOptions(final HashMap<String, String> attributes, argument
311 mAttributes = attributes;
512 // make it one by filling in its frequency and other attributes
749 // that has no need for attributes. Implementations that does not read attributes should be
754 // tails that contain attributes, but this code does not take that into account - it does
755 // not compare attributes and will merge terminals with different attributes regardless.
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DCombinedInputOutput.java106 final HashMap<String, String> attributes = new HashMap<String, String>();
112 attributes.put(keyValue[0], keyValue[1]);
116 GERMAN_UMLAUT_PROCESSING_OPTION.equals(attributes.get(OPTIONS_TAG));
118 FRENCH_LIGATURE_PROCESSING_OPTION.equals(attributes.get(OPTIONS_TAG));
119 attributes.remove(OPTIONS_TAG);
121 attributes, processUmlauts, processLigatures));
H A DXmlDictInputOutput.java117 final HashMap<String, String> attributes = new HashMap<String, String>();
120 attributes.put(attrName, attrs.getValue(attrIndex));
122 final String optionsString = attributes.get(OPTIONS_KEY);
128 new DictionaryOptions(attributes, processUmlauts, processLigatures));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DDictionaryWriter.java53 final HashMap<String, String> attributes = CollectionUtils.newHashMap();
55 new FusionDictionary.DictionaryOptions(attributes, false, false));
/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/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/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationUtils.java1532 final List<HtmlDocument.TagAttribute> attributes =
1534 for (HtmlDocument.TagAttribute attribute : attributes) {
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DMediaLinearLayout.java1916 // Add overlay id and attributes bundle to the extra if the overlay already exists.
1921 final Bundle attributes = MovieOverlay.buildUserAttributes(
1924 attributes);

Completed in 286 milliseconds