Searched defs:algorithm (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DSSLSocketFactory.java178 String algorithm,
187 if (algorithm == null) {
188 algorithm = TLS;
198 sslcontext = SSLContext.getInstance(algorithm);
177 SSLSocketFactory( String algorithm, final KeyStore keystore, final String keystorePassword, final KeyStore truststore, final SecureRandom random, final HostNameResolver nameResolver) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DContactMatcher.java56 // Maximum number of characters in a name to be considered by the matching algorithm.
84 * We use a string matching algorithm, which is particularly suited for
194 int nameType, String name, int algorithm) {
205 if (algorithm == MATCHING_ALGORITHM_EXACT) {
225 NameDistance nameDistance = algorithm == MATCHING_ALGORITHM_CONSERVATIVE ?
193 matchName(long contactId, int candidateNameType, String candidateName, int nameType, String name, int algorithm) argument
H A DRawContactMatcher.java57 // Maximum number of characters in a name to be considered by the matching algorithm.
88 * We use a string matching algorithm, which is particularly suited for
192 candidateNameType, String candidateName, int nameType, String name, int algorithm) {
203 if (algorithm == MATCHING_ALGORITHM_EXACT) {
223 NameDistance nameDistance = algorithm == MATCHING_ALGORITHM_CONSERVATIVE ?
191 matchName(long rawContactId, long contactId, long accountId, int candidateNameType, String candidateName, int nameType, String name, int algorithm) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java865 MatchCandidateList candidates, ContactMatcher matcher, int algorithm, String limit) {
881 nameType, name, algorithm);
864 matchAllCandidates(SQLiteDatabase db, String selection, MatchCandidateList candidates, ContactMatcher matcher, int algorithm, String limit) argument
H A DContactAggregator2.java739 MatchCandidateList candidates, RawContactMatcher matcher, int algorithm, String limit) {
757 candidate.mName, nameType, name, algorithm);
738 matchAllCandidates(SQLiteDatabase db, String selection, MatchCandidateList candidates, RawContactMatcher matcher, int algorithm, String limit) argument
H A DAbstractContactAggregator.java202 * Captures a potential match for a given name. The matching algorithm
248 * A convenience class used in the algorithm that figures out which of available
1228 MatchCandidateList candidates, ContactMatcher matcher, int algorithm, String limit) {
1244 nameType, name, algorithm);
1227 matchAllCandidates(SQLiteDatabase db, String selection, MatchCandidateList candidates, ContactMatcher matcher, int algorithm, String limit) argument

Completed in 101 milliseconds