Searched defs:suffix (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/commons/io/filefilter/
H A DSuffixFileFilter.java26 * Filters files based on the suffix (what the filename ends with).
59 * @param suffix the suffix to allow, must not be null
60 * @throws IllegalArgumentException if the suffix is null
62 public SuffixFileFilter(String suffix) { argument
63 this(suffix, IOCase.SENSITIVE);
70 * @param suffix the suffix to allow, must not be null
72 * @throws IllegalArgumentException if the suffix is null
75 public SuffixFileFilter(String suffix, IOCas argument
[all...]
H A DFileFilterUtils.java59 * @param suffix the filename suffix
60 * @return a suffix checking filter
62 public static IOFileFilter suffixFileFilter(String suffix) { argument
63 return new SuffixFileFilter(suffix);
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/util/
H A DTempPath.java35 * The prefix will be empty and the suffix will be
45 * The prefix and suffix can be set by the user.
48 * @param suffix the suffix to use. <code>null</code> gives
52 TempFile createTempFile(String prefix, String suffix) throws IOException; argument
59 * The prefix and suffix can be set by the user.
62 * @param suffix the suffix to use. <code>null</code> gives
69 TempFile createTempFile(String prefix, String suffix, argument
H A DSimpleTempStorage.java79 String suffix) throws IOException {
84 if (suffix == null) {
85 suffix = ".tmp";
94 f = new File(parent.getAbsolutePath(), prefix + n + suffix);
142 public TempFile createTempFile(String prefix, String suffix) argument
145 return SimpleTempStorage.this.createTempFile(this, prefix, suffix);
151 public TempFile createTempFile(String prefix, String suffix, argument
155 return SimpleTempStorage.this.createTempFile(this, prefix, suffix);
78 createTempFile(TempPath parent, String prefix, String suffix) argument
/packages/apps/Contacts/tests/src/com/android/contacts/util/
H A DNameConverterTests.java68 * @param suffix Expected suffix (null if not expected).
71 String givenName, String middleName, String familyName, String suffix) {
78 checkNameComponent(StructuredName.SUFFIX, suffix, structuredName);
70 assertStructuredName(String displayName, String prefix, String givenName, String middleName, String familyName, String suffix) argument
/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
H A DDeferredFileOutputStream.java77 * The temporary file suffix.
79 private String suffix; field in class:DeferredFileOutputStream
118 * @param suffix Suffix to use for the temporary file.
123 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory) argument
130 this.suffix = suffix;
163 outputFile = File.createTempFile(prefix, suffix, directory);
213 * If constructor specifying a temporary file prefix/suffix is used
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DRecognizerLogger.java190 * Delete oldest files with a given suffix, if more than MAX_FILES.
191 * @param suffix delete oldest files with this suffix.
193 private void deleteOldest(final String suffix) { argument
197 return name.startsWith("log_") && name.endsWith(suffix);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DNameSplitterTest.java314 String middleName, String familyName, String suffix) {
321 assertEquals(suffix, name.getSuffix());
325 String middleName, String familyName, String suffix) {
327 familyName, suffix, true);
331 String middleName, String familyName, String suffix, boolean givenNameFirst) {
338 name.suffix = suffix;
313 assertSplitName(String fullName, String prefix, String givenNames, String middleName, String familyName, String suffix) argument
324 assertJoinedName(String expected, String prefix, String givenNames, String middleName, String familyName, String suffix) argument
330 assertJoinedName(String expected, int nameStyle, String prefix, String givenNames, String middleName, String familyName, String suffix, boolean givenNameFirst) argument
H A DBaseContactsProvider2Test.java621 String middleName, String familyName, String suffix) {
639 assertEquals(suffix, c.getString(4));
620 assertStructuredName(long rawContactId, String prefix, String givenName, String middleName, String familyName, String suffix) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DNameSplitter.java87 public String suffix; field in class:NameSplitter.Name
101 String suffix) {
106 this.suffix = suffix;
126 return suffix;
154 suffix = values.getAsString(StructuredName.SUFFIX);
172 putValueIfPresent(values, StructuredName.SUFFIX, suffix);
191 suffix = null;
203 && TextUtils.isEmpty(suffix)
212 + " family: " + familyName + " suffix
100 Name(String prefix, String givenNames, String middleName, String familyName, String suffix) argument
558 join(String prefix, String part1, String part2, String part3, String suffix, boolean useSpace, boolean useCommaAfterPart1, boolean useCommaAfterPart3) argument
668 normalizedSuffix(String suffix) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncAdapter.java360 String suffix = null;
397 suffix = getValue();
595 ops.addName(entity, prefix, firstName, lastName, middleName, suffix, name,
1211 String middleName, String suffix, String displayName, String yomiFirstName,
1222 cvCompareString(cv, StructuredName.SUFFIX, suffix)) {
1228 builder.withValue(StructuredName.SUFFIX, suffix);
1210 addName(Entity entity, String prefix, String givenName, String familyName, String middleName, String suffix, String displayName, String yomiFirstName, String yomiLastName, String fileAs) argument

Completed in 264 milliseconds