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

1 2 3

  /external/guava/src/com/google/common/collect/
RegularImmutableSet.java 50 Object candidate = table[i & mask]; local
51 if (candidate == null) {
54 if (candidate.equals(target)) {
RegularImmutableMap.java 79 Object candidate = table[index]; local
80 if (candidate == null) {
83 if (candidate.equals(key)) {
  /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) {
206 const struct grapheme_break_property *candidate = vcandidate; local
208 if (key < candidate->range_start) {
210 } else if (key > candidate->range_end) {
250 const struct mirroring_property *candidate = vcandidate; local
252 if (key < candidate->a) {
254 } 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 381 wnnWordSearch.candidate = focusString.toString();
384 wnnWordSearch.candidate = focusPairString.toString();
550 int len = getword.candidate.length();
554 if (searchword.candidate.equals(getword.candidate)) {
557 delword.candidate = searchword.candidate;
658 UserDictionaryToolsListFocus candidate = new UserDictionaryToolsListFocus(this); local
659 candidate.setId(i+MAX_WORD_COUNT);
660 candidate.setWidth(system_width/2)
    [all...]
UserDictionaryToolsEdit.java 77 /** The constant for notifying dialog (The length of specified stroke or candidate exceeds the limit) */
151 mBeforeEditWnnWord.candidate = ((TextView)sFocusingPairView).getText().toString();
198 /* Text changed listener for the candidate text */
251 String candidate = mCandidateEditText.getText().toString(); local
252 if (addDictionary(stroke, candidate)) {
263 String candidate = mCandidateEditText.getText().toString(); local
264 if (addDictionary(stroke, candidate)) {
267 addDictionary(mBeforeEditWnnWord.stroke, mBeforeEditWnnWord.candidate);
335 * @param candidate The string of the word
338 private boolean addDictionary(String stroke, String candidate) {
    [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/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/wpa_supplicant/
preauth.c 40 * pmksa_candidate_free - Free all entries in PMKSA candidate list
290 * Go through the PMKSA candidates and start pre-authentication if a candidate
296 struct rsn_pmksa_candidate *candidate; local
301 /* TODO: drop priority for old candidate entries */
303 wpa_msg(sm->ctx->ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
316 candidate = sm->pmksa_candidates;
317 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL);
318 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
321 "candidate " MACSTR
323 MAC2STR(candidate->bssid))
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
preauth.c 42 * pmksa_candidate_free - Free all entries in PMKSA candidate list
290 * Go through the PMKSA candidates and start pre-authentication if a candidate
296 struct rsn_pmksa_candidate *candidate; local
301 /* TODO: drop priority for old candidate entries */
303 wpa_msg(sm->ctx->ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
317 candidate = sm->pmksa_candidates;
318 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL);
319 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
322 "candidate " MACSTR
324 MAC2STR(candidate->bssid))
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 41 * pmksa_candidate_free - Free all entries in PMKSA candidate list
287 * Go through the PMKSA candidates and start pre-authentication if a candidate
293 struct rsn_pmksa_candidate *candidate, *n; local
298 /* TODO: drop priority for old candidate entries */
300 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
312 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates,
315 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL);
316 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
319 "candidate " MACSTR
321 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/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 526 CSSFontFace* candidate = familyFontFaces->at(i).get(); local
527 unsigned candidateTraitsMask = candidate->traitsMask();
534 // of small-caps synthesis and just ignore the font face as a candidate.
535 if (candidate->hasSVGFontFaceSource() && (traitsMask & FontVariantSmallCapsMask) && !(candidateTraitsMask & FontVariantSmallCapsMask))
538 candidateFontFaces.append(candidate);
544 CSSFontFace* candidate = familyLocallyInstalledFontFaces->at(i).get(); local
545 unsigned candidateTraitsMask = candidate->traitsMask();
550 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...]
  /libcore/luni/src/main/java/java/lang/
Runtime.java 379 String candidate = directory + filename; local
380 candidates.add(candidate);
381 if (new File(candidate).exists()) {
382 String error = nativeLoad(candidate, loader);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 311 File candidate = null; local
314 candidate = new File(directory, filename + "-" + i + "."
317 if (candidate.createNewFile()) break;
320 + candidate.getAbsolutePath(), e);
324 if (!candidate.exists() || !candidate.isFile()) {
328 candidate.setReadable(true, false);
329 candidate.setWritable(true, false);
332 FileOutputStream fos = new FileOutputStream(candidate);
341 + candidate.getAbsolutePath(), e)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 147 // pull the candidate string out of the full text rather than body
149 String candidate = mFullText.substring(start, end); local
150 if (tp.measureText(candidate) > textFieldWidth) {
152 // do not use this "candidate"
159 candidate,

Completed in 1130 milliseconds

1 2 3