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

1 2 3 4 5 6

  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSet.java 50 Object candidate = table[i & mask]; local
51 if (candidate == null) {
54 if (candidate.equals(target)) {
  /external/harfbuzz/contrib/
harfbuzz-unicode-tables.c 18 const struct combining_property *candidate = vcandidate; local
20 if (key < candidate->range_start) {
22 } else if (key > candidate->range_end) {
50 const struct category_property *candidate = vcandidate; local
52 if (key < candidate->range_start) {
54 } else if (key > candidate->range_end) {
harfbuzz-unicode.c 68 const struct script_property *candidate = vcandidate; local
70 if (key < candidate->range_start) {
72 } else if (key > candidate->range_end) {
210 const struct grapheme_break_property *candidate = vcandidate; local
212 if (key < candidate->range_start) {
214 } else if (key > candidate->range_end) {
254 const struct mirroring_property *candidate = vcandidate; local
256 if (key < candidate->a) {
258 } else if (key > candidate->a) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnSentence.java 41 this.candidate = "";
52 this.candidate = headClause.candidate;
58 StringBuffer candidate = new StringBuffer(); local
62 candidate.append(clause.candidate);
67 this.candidate = candidate.toString();
84 this.candidate = clause.candidate;
    [all...]
WnnWord.java 28 public String candidate; field in class:WnnWord
35 /** The attribute of this word when it is assumed a candidate. */
48 * @param candidate The string of word
51 public WnnWord(String candidate, String stroke) {
52 this(0, candidate, stroke, new WnnPOS(), 0, 0);
58 * @param candidate The string of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
69 * @param candidate The string of word
73 public WnnWord(String candidate, String stroke, WnnPOS posTag)
    [all...]
UserDictionaryToolsList.java 409 wnnWordSearch.candidate = focusString.toString();
412 wnnWordSearch.candidate = focusPairString.toString();
579 int len = getword.candidate.length();
583 if (searchword.candidate.equals(getword.candidate)) {
586 delword.candidate = searchword.candidate;
697 UserDictionaryToolsListFocus candidate = new UserDictionaryToolsListFocus(this); local
698 candidate.setId(i+MAX_WORD_COUNT);
699 candidate.setWidth(system_width/2)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransport.cc 88 // Only look at local part because it might be <session><candidate>
89 // or <tranport><candidate>.
91 Candidate candidate; local
92 if (!ParseCandidate(candidate_elem, &candidate, error))
94 candidates->push_back(candidate);
101 Candidate* candidate,
110 return BadParse("candidate missing required attribute", error);
117 candidate->set_name(elem->Attr(buzz::QN_NAME))
    [all...]
  /external/objenesis/tck/src/org/objenesis/tck/
CandidateLoader.java 24 * Loads a set of candidate classes from a properties file into the TCK. <p/> The properties file
41 * Called whenever, trying to retrieve a candidate class from its name, a
44 * @param name Candidate class name
100 * Load a candidate property file
121 Class candidate = Class.forName(key, true, classloader); local
122 tck.registerCandidate(candidate, value);
  /external/skia/src/core/
SkTileGrid.h 98 T* candidate = (T*)(*tileData[tile])[pos]; local
99 if (!haveVal || (*candidate) < (*minVal)) {
100 minVal = candidate;
  /external/v8/src/
version.cc 49 #define CANDIDATE_STRING " (candidate)"
80 const char* candidate = IsCandidate() ? " (candidate)" : ""; local
88 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate,
92 GetMajor(), GetMinor(), GetBuild(), candidate,
102 const char* candidate = IsCandidate() ? "-candidate" : ""; local
105 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate);
108 GetMajor(), GetMinor(), GetBuild(), candidate);
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 132 Attribute candidate = (Attribute) field.get(null); local
133 if (name.equals(candidate.name)) {
134 return candidate;
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 191 int candidate = 0; local
200 next = (int) ((candidate + 1) * inv);
203 candidate = next;
205 return candidate;
  /external/mockito/src/org/mockito/internal/invocation/
InvocationsFinder.java 176 Invocation candidate = null; local
179 candidate = candidate != null ? candidate : i;
181 candidate = null;
184 return candidate;
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 34 * pmksa_candidate_free - Free all entries in PMKSA candidate list
280 * Go through the PMKSA candidates and start pre-authentication if a candidate
286 struct rsn_pmksa_candidate *candidate, *n; local
291 /* TODO: drop priority for old candidate entries */
293 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
305 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates,
308 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL);
309 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
312 "candidate " MACSTR
314 MAC2STR(candidate->bssid))
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 304 Class candidate = null; local
308 candidate = Class.forName (name);
310 instance = candidate.newInstance ();
314 if (candidate != null) {
317 parserClasses.add(candidate);
321 serializerClasses.add(candidate);
  /external/chromium/chrome/browser/
memory_details_linux.cc 90 bool candidate = true; local
95 candidate = false;
100 if (!candidate)
  /external/chromium/chrome/browser/profiles/
profile_manager.cc 170 Profile* candidate = iter->second->profile.get(); local
171 if (candidate->GetRuntimeId() == profile_id)
172 return candidate;
173 if (candidate->HasOffTheRecordProfile()) {
174 candidate = candidate->GetOffTheRecordProfile();
175 if (candidate->GetRuntimeId() == profile_id)
176 return candidate;
187 Profile* candidate = iter->second->profile.get(); local
188 if (candidate == profile |
    [all...]
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 61 FilePath candidate = extension_dir.AppendASCII( local
63 if (!file_util::PathExists(candidate)) {
64 version_dir = candidate;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RouteSelector.java 162 Proxy candidate = proxySelectorProxies.next(); local
163 if (candidate.type() != Proxy.Type.DIRECT) {
164 return candidate;
  /external/oprofile/opjitconv/
jitsymbol.c 210 int candidate = OP_JIT_CONV_FAIL; local
218 if (candidate == -1 || x > lifetime) {
219 candidate = i;
223 return candidate;
  /external/webkit/Source/WebCore/css/
CSSFontSelector.cpp 536 CSSFontFace* candidate = familyFontFaces->at(i).get(); local
537 unsigned candidateTraitsMask = candidate->traitsMask();
544 // of small-caps synthesis and just ignore the font face as a candidate.
545 if (candidate->hasSVGFontFaceSource() && (traitsMask & FontVariantSmallCapsMask) && !(candidateTraitsMask & FontVariantSmallCapsMask))
548 candidateFontFaces.append(candidate);
554 CSSFontFace* candidate = familyLocallyInstalledFontFaces->at(i).get(); local
555 unsigned candidateTraitsMask = candidate->traitsMask();
560 candidateFontFaces.append(candidate);
  /external/webkit/Source/WebCore/page/
FocusController.cpp 439 static void updateFocusCandidateIfNeeded(FocusDirection direction, const FocusCandidate& current, FocusCandidate& candidate, FocusCandidate& closest)
441 ASSERT(candidate.visibleNode->isElementNode());
442 ASSERT(candidate.visibleNode->renderer());
445 if (frameOwnerElement(candidate) && (!frameOwnerElement(candidate)->contentFrame() || candidate.rect.isEmpty()))
449 if (candidate.isOffscreen && !canBeScrolledIntoView(direction, candidate))
452 distanceDataForNode(direction, current, candidate);
453 if (candidate.distance == maxDistance()
509 FocusCandidate candidate = FocusCandidate(node, direction); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
FocusFinderTest.java 238 * A non-candidate (even a much closer one) is always a worse choice
239 * than a real candidate.
250 Rect candidate = new Rect(src); local
251 candidate.offset(-(4 * src.width()), 0);
252 assertDirectionIsCandidate(View.FOCUS_LEFT, src, candidate);
254 assertBetterCandidate(View.FOCUS_LEFT, src, candidate, nonCandidate);
320 * down (and not those next to but still a candidate because
457 new Rect(0, 0, 20, 1)); // candidate
462 new Rect(0, -1, 20, 0)); // candidate
467 new Rect(-1, 0, 0, 20)); // candidate
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
EnableAccessibilityController.java 235 AccessibilityServiceInfo candidate = services.get(i); local
236 if ((candidate.flags & AccessibilityServiceInfo
239 service = candidate;
  /libcore/luni/src/main/java/java/lang/
Runtime.java 370 String candidate = directory + filename; local
371 candidates.add(candidate);
373 if (IoUtils.canOpenReadOnly(candidate)) {
374 String error = doLoad(candidate, loader);

Completed in 556 milliseconds

1 2 3 4 5 6