Searched defs:attribute (Results 1 - 8 of 8) 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/
H A DXmlParseUtils.java54 public IllegalAttribute(XmlPullParser parser, String attribute) { argument
55 super("Tag " + parser.getName() + " has illegal attribute " + attribute, parser);
78 "No " + attrName + " attribute found in <" + tag + "/>", parser);
/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/Contacts/src/com/android/contacts/model/account/
H A DBaseAccountType.java713 private static boolean getAttr(AttributeSet attrs, String attribute, boolean defaultValue) { argument
714 return attrs.getAttributeBooleanValue(null, attribute, defaultValue);
717 private static int getAttr(AttributeSet attrs, String attribute, int defaultValue) { argument
718 return attrs.getAttributeIntValue(null, attribute, defaultValue);
721 private static String getAttr(AttributeSet attrs, String attribute) { argument
722 return attrs.getAttributeValue(null, attribute);

Completed in 337 milliseconds