Searched refs:INSTANCE (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Email/src/org/apache/commons/io/filefilter/
H A DDirectoryFileFilter.java30 * String[] files = dir.list( DirectoryFileFilter.INSTANCE );
55 public static final IOFileFilter INSTANCE = DIRECTORY; field in class:DirectoryFileFilter
H A DFalseFileFilter.java43 public static final IOFileFilter INSTANCE = FALSE; field in class:FalseFileFilter
H A DTrueFileFilter.java43 public static final IOFileFilter INSTANCE = TRUE; field in class:TrueFileFilter
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppPreference.java52 private static BluetoothOppPreference INSTANCE; field in class:BluetoothOppPreference
71 if (INSTANCE == null) {
72 INSTANCE = new BluetoothOppPreference();
74 if (!INSTANCE.init(context)) {
77 return INSTANCE;
H A DBluetoothOppManager.java61 private static BluetoothOppManager INSTANCE; field in class:BluetoothOppManager
113 if (INSTANCE == null) {
114 INSTANCE = new BluetoothOppManager();
116 INSTANCE.init(context);
118 return INSTANCE;
/packages/apps/Email/src/com/android/email/
H A DExchangeUtils.java59 ret = NullEmailService.INSTANCE;
83 public static final NullEmailService INSTANCE = new NullEmailService(); field in class:ExchangeUtils.NullEmailService
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DLocalBluetoothManager.java49 private static LocalBluetoothManager INSTANCE; field in class:LocalBluetoothManager
89 if (INSTANCE == null) {
90 INSTANCE = new LocalBluetoothManager();
93 if (!INSTANCE.init(context)) {
97 LocalBluetoothProfileManager.init(INSTANCE);
99 return INSTANCE;
/packages/apps/Email/src/com/android/exchange/
H A DSyncManager.java221 protected static SyncManager INSTANCE; field in class:SyncManager
258 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
266 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
274 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
282 IEmailServiceCallback cb = INSTANCE == null ? null: INSTANCE.mCallback;
310 SyncManager syncManager = INSTANCE;
[all...]
/packages/apps/Email/src/org/apache/commons/io/
H A DFileSystemUtils.java52 private static final FileSystemUtils INSTANCE = new FileSystemUtils(); field in class:FileSystemUtils
137 return INSTANCE.freeSpaceOS(path, OS, false);
166 return INSTANCE.freeSpaceOS(path, OS, true);
H A DFileUtils.java285 * search. Use TrueFileFilter.INSTANCE to match all directories.
302 FileFilterUtils.notFileFilter(DirectoryFileFilter.INSTANCE));
307 effDirFilter = FalseFileFilter.INSTANCE;
310 DirectoryFileFilter.INSTANCE);
331 * search. Use TrueFileFilter.INSTANCE to match all directories.
373 filter = TrueFileFilter.INSTANCE;
379 (recursive ? TrueFileFilter.INSTANCE : FalseFileFilter.INSTANCE));

Completed in 84 milliseconds