Searched refs:exists (Results 1 - 25 of 118) sorted by relevance

12345

/packages/services/Car/car_product/build/
H A Dcar.mk47 $(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 DFileDeleteStrategy.java73 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 DFileUtils.java121 * 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 DSizeFileComparator.java111 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 DFileUtil.java35 if (!directory.exists() || !directory.isDirectory()) {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DSimpleTempStorage.java67 } 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 DImapTempFileLiteral.java105 if (!isDestroyed() && mFile.exists()) {
121 return mFile.exists();
/packages/services/Telephony/src/com/android/phone/common/mail/store/imap/
H A DImapTempFileLiteral.java105 if (!isDestroyed() && mFile.exists()) {
121 return mFile.exists();
/packages/apps/Browser2/src/org/chromium/webview_shell/
H A DWebViewLayoutTest.java114 if (jsTestFile.exists()) return;
152 if (fileOut.exists() && !overwrite) {
159 if (!filePath.exists()) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
H A DDataExporter.java102 if (!directory.exists()) {
112 return getOutputDirectory(context).exists();
120 if (!file.exists()) return;
/packages/services/Telephony/src/com/android/phone/
H A DCallTime.java199 if (file.exists() == false) {
207 if (file.exists() == true) {
212 if (file.exists() == true) {
/packages/apps/Camera2/src/com/android/camera/session/
H A DSessionStorageManagerImpl.java66 if (!sessionDirectory.exists() && !sessionDirectory.mkdirs()) {
99 if (!tempFile.exists()) {
/packages/apps/Email/provider_src/com/android/email/service/
H A DImapTempFileLiteral.java108 if (!isDestroyed() && mFile.exists()) {
124 return mFile.exists();
/packages/apps/Camera2/src/com/android/camera/one/
H A DAbstractOneCamera.java74 if (!root.exists() || !root.isDirectory()) {
/packages/apps/Settings/src/com/android/settings/
H A DSettingsLicenseActivity.java53 if (!file.exists() || file.length() == 0) {
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DConfigDialogFragment.java51 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 DLicenseActivity.java56 if (!file.exists() || file.length() == 0) {
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarUpgradeReceiver.java68 if (context.getDatabasePath(helper.getDatabaseName()).exists()) {
/packages/providers/TvProvider/src/com/android/providers/tv/
H A DTvProviderUpgradeReceiver.java70 if (context.getDatabasePath(helper.getDatabaseName()).exists()) {
/packages/apps/Messaging/src/com/android/messaging/util/
H A DFileUtil.java46 if (!testFile.exists()) {
81 if (root.exists()) {
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DLockableFileWriter.java64 * 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 DBluetoothPbapRequestPullPhoneBook.java112 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) {
H A DBluetoothPbapRequestPullVcardListing.java98 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) {
/packages/apps/Email/emailcommon/src/com/android/emailcommon/
H A DDevice.java57 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 DMockFolder.java54 public boolean exists() { method in class:MockFolder

Completed in 2171 milliseconds

12345