HomeSort by relevance Sort by last modified time
    Searched defs:candidate (Results 26 - 50 of 140) sorted by null

12 3 4 5 6

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRedEye.java 111 RedEyeCandidate candidate = (RedEyeCandidate) point; local
112 RectF rect = candidate.getRect();
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 145 // pull the candidate string out of the full text rather than body
147 String candidate = mFullText.substring(start, end); local
148 if (tp.measureText(candidate) > textFieldWidth) {
150 // do not use this "candidate"
157 candidate,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsEdit.java 77 /** The constant for notifying dialog (The length of specified stroke or candidate exceeds the limit) */
150 mBeforeEditWnnWord.candidate = ((TextView)sFocusingPairView).getText().toString();
197 /* Text changed listener for the candidate text */
250 String candidate = mCandidateEditText.getText().toString(); local
251 if (addDictionary(stroke, candidate)) {
262 String candidate = mCandidateEditText.getText().toString(); local
263 if (addDictionary(stroke, candidate)) {
266 addDictionary(mBeforeEditWnnWord.stroke, mBeforeEditWnnWord.candidate);
334 * @param candidate The string of the word
337 private boolean addDictionary(String stroke, String candidate) {
    [all...]
  /external/bison/lib/
hash.c 440 /* Return true if CANDIDATE is a prime number. CANDIDATE should be an odd
444 is_prime (size_t candidate)
449 while (square < candidate && (candidate % divisor))
456 return (candidate % divisor ? true : false);
459 /* Round a given CANDIDATE number up to the nearest prime, and return that
463 next_prime (size_t candidate)
466 if (candidate < 10)
467 candidate = 10
1073 float candidate = local
1175 size_t candidate = local
    [all...]
  /external/chromium/chrome/browser/chromeos/input_method/
input_method_util.cc 677 const std::string& candidate = candidates[i]; local
681 candidate) == 0) {
682 input_method_ids.push_back(candidate);
  /external/chromium/chrome/browser/chromeos/login/
login_utils.cc 502 const std::string& candidate = candidates[i]; local
505 candidate) == 0) {
506 language_codes.push_back(candidate);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transport.cc 32 #include "talk/p2p/base/candidate.h"
43 ChannelParams() : channel(NULL), candidate(NULL) {}
45 : name(name), channel(NULL), candidate(NULL) {}
49 channel(NULL), candidate(NULL) {}
50 explicit ChannelParams(cricket::Candidate* candidate) :
51 channel(NULL), candidate(candidate) {
52 name = candidate->name();
56 delete candidate;
62 cricket::Candidate* candidate; member in struct:cricket::ChannelParams
    [all...]
p2ptransportchannel.cc 104 // Compare the candidate information.
289 // A new candidate is available, let listeners know
291 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
305 // candidate list. If it isn't return error to the stun request.
307 const Candidate *candidate = NULL; local
311 candidate = &(*it);
315 if (candidate == NULL) {
330 Candidate new_remote_candidate = *candidate;
    [all...]
  /external/dnsmasq/src/
dhcp.c 669 struct dhcp_config *config, *candidate; local
703 for (candidate = NULL, count = 0, config = configs; config; config = config->next)
712 candidate = config;
715 return candidate;
  /external/webkit/Source/WebCore/editing/
VisiblePosition.cpp 460 static Position canonicalizeCandidate(const Position& candidate)
462 if (candidate.isNull())
464 ASSERT(candidate.isCandidate());
465 Position upstream = candidate.upstream();
468 return candidate;
478 // FIXME (9535): Canonicalizing to the leftmost candidate means that if we're at a line wrap, we will
481 // the appropriate renderer for VisiblePosition's like these, or b) canonicalize to the rightmost candidate
491 Position candidate = position.upstream(); local
492 if (candidate.isCandidate())
493 return candidate;
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.cpp 644 HTMLFormControlElement* candidate = iter->get(); local
645 if (nameForAutofill(*candidate) == nameForAutofill(*element)) {
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 170 String candidate = pm.getInstallerPackageName(packageName); local
171 ComponentName result = getErrorReportReceiver(pm, packageName, candidate);
179 candidate = SystemProperties.get(SYSTEM_APPS_ERROR_RECEIVER_PROPERTY);
180 result = getErrorReportReceiver(pm, packageName, candidate);
187 candidate = SystemProperties.get(DEFAULT_ERROR_RECEIVER_PROPERTY);
188 return getErrorReportReceiver(pm, packageName, candidate);
196 * @param receiverPackage candidate package to receive the error
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 539 NJ_CHAR candidate[ NJ_MAX_LEN + NJ_TERM_LEN ]; local
541 if( njx_get_candidate( &( work->wnnClass ), &( work->result ), candidate, sizeof( NJ_CHAR ) * ( NJ_MAX_RESULT_LEN + NJ_TERM_LEN ) ) >= 0 &&
542 convertNjCharToString( env, &str, candidate, NJ_MAX_RESULT_LEN ) >= 0 ) {
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 412 * There's no obvious candidate, so pick the first
419 int candidate = successors.get(i); local
420 if (Bits.get(workSet, candidate)) {
421 label = candidate;
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 419 * There's no obvious candidate, so pick the first
426 int candidate = successors.get(i); local
427 if (Bits.get(workSet, candidate)) {
428 label = candidate;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 419 * There's no obvious candidate, so pick the first
426 int candidate = successors.get(i); local
427 if (Bits.get(workSet, candidate)) {
428 label = candidate;
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 201 * @param leniency the leniency to use when evaluating candidate phone numbers
233 CharSequence candidate = text.subSequence(start, matcher.end()); local
238 candidate = trimAfterFirstMatch(PhoneNumberUtil.SECOND_NUMBER_START_PATTERN, candidate);
240 PhoneNumberMatch match = extractMatch(candidate, start);
245 index = start + candidate.length();
253 * Trims away any characters after the first match of {@code pattern} in {@code candidate},
256 private static CharSequence trimAfterFirstMatch(Pattern pattern, CharSequence candidate) {
257 Matcher trailingCharsMatcher = pattern.matcher(candidate);
259 candidate = candidate.subSequence(0, trailingCharsMatcher.start())
    [all...]
  /external/v8/src/arm/
code-stubs-arm.h 617 Register candidate = Register::FromAllocationIndex(i); local
618 if (candidate.is(r1)) continue;
619 if (candidate.is(r2)) continue;
620 if (candidate.is(r3)) continue;
621 return candidate;
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.h 679 Register candidate = Register::FromAllocationIndex(i); local
680 if (candidate.is(ecx)) continue;
681 if (candidate.is(r1)) continue;
682 if (candidate.is(r2)) continue;
683 if (candidate.is(r3)) continue;
684 return candidate;
  /external/v8/src/mips/
code-stubs-mips.h 618 Register candidate = Register::FromAllocationIndex(i); local
619 if (candidate.is(r1)) continue;
620 if (candidate.is(r2)) continue;
621 if (candidate.is(r3)) continue;
622 return candidate;
    [all...]
  /external/v8/src/x64/
code-stubs-x64.h 661 Register candidate = Register::FromAllocationIndex(i); local
662 if (candidate.is(rcx)) continue;
663 if (candidate.is(r1)) continue;
664 if (candidate.is(r2)) continue;
665 if (candidate.is(r3)) continue;
666 return candidate;
  /external/webkit/Source/WebCore/dom/
Position.cpp 513 // that map to the VisiblePosition between 'b' and the space. This function will return the left candidate
515 // Also, upstream() will return [boundary, 0] for any of the positions from [boundary, 0] to the first candidate
635 // that map to the VisiblePosition between 'b' and the space. This function will return the right candidate
638 // in boundary after the last candidate, where endsOfNodeAreVisuallyDistinctPositions(boundary).
1087 InlineTextBox* candidate = 0; local
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityInteractionClient.java 697 AccessibilityNodeInfo candidate = infos.get(j); local
698 if (root.getParentNodeId() == candidate.getSourceNodeId()) {
699 root = candidate;
  /external/chromium/third_party/libjingle/source/talk/base/
proxydetect.cc 450 Pathname candidate; local
459 candidate.clear();
469 candidate = path;
471 candidate.clear();
473 candidate.AppendFolder(line.substr(5));
476 if ((line.at(8) != '0') && !candidate.empty()) {
482 if (candidate.empty()) {
485 profile_path->SetPathname(candidate.pathname());
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 215 CacheResponse candidate = local
217 if (candidate == null) {
221 Map<String, List<String>> responseHeadersMap = candidate.getHeaders();
222 cachedResponseBody = candidate.getBody();
223 if (!acceptCacheResponseType(candidate)
235 this.cacheResponse = candidate;
238 this.cacheResponse = candidate;

Completed in 874 milliseconds

12 3 4 5 6