/packages/services/Car/car_product/build/ |
H A D | car.mk | 47 $(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk) 48 $(call inherit-product-if-exists, external/google-fonts/dancing-script/fonts.mk) 49 $(call inherit-product-if-exists, external/google-fonts/carrois-gothic-sc/fonts.mk) 50 $(call inherit-product-if-exists, external/google-fonts/coming-soon/fonts.mk) 51 $(call inherit-product-if-exists, external/google-fonts/cutive-mono/fonts.mk) 52 $(call inherit-product-if-exists, external/noto-fonts/fonts.mk) 53 $(call inherit-product-if-exists, external/naver-fonts/fonts.mk) 54 $(call inherit-product-if-exists, external/roboto-fonts/fonts.mk) 55 $(call inherit-product-if-exists, external/hyphenation-patterns/patterns.mk) 56 $(call inherit-product-if-exists, framework [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
H A D | FileDeleteStrategy.java | 73 if (fileToDelete == null || fileToDelete.exists() == false) { 94 if (fileToDelete.exists() && doDelete(fileToDelete) == false) { 110 * @param fileToDelete the file to delete, exists, not null 143 * if the file exists.
|
H A D | FileUtils.java | 121 * An exception is thrown if the file object exists but is a directory. 122 * An exception is thrown if the file exists but cannot be read. 132 if (file.exists()) { 134 throw new IOException("File '" + file + "' exists but is a directory"); 155 * An exception is thrown if the file object exists but is a directory. 156 * An exception is thrown if the file exists but cannot be written to. 167 if (file.exists()) { 169 throw new IOException("File '" + file + "' exists but is a directory"); 176 if (parent != null && parent.exists() == false) { 211 * a new file with size 0 or, if the file exists alread [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/ |
H A D | SizeFileComparator.java | 111 size1 = sumDirectoryContents && file1.exists() ? FileUtils.sizeOfDirectory(file1) : 0; 117 size2 = sumDirectoryContents && file2.exists() ? FileUtils.sizeOfDirectory(file2) : 0;
|
/packages/apps/Camera2/src/com/android/camera/util/ |
H A D | FileUtil.java | 35 if (!directory.exists() || !directory.isDirectory()) {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
H A D | SimpleTempStorage.java | 67 } while (p.exists() && count > 0); 69 if (p.exists() || !p.mkdirs()) { 96 } while (f.exists() && count > 0); 98 if (f.exists()) {
|
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/ |
H A D | ImapTempFileLiteral.java | 105 if (!isDestroyed() && mFile.exists()) { 121 return mFile.exists();
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/imap/ |
H A D | ImapTempFileLiteral.java | 105 if (!isDestroyed() && mFile.exists()) { 121 return mFile.exists();
|
/packages/apps/Browser2/src/org/chromium/webview_shell/ |
H A D | WebViewLayoutTest.java | 114 if (jsTestFile.exists()) return; 152 if (fileOut.exists() && !overwrite) { 159 if (!filePath.exists()) {
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/ |
H A D | DataExporter.java | 102 if (!directory.exists()) { 112 return getOutputDirectory(context).exists(); 120 if (!file.exists()) return;
|
/packages/services/Telephony/src/com/android/phone/ |
H A D | CallTime.java | 199 if (file.exists() == false) { 207 if (file.exists() == true) { 212 if (file.exists() == true) {
|
/packages/apps/Camera2/src/com/android/camera/session/ |
H A D | SessionStorageManagerImpl.java | 66 if (!sessionDirectory.exists() && !sessionDirectory.mkdirs()) { 99 if (!tempFile.exists()) {
|
/packages/apps/Email/provider_src/com/android/email/service/ |
H A D | ImapTempFileLiteral.java | 108 if (!isDestroyed() && mFile.exists()) { 124 return mFile.exists();
|
/packages/apps/Camera2/src/com/android/camera/one/ |
H A D | AbstractOneCamera.java | 74 if (!root.exists() || !root.isDirectory()) {
|
/packages/apps/Settings/src/com/android/settings/ |
H A D | SettingsLicenseActivity.java | 53 if (!file.exists() || file.length() == 0) {
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
H A D | ConfigDialogFragment.java | 51 private static final String ARG_EXISTS = "exists"; 58 public static void show(VpnSettings parent, VpnProfile profile, boolean edit, boolean exists) { argument 64 args.putBoolean(ARG_EXISTS, exists); 98 boolean exists = args.getBoolean(ARG_EXISTS); 100 return new ConfigDialog(getActivity(), this, profile, editing, exists);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/ |
H A D | LicenseActivity.java | 56 if (!file.exists() || file.length() == 0) {
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
H A D | CalendarUpgradeReceiver.java | 68 if (context.getDatabasePath(helper.getDatabaseName()).exists()) {
|
/packages/providers/TvProvider/src/com/android/providers/tv/ |
H A D | TvProviderUpgradeReceiver.java | 70 if (context.getDatabasePath(helper.getDatabaseName()).exists()) {
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
H A D | FileUtil.java | 46 if (!testFile.exists()) { 81 if (root.exists()) {
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
H A D | LockableFileWriter.java | 64 * If the file exists, it is overwritten. 101 * If the file exists, it is overwritten. 195 if (!lockDir.exists()) { 214 lockFile.getAbsolutePath() + " exists"); 231 boolean fileExistedAlready = file.exists();
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
H A D | BluetoothPbapRequestPullPhoneBook.java | 112 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) {
|
H A D | BluetoothPbapRequestPullVcardListing.java | 98 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) {
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/ |
H A D | Device.java | 57 if (f.exists()) { 72 LogUtils.w(Logging.LOG_TAG, f.getAbsolutePath() + ": File exists, but can't read?" +
|
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
H A D | MockFolder.java | 54 public boolean exists() { method in class:MockFolder
|