/packages/apps/Browser2/test/webexposed/ |
D | global-interface-listing-expected.txt | 39 attribute CHECKING 40 attribute DOWNLOADING 41 attribute IDLE 42 attribute OBSOLETE 43 attribute UNCACHED 44 attribute UPDATEREADY 268 attribute CHARSET_RULE 269 attribute FONT_FACE_RULE 270 attribute IMPORT_RULE 271 attribute KEYFRAMES_RULE [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapMessageListingElement.java | 276 xmlMsgElement.attribute(null, "handle", in encode() 280 xmlMsgElement.attribute(null, "subject", in encode() 284 xmlMsgElement.attribute(null, "datetime", this.getDateTimeString()); in encode() 286 xmlMsgElement.attribute(null, "sender_name", in encode() 289 xmlMsgElement.attribute(null, "sender_addressing", mSenderAddressing); in encode() 291 xmlMsgElement.attribute(null, "replyto_addressing",mReplytoAddressing); in encode() 293 xmlMsgElement.attribute(null, "recipient_name", in encode() 296 xmlMsgElement.attribute(null, "recipient_addressing", mRecipientAddressing); in encode() 299 xmlMsgElement.attribute(null, "type", mType.name()); in encode() 301 xmlMsgElement.attribute(null, "size", Integer.toString(mSize)); in encode() [all …]
|
D | BluetoothMapConvoContactElement.java | 202 xmlConvoElement.attribute(null, XML_ATT_UCI, mUci); in encode() 205 xmlConvoElement.attribute(null, XML_ATT_DISPLAY_NAME, in encode() 209 xmlConvoElement.attribute(null, XML_ATT_NAME, in encode() 213 xmlConvoElement.attribute(null, XML_ATT_CHAT_STATE, String.valueOf(mChatState)); in encode() 216 xmlConvoElement.attribute(null, XML_ATT_LAST_ACTIVITY, in encode() 220 xmlConvoElement.attribute(null, XML_ATT_X_BT_UID, mBtUid.toHexString()); in encode() 223 xmlConvoElement.attribute(null, XML_ATT_PRESENCE_AVAILABILITY, in encode() 227 xmlConvoElement.attribute(null, XML_ATT_PRESENCE_STATUS, mPresenceStatus); in encode() 230 xmlConvoElement.attribute(null, XML_ATT_PRIORITY, String.valueOf(mPriority)); in encode()
|
D | BluetoothMapConvoListingElement.java | 251 xmlConvoElement.attribute(null, XML_ATT_ID, mId.toHexString()); in encode() 253 xmlConvoElement.attribute(null, XML_ATT_NAME, in encode() 257 xmlConvoElement.attribute(null, XML_ATT_LAST_ACTIVITY, in encode() 262 xmlConvoElement.attribute(null, XML_ATT_READ, getRead()); in encode() 265 xmlConvoElement.attribute(null, XML_ATT_VERSION_COUNTER, in encode() 269 xmlConvoElement.attribute(null, XML_ATT_SUMMARY, getSummary()); in encode()
|
D | BluetoothMapContentObserver.java | 732 xmlEvtReport.attribute("", "version", BluetoothMapUtils.MAP_V10_STR); in encode() 734 xmlEvtReport.attribute("", "version", BluetoothMapUtils.MAP_V11_STR); in encode() 736 xmlEvtReport.attribute("", "version", BluetoothMapUtils.MAP_V12_STR); in encode() 739 xmlEvtReport.attribute("", "type", eventType); in encode() 743 xmlEvtReport.attribute("", "participant_uci", uci); in encode() 745 xmlEvtReport.attribute("", "handle", in encode() 750 xmlEvtReport.attribute("", "folder", folder); in encode() 753 xmlEvtReport.attribute("", "old_folder", oldFolder); in encode() 759 xmlEvtReport.attribute("", "msg_type", msgType.name()); in encode() 764 xmlEvtReport.attribute("", "datetime", datetime); in encode() [all …]
|
D | BluetoothMapFolderElement.java | 272 xmlMsgElement.attribute(null, "version", BluetoothMapUtils.MAP_V10_STR); in encode() 276 xmlMsgElement.attribute(null, "name", folders[i].getName()); in encode()
|
D | BluetoothMapMessageListing.java | 99 xmlMsgElement.attribute(null, "version", version); in encode()
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
D | WnnSentence.java | 45 this.attribute = 0; in WnnSentence() 56 this.attribute = headClause.attribute; in WnnSentence() 71 this.attribute = 2; in WnnSentence() 88 this.attribute = clause.attribute; in WnnSentence() 106 this.attribute = prev.attribute; in WnnSentence() 127 this.attribute = head.attribute; in WnnSentence() 137 this.attribute = 2; in WnnSentence()
|
D | WnnWord.java | 36 public int attribute; field in WnnWord 112 …lic WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency, int attribute) { in WnnWord() argument 118 this.attribute = attribute; in WnnWord()
|
D | OpenWnn.java | 221 @Override public void onStartInput(EditorInfo attribute, boolean restarting) { in onStartInput() argument 222 super.onStartInput(attribute, restarting); in onStartInput() 230 @Override public void onStartInputView(EditorInfo attribute, boolean restarting) { in onStartInputView() argument 231 super.onStartInputView(attribute, restarting); in onStartInputView() 243 if (mInputViewManager != null) { mInputViewManager.setPreferences(pref, attribute); } in onStartInputView()
|
D | SymbolList.java | 149 String attribute = xrp.getName(); in getXmlfile() local 150 if (XMLTAG_KEY.equals(attribute)) { in getXmlfile()
|
D | OpenWnnEN.java | 310 @Override public void onStartInputView(EditorInfo attribute, boolean restarting) { in onStartInputView() argument 311 super.onStartInputView(attribute, restarting); in onStartInputView() 337 fitInputType(pref, attribute); in onStartInputView()
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
D | HtmlDocument.java | 579 for (TagAttribute attribute : attributes) { in getAttribute() 580 if (attribute.getAttribute().equals(attr)) { in getAttribute() 581 return attribute; in getAttribute() 595 for (TagAttribute attribute : attributes) { in getAttributes() 596 if (attribute.getAttribute().equals(attr)) { in getAttributes() 597 result.add(attribute); in getAttributes() 766 private final HTML.Attribute attribute; field in HtmlDocument.TagAttribute 778 private TagAttribute(HTML.Attribute attribute, String value, String originalHtml) { in TagAttribute() argument 779 X.assertTrue(attribute != null); in TagAttribute() 780 this.attribute = attribute; in TagAttribute() [all …]
|
D | HTML4.java | 128 private static HTML.Attribute addAttribute(String attribute) { in addAttribute() argument 129 return addAttribute(attribute, HTML.Attribute.NO_TYPE); in addAttribute() 132 private static HTML.Attribute addAttribute(String attribute, int type) { in addAttribute() argument 133 return addAttribute(attribute, type, null); in addAttribute() 136 private static HTML.Attribute addAttribute(String attribute, in addAttribute() argument 139 attribute = attribute.toLowerCase(); in addAttribute() 148 HTML.Attribute attr = new HTML.Attribute(attribute, type, valueSet); in addAttribute() 149 attributes.put(attribute, attr); in addAttribute()
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
D | UninstallAppProgress.java | 323 TypedValue attribute = new TypedValue(); in initView() local 324 getTheme().resolveAttribute(android.R.attr.windowBackground, attribute, true); in initView() 325 if (attribute.type >= TypedValue.TYPE_FIRST_COLOR_INT && in initView() 326 attribute.type <= TypedValue.TYPE_LAST_COLOR_INT) { in initView() 327 getWindow().setBackgroundDrawable(new ColorDrawable(attribute.data)); in initView() 329 getWindow().setBackgroundDrawable(getResources().getDrawable(attribute.resourceId, in initView() 333 getTheme().resolveAttribute(android.R.attr.navigationBarColor, attribute, true); in initView() 334 getWindow().setNavigationBarColor(attribute.data); in initView() 336 getTheme().resolveAttribute(android.R.attr.statusBarColor, attribute, true); in initView() 337 getWindow().setStatusBarColor(attribute.data); in initView()
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/ |
D | IntentStore.java | 134 serializer.attribute(null, ATTR_NAME, key); in writeExtras() 135 serializer.attribute(null, ATTR_ACCOUNT_NAME, account.name); in writeExtras() 136 serializer.attribute(null, ATTR_ACCOUNT_TYPE, account.type); in writeExtras() 140 serializer.attribute(null, ATTR_NAME, key); in writeExtras() 245 serializer.attribute(null, ATTR_VALUE, value); in writeTag() 252 serializer.attribute(null, ATTR_NAME, name); in writeTag() 253 serializer.attribute(null, ATTR_VALUE, value); in writeTag()
|
/packages/apps/CarrierConfig/src/com/android/carrierconfig/ |
D | DefaultCarrierConfigService.java | 168 String attribute = parser.getAttributeName(i); in checkFilters() local 170 switch (attribute) { in checkFilters() 190 Log.e(TAG, "Unknown attribute " + attribute + "=" + value); in checkFilters()
|
/packages/apps/CarrierConfig/tests/src/com/android/carrierconfig/ |
D | CarrierConfigTest.java | 52 String attribute = parser.getAttributeName(i); in testFilterValidAttributes() 53 switch (attribute) { in testFilterValidAttributes() 62 fail("Unknown attribute '" + attribute in testFilterValidAttributes()
|
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
D | MosaicRendererSurfaceView.java | 204 EGLConfig config, int attribute, int defaultValue) { in findConfigAttrib() argument 206 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) { in findConfigAttrib() 296 int attribute = attributes[i]; in printConfig() local 298 if (egl.eglGetConfigAttrib(display, config, attribute, value)) { in printConfig()
|
/packages/apps/Camera2/src/com/android/camera/data/ |
D | FilmstripItemAttributes.java | 93 public Builder with(Attributes attribute) { in with() argument 94 mAttributes.add(attribute); in with()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | XmlParseUtils.java | 55 final String attribute) { in IllegalAttribute() argument 56 super("Tag " + tag + " has illegal attribute " + attribute, parser); in IllegalAttribute()
|
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
D | RegisteredNfcFServicesCache.java | 496 out.attribute(null, "component", entry.getKey().flattenToString()); in writeDynamicSystemCodeNfcid2Locked() 497 out.attribute(null, "uid", Integer.toString(entry.getValue().uid)); in writeDynamicSystemCodeNfcid2Locked() 498 out.attribute(null, "system-code", entry.getValue().systemCode); in writeDynamicSystemCodeNfcid2Locked() 500 out.attribute(null, "nfcid2", in writeDynamicSystemCodeNfcid2Locked() 509 out.attribute(null, "component", entry.getKey().flattenToString()); in writeDynamicSystemCodeNfcid2Locked() 510 out.attribute(null, "uid", Integer.toString(entry.getValue().uid)); in writeDynamicSystemCodeNfcid2Locked() 511 out.attribute(null, "nfcid2", entry.getValue().nfcid2); in writeDynamicSystemCodeNfcid2Locked()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | AutoInstallsLayout.java | 671 protected static String getAttributeValue(XmlResourceParser parser, String attribute) { in getAttributeValue() argument 673 "http://schemas.android.com/apk/res-auto/com.android.launcher3", attribute); in getAttributeValue() 675 value = parser.getAttributeValue(null, attribute); in getAttributeValue() 684 protected static int getAttributeResourceValue(XmlResourceParser parser, String attribute, in getAttributeResourceValue() argument 687 "http://schemas.android.com/apk/res-auto/com.android.launcher3", attribute, in getAttributeResourceValue() 690 value = parser.getAttributeResourceValue(null, attribute, defaultValue); in getAttributeResourceValue()
|
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
D | MessageTestUtils.java | 251 public TextBuilder addTag(String tag, String attribute, String value) { in addTag() argument 252 return addText(String.format("<%s %s=\"%s\">", tag, attribute, value)); in addTag()
|
/packages/apps/Messaging/ |
D | proguard-test.flags | 24 # settings to these, but maybe we want to require VisibleForTesting attribute), just expose all
|