Searched defs:attribute (Results 1 - 12 of 12) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnWord.java35 /** The attribute of this word when it is assumed a candidate. */
36 public int attribute; field in class:WnnWord
110 * @param attribute The attribute of word
112 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency, int attribute) { argument
118 this.attribute = attribute;
H A DOpenWnn.java221 @Override public void onStartInput(EditorInfo attribute, boolean restarting) { argument
222 super.onStartInput(attribute, restarting);
230 @Override public void onStartInputView(EditorInfo attribute, boolean restarting) { argument
231 super.onStartInputView(attribute, restarting);
243 if (mInputViewManager != null) { mInputViewManager.setPreferences(pref, attribute); }
H A DOpenWnnEN.java310 @Override public void onStartInputView(EditorInfo attribute, boolean restarting) { argument
311 super.onStartInputView(attribute, restarting);
337 fitInputType(pref, attribute);
H A DOpenWnnJAJP.java535 @Override public void onStartInputView(EditorInfo attribute, boolean restarting) { argument
539 super.onStartInputView(attribute, restarting);
550 super.onStartInputView(attribute, restarting);
567 fitInputType(pref, attribute);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DXmlParseUtils.java55 final String attribute) {
56 super("Tag " + tag + " has illegal attribute " + attribute, parser);
81 "No " + attrName + " attribute found in <" + tag + "/>", parser);
54 IllegalAttribute(final XmlPullParser parser, final String tag, final String attribute) argument
/packages/apps/Email/tests/src/com/android/emailcommon/mail/
H A DMessageTestUtils.java226 * Modifier method to add img tag that has cid: src attribute.
235 * Modifier method to add img tag that has content:// src attribute.
244 * Modifier method to add tag with specified attribute and value.
247 * @param attribute attribute name
248 * @param value attribute value
251 public TextBuilder addTag(String tag, String attribute, String value) { argument
252 return addText(String.format("<%s %s=\"%s\">", tag, attribute, value));
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicRendererSurfaceView.java204 EGLConfig config, int attribute, int defaultValue) {
206 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
296 int attribute = attributes[i];
298 if (egl.eglGetConfigAttrib(display, config, attribute, value)) {
203 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DBaseAccountType.java667 private static boolean getAttr(AttributeSet attrs, String attribute, boolean defaultValue) { argument
668 return attrs.getAttributeBooleanValue(null, attribute, defaultValue);
671 private static int getAttr(AttributeSet attrs, String attribute, int defaultValue) { argument
672 return attrs.getAttributeIntValue(null, attribute, defaultValue);
675 private static String getAttr(AttributeSet attrs, String attribute) { argument
676 return attrs.getAttributeValue(null, attribute);
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlDocument.java520 * first attribute, including beginning '&lt;'. This should not
521 * include preceeding whitespace for the first attribute, as that
522 * should be included in the attribute node. If not null, tag will
528 * last attribute, including ending '>'. If not null, tag will
555 /** Adds an attribute */
561 /** Adds an attribute */
578 for (TagAttribute attribute : attributes) {
579 if (attribute.getAttribute().equals(attr)) {
580 return attribute;
588 * Finds and returns list of TagAttribute of given attribute
765 private final HTML.Attribute attribute; field in class:HtmlDocument.TagAttribute
777 TagAttribute(HTML.Attribute attribute, String value, String originalHtml) argument
[all...]
H A DHTML4.java69 /** Looks for a HTML4 attribute */
84 * attribute name.
126 /** Creates and add an attribute to the map */
127 private static HTML.Attribute addAttribute(String attribute) { argument
128 return addAttribute(attribute, HTML.Attribute.NO_TYPE);
131 private static HTML.Attribute addAttribute(String attribute, int type) { argument
132 return addAttribute(attribute, type, null);
135 private static HTML.Attribute addAttribute(String attribute, argument
138 attribute = attribute
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java521 * first attribute, including beginning '&lt;'. This should not
522 * include preceeding whitespace for the first attribute, as that
523 * should be included in the attribute node. If not null, tag will
529 * last attribute, including ending '>'. If not null, tag will
556 /** Adds an attribute */
562 /** Adds an attribute */
579 for (TagAttribute attribute : attributes) {
580 if (attribute.getAttribute().equals(attr)) {
581 return attribute;
589 * Finds and returns list of TagAttribute of given attribute
766 private final HTML.Attribute attribute; field in class:HtmlDocument.TagAttribute
778 TagAttribute(HTML.Attribute attribute, String value, String originalHtml) argument
[all...]
H A DHTML4.java70 /** Looks for a HTML4 attribute */
85 * attribute name.
127 /** Creates and add an attribute to the map */
128 private static HTML.Attribute addAttribute(String attribute) { argument
129 return addAttribute(attribute, HTML.Attribute.NO_TYPE);
132 private static HTML.Attribute addAttribute(String attribute, int type) { argument
133 return addAttribute(attribute, type, null);
136 private static HTML.Attribute addAttribute(String attribute, argument
139 attribute = attribute
[all...]

Completed in 351 milliseconds