/packages/apps/Email/src/org/apache/james/mime4j/util/ |
D | CharsetUtil.java | 797 private String canonical = null; 798 private String mime = null; 799 private String[] aliases = null; 801 private Charset(String canonical, String mime, String[] aliases) { in Charset() 814 new String[] {"ISO_8859-1:1987", "iso-ir-100", "ISO_8859-1", 819 new String[] {"ISO_8859-2:1987", "iso-ir-101", "ISO_8859-2", 822 …new Charset("ISO8859_3", "ISO-8859-3", new String[] {"ISO_8859-3:1988", "iso-ir-109", "ISO_8859-3"… 824 new String[] {"ISO_8859-4:1988", "iso-ir-110", "ISO_8859-4", 827 new String[] {"ISO_8859-5:1988", "iso-ir-144", "ISO_8859-5", 829 …new Charset("ISO8859_6", "ISO-8859-6", new String[] {"ISO_8859-6:1987", "iso-ir-127", "ISO_8859-6"… [all …]
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
D | ImapConstants.java | 24 public static final String FETCH_FIELD_BODY_PEEK_BARE = "BODY.PEEK"; 25 public static final String FETCH_FIELD_BODY_PEEK = FETCH_FIELD_BODY_PEEK_BARE + "[]"; 26 public static final String FETCH_FIELD_BODY_PEEK_SANE 27 = String.format("BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE); 28 public static final String FETCH_FIELD_HEADERS = 31 public static final String ALERT = "ALERT"; 32 public static final String APPEND = "APPEND"; 33 public static final String BAD = "BAD"; 34 public static final String BADCHARSET = "BADCHARSET"; 35 public static final String BODY = "BODY"; [all …]
|
/packages/apps/Browser/src/com/android/browser/ |
D | PreferenceKeys.java | 21 static final String PREF_AUTOFILL_ACTIVE_PROFILE_ID = "autofill_active_profile_id"; 22 static final String PREF_DEBUG_MENU = "debug_menu"; 27 static final String PREF_MIN_FONT_SIZE = "min_font_size"; 28 static final String PREF_TEXT_SIZE = "text_size"; 29 static final String PREF_TEXT_ZOOM = "text_zoom"; 30 static final String PREF_DOUBLE_TAP_ZOOM = "double_tap_zoom"; 31 static final String PREF_FORCE_USERSCALABLE = "force_userscalable"; 32 static final String PREF_INVERTED = "inverted"; 33 static final String PREF_INVERTED_CONTRAST = "inverted_contrast"; 38 static final String PREF_AUTOFIT_PAGES = "autofit_pages"; [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
D | KeySpecParserTests.java | 34 private static final String CODE_SETTINGS = "!code/key_settings"; 35 private static final String ICON_SETTINGS = "!icon/settings_key"; 36 private static final String CODE_SETTINGS_UPPERCASE = CODE_SETTINGS.toUpperCase(); 37 private static final String ICON_SETTINGS_UPPERCASE = ICON_SETTINGS.toUpperCase(); 38 private static final String CODE_NON_EXISTING = "!code/non_existing"; 39 private static final String ICON_NON_EXISTING = "!icon/non_existing"; 49 final String language = Locale.ENGLISH.getLanguage(); in setUp() 61 private void assertParser(String message, String moreKeySpec, String expectedLabel, in assertParser() 62 String expectedOutputText, int expectedIcon, int expectedCode) { in assertParser() 63 final String labelResolved = KeySpecParser.resolveTextReference(moreKeySpec, mTextsSet); in assertParser() [all …]
|
/packages/apps/Email/src/com/android/mail/providers/ |
D | UIProvider.java | 34 public static final String EMAIL_SEPARATOR = ","; 78 public static final String AUTHORITY = "com.android.mail.providers"; 80 public static final String ACCOUNT_LIST_TYPE = 82 public static final String ACCOUNT_TYPE = 90 public static final String LIST_PARAMS_QUERY_PARAMETER = "listParams"; 92 public static final String[] ACCOUNTS_PROJECTION = { 257 public static final String NAME = "name"; 263 public static final String TYPE = "type"; 269 public static final String PROVIDER_VERSION = "providerVersion"; 274 public static final String URI = "accountUri"; [all …]
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
D | ApiServiceListener.java | 48 public void onProjectEditState(String projectPath, boolean projectEdited) {} in onProjectEditState() 59 public void onVideoEditorCreated(String projectPath, VideoEditorProject project, in onVideoEditorCreated() 71 public void onVideoEditorLoaded(String projectPath, VideoEditorProject project, in onVideoEditorLoaded() 81 …public void onVideoEditorAspectRatioSet(String projectPath, int aspectRatio, Exception exception) … in onVideoEditorAspectRatioSet() 90 public void onVideoEditorThemeApplied(String projectPath, String theme, Exception exception) {} in onVideoEditorThemeApplied() 101 public void onVideoEditorGeneratePreviewProgress(String projectPath, String className, in onVideoEditorGeneratePreviewProgress() 102 String itemId, int action, int progress) {} in onVideoEditorGeneratePreviewProgress() 111 public void onVideoEditorExportProgress(String projectPath, String filename, int progress) {} in onVideoEditorExportProgress() 121 public void onVideoEditorExportComplete(String projectPath, String filename, in onVideoEditorExportComplete() 130 public void onVideoEditorExportCanceled(String projectPath, String filename) {} in onVideoEditorExportCanceled() [all …]
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
D | SMILMediaElement.java | 26 public String getAbstractAttr(); in getAbstractAttr() 27 public void setAbstractAttr(String abstractAttr) in setAbstractAttr() 35 public String getAlt(); in getAlt() 36 public void setAlt(String alt) in setAlt() 44 public String getAuthor(); in getAuthor() 45 public void setAuthor(String author) in setAuthor() 53 public String getClipBegin(); in getClipBegin() 54 public void setClipBegin(String clipBegin) in setClipBegin() 62 public String getClipEnd(); in getClipEnd() 63 public void setClipEnd(String clipEnd) in setClipEnd() [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
D | HttpHelper.java | 29 public String get(GetRequest request) throws IOException, HttpException; in get() 31 public String get(String url, Map<String,String> requestHeaders) in get() argument 34 public String post(PostRequest request) throws IOException, HttpException; in post() 36 public String post(String url, Map<String,String> requestHeaders, String content) in post() argument 44 private String mUrl; 45 private Map<String,String> mHeaders; 58 public GetRequest(String url) { in GetRequest() 65 public String getUrl() { in getUrl() 71 public void setUrl(String url) { in setUrl() 80 public Map<String, String> getHeaders() { in getHeaders() [all …]
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
D | EmailContent.java | 64 public static final String AUTHORITY = "com.android.email.provider"; 68 public static final String NOTIFIER_AUTHORITY = "com.android.email.notifier"; 71 public static final String PARAMETER_LIMIT = "limit"; 77 public static final String[] NOTIFICATION_PROJECTION = 78 new String[] {MailboxColumns.ID, MailboxColumns.UNREAD_COUNT, MailboxColumns.MESSAGE_COUNT}; 86 public static final String PROVIDER_PERMISSION = "com.android.email.permission.ACCESS_PROVIDER"; 89 public static final String RECORD_ID = "_id"; 91 public static final String[] COUNT_COLUMNS = new String[]{"count(*)"}; 97 public static final String[] ID_PROJECTION = new String[] { 102 public static final String ID_SELECTION = RECORD_ID + " =?"; [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
D | Constants.java | 51 public static final String TAG = "BluetoothOpp"; 57 public static final String ACTION_RETRY = "android.btopp.intent.action.RETRY"; 60 public static final String ACTION_OPEN = "android.btopp.intent.action.OPEN"; 63 …public static final String ACTION_OPEN_OUTBOUND_TRANSFER = "android.btopp.intent.action.OPEN_OUTBO… 66 …public static final String ACTION_OPEN_INBOUND_TRANSFER = "android.btopp.intent.action.OPEN_INBOUN… 69 …public static final String ACTION_OPEN_RECEIVED_FILES = "android.btopp.intent.action.OPEN_RECEIVED… 72 …public static final String ACTION_WHITELIST_DEVICE = "android.btopp.intent.action.WHITELIST_DEVICE… 75 …public static final String ACTION_STOP_HANDOVER = "android.btopp.intent.action.STOP_HANDOVER_TRANS… 78 public static final String EXTRA_SHOW_ALL_FILES = "android.btopp.intent.extra.SHOW_ALL"; 81 public static final String ACTION_LIST = "android.btopp.intent.action.LIST"; [all …]
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
D | MmsSmsProvider.java | 72 private static final String LOG_TAG = "MmsSmsProvider"; 75 private static final String NO_DELETES_INSERTS_OR_UPDATES = 101 public static final String TABLE_PENDING_MSG = "pending_msgs"; 106 private static final String TABLE_CANONICAL_ADDRESSES = "canonical_addresses"; 111 static final String TABLE_THREADS = "threads"; 118 private static final String[] MMS_SMS_COLUMNS = 123 private static final String[] MMS_ONLY_COLUMNS = { 134 private static final String[] SMS_ONLY_COLUMNS = 139 private static final String[] THREADS_COLUMNS = { 146 private static final String[] CANONICAL_ADDRESSES_COLUMNS_1 = [all …]
|
/packages/apps/Email/src/org/apache/james/mime4j/field/ |
D | Field.java | 32 public static final String SENDER = "Sender"; 33 public static final String FROM = "From"; 34 public static final String TO = "To"; 35 public static final String CC = "Cc"; 36 public static final String BCC = "Bcc"; 37 public static final String REPLY_TO = "Reply-To"; 38 public static final String RESENT_SENDER = "Resent-Sender"; 39 public static final String RESENT_FROM = "Resent-From"; 40 public static final String RESENT_TO = "Resent-To"; 41 public static final String RESENT_CC = "Resent-Cc"; [all …]
|
D | ContentTypeField.java | 49 public static final String TYPE_MULTIPART_PREFIX = "multipart/"; 53 public static final String TYPE_MULTIPART_DIGEST = "multipart/digest"; 57 public static final String TYPE_TEXT_PLAIN = "text/plain"; 61 public static final String TYPE_MESSAGE_RFC822 = "message/rfc822"; 65 public static final String PARAM_BOUNDARY = "boundary"; 69 public static final String PARAM_CHARSET = "charset"; 71 private String mimeType = ""; 72 private Map<String, String> parameters = null; 75 …protected ContentTypeField(String name, String body, String raw, String mimeType, Map<String, Stri… in ContentTypeField() argument 95 public String getMimeType() { in getMimeType() [all …]
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/ |
D | PackedString.java | 40 private String mString; 41 private HashMap<String, String> mExploded; 42 private static final HashMap<String, String> EMPTY_MAP = new HashMap<String, String>(); 48 public PackedString(String string) { in PackedString() 58 public String get(String tag) { in get() 70 public Map<String, String> unpack() { in unpack() 74 return new HashMap<String,String>(mExploded); in unpack() 80 private static HashMap<String, String> explode(String packed) { in explode() 84 HashMap<String, String> map = new HashMap<String, String>(); in explode() 96 String tag; in explode() [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | Stopwatches.java | 25 public static final String START_STOPWATCH = "start_stopwatch"; 26 public static final String LAP_STOPWATCH = "lap_stopwatch"; 27 public static final String STOP_STOPWATCH = "stop_stopwatch"; 28 public static final String RESET_STOPWATCH = "reset_stopwatch"; 29 public static final String SHARE_STOPWATCH = "share_stopwatch"; 30 public static final String RESET_AND_LAUNCH_STOPWATCH = "reset_and_launch_stopwatch"; 31 public static final String MESSAGE_TIME = "message_time"; 32 public static final String SHOW_NOTIF = "show_notification"; 33 public static final String KILL_NOTIF = "kill_notification"; 34 public static final String PREF_START_TIME = "sw_start_time"; [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | SubtypeLocale.java | 34 static final String TAG = SubtypeLocale.class.getSimpleName(); 36 private static final String RESOURCE_PACKAGE_NAME = 40 public static final String NO_LANGUAGE = "zz"; 41 public static final String QWERTY = "qwerty"; 45 private static String[] sPredefinedKeyboardLayoutSet; 47 private static final HashMap<String, String> sKeyboardLayoutToDisplayNameMap = 50 private static final HashMap<String, Integer> sKeyboardLayoutToNameIdsMap = 53 private static final HashMap<String, Integer> sExceptionalLocaleToWithLayoutNameIdsMap = 55 private static final String SUBTYPE_NAME_RESOURCE_GENERIC_PREFIX = 57 private static final String SUBTYPE_NAME_RESOURCE_WITH_LAYOUT_PREFIX = [all …]
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/swipeablelistview/ |
D | LogUtils.java | 25 public static final String TAG = "AlarmClock"; 83 protected static boolean isDebugLoggingEnabled(String tag) { in isDebugLoggingEnabled() 96 public static boolean isLoggable(String tag, int level) { in isLoggable() 113 public static int v(String tag, String format, Object... args) { in v() 115 return Log.v(tag, String.format(format, args)); in v() 131 public static int v(String tag, Throwable tr, String format, Object... args) { in v() 133 return Log.v(tag, String.format(format, args), tr); in v() 148 public static int d(String tag, String format, Object... args) { in d() 150 return Log.d(tag, String.format(format, args)); in d() 166 public static int d(String tag, Throwable tr, String format, Object... args) { in d() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | PunctuationTests.java | 23 final String NEXT_WORD_PREDICTION_OPTION = "next_word_prediction"; 26 final String WORD_TO_TYPE = "this "; in testWordThenSpaceThenPunctuationFromStripTwice() 27 final String PUNCTUATION_FROM_STRIP = "!"; in testWordThenSpaceThenPunctuationFromStripTwice() 28 final String EXPECTED_RESULT = "this!! "; in testWordThenSpaceThenPunctuationFromStripTwice() 52 final String WORD_TO_TYPE = "this !!"; in testWordThenSpaceThenPunctuationFromKeyboardTwice() 53 final String EXPECTED_RESULT = "this !!"; in testWordThenSpaceThenPunctuationFromKeyboardTwice() 60 final String WORD1_TO_TYPE = "this"; in testManualPickThenPunctuationFromStripTwiceThenType() 61 final String WORD2_TO_TYPE = "is"; in testManualPickThenPunctuationFromStripTwiceThenType() 62 final String PUNCTUATION_FROM_STRIP = "!"; in testManualPickThenPunctuationFromStripTwiceThenType() 63 final String EXPECTED_RESULT = "this!! is"; in testManualPickThenPunctuationFromStripTwiceThenType() [all …]
|
D | InputLogicTests.java | 24 final String WORD_TO_TYPE = "abcd"; in testTypeWord() 30 final String WORD_TO_TYPE = "this"; in testPickSuggestionThenBackspace() 31 final String EXPECTED_RESULT = "thi"; in testPickSuggestionThenBackspace() 41 final String WORD_TO_TYPE = "tgis"; in testPickAutoCorrectionThenBackspace() 42 final String WORD_TO_PICK = "this"; in testPickAutoCorrectionThenBackspace() 43 final String EXPECTED_RESULT = "thi"; in testPickAutoCorrectionThenBackspace() 57 final String WORD_TO_TYPE = "tgis"; in testPickTypedWordOverAutoCorrectionThenBackspace() 58 final String EXPECTED_RESULT = "tgi"; in testPickTypedWordOverAutoCorrectionThenBackspace() 72 final String WORD_TO_TYPE = "tgis"; in testPickDifferentSuggestionThenBackspace() 73 final String WORD_TO_PICK = "thus"; in testPickDifferentSuggestionThenBackspace() [all …]
|
/packages/apps/Email/src/com/android/mail/utils/ |
D | LogUtils.java | 31 private static String LOG_TAG = "UnifiedEmail"; 36 public String getLogTag() { in getLogTag() 106 public static String contentUriToString(Uri uri) { in contentUriToString() 113 List<String> pathSegments = uri.getPathSegments(); in contentUriToString() 122 final String account = pathSegments.get(0); in contentUriToString() 124 builder = builder.appendPath(String.valueOf(account.hashCode())); in contentUriToString() 168 public static boolean isLoggable(String tag, int level) { in isLoggable() 185 public static int v(String tag, String format, Object... args) { in v() 187 return Log.v(tag, String.format(format, args)); in v() 203 public static int v(String tag, Throwable tr, String format, Object... args) { in v() [all …]
|
/packages/inputmethods/LatinIME/tools/dicttool/src/android/inputmethod/latin/dicttool/ |
D | XmlDictInputOutput.java | 47 private static final String ROOT_TAG = "wordlist"; 48 private static final String WORD_TAG = "w"; 49 private static final String BIGRAM_TAG = "bigram"; 50 private static final String SHORTCUT_TAG = "shortcut"; 51 private static final String FREQUENCY_ATTR = "f"; 52 private static final String WORD_ATTR = "word"; 53 private static final String NOT_A_WORD_ATTR = "not_a_word"; 57 private static final String OPTIONS_KEY = "options"; 58 private static final String GERMAN_UMLAUT_PROCESSING_OPTION = "german_umlaut_processing"; 59 private static final String FRENCH_LIGATURE_PROCESSING_OPTION = "french_ligature_processing"; [all …]
|
/packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/ |
D | MoreKeysResources.java | 33 private static final String TEXT_RESOURCE_NAME = "donottranslate-more-keys.xml"; 35 private static final String JAVA_TEMPLATE = "KeyboardTextsSet.tmpl"; 36 private static final String MARK_NAMES = "@NAMES@"; 37 private static final String MARK_DEFAULT_TEXTS = "@DEFAULT_TEXTS@"; 38 private static final String MARK_TEXTS = "@TEXTS@"; 39 private static final String MARK_LANGUAGES_AND_TEXTS = "@LANGUAGES_AND_TEXTS@"; 40 private static final String DEFAUT_LANGUAGE_NAME = "DEFAULT"; 41 private static final String ARRAY_NAME_FOR_LANGUAGE = "LANGUAGE_%s"; 42 private static final String EMPTY_STRING_VAR = "EMPTY"; 44 private static final String NO_LANGUAGE_CODE = "zz"; [all …]
|
/packages/apps/Mms/src/com/android/mms/dom/ |
D | ElementImpl.java | 28 private String mTagName; 35 protected ElementImpl(DocumentImpl owner, String tagName) { in ElementImpl() 44 public String getAttribute(String name) { in getAttribute() 46 String attrValue = ""; in getAttribute() 53 public String getAttributeNS(String namespaceURI, String localName) { in getAttributeNS() 58 public Attr getAttributeNode(String name) { in getAttributeNode() 62 public Attr getAttributeNodeNS(String namespaceURI, String localName) { in getAttributeNodeNS() 67 public NodeList getElementsByTagName(String name) { in getElementsByTagName() 71 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) { in getElementsByTagNameNS() 76 public String getTagName() { in getTagName() [all …]
|
/packages/apps/Exchange/exchange2/src/com/android/exchange/provider/ |
D | GalResult.java | 37 public void addGalData(long id, String displayName, String emailAddress) { in addGalData() 47 public static final String ID = "_id"; 48 public static final String DISPLAY_NAME = "displayName"; 49 public static final String EMAIL_ADDRESS = "emailAddress"; 50 public static final String WORK_PHONE = "workPhone"; 51 public static final String HOME_PHONE = "homePhone"; 52 public static final String MOBILE_PHONE = "mobilePhone"; 53 public static final String FIRST_NAME = "firstName"; 54 public static final String LAST_NAME = "lastName"; 55 public static final String COMPANY = "company"; [all …]
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | StreamItemEntry.java | 40 private final String mText; 41 private final String mComments; 43 private final String mAccountType; 44 private final String mAccountName; 45 private final String mDataSet; 52 private final String mResPackage; 53 private final String mIconRes; 54 private final String mLabelRes; 60 public static StreamItemEntry createForTest(long id, String text, String comments, in createForTest() 61 long timestamp, String accountType, String accountName, String dataSet, in createForTest() [all …]
|