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

1 2 3 4 5 6 7 8 910

  /external/objenesis/tck/test/org/objenesis/tck/
CandidateLoaderTest-sample.properties 54 org.objenesis.tck.CandidateLoaderTest$A = A candidate
55 org.objenesis.tck.CandidateLoaderTest$B = B candidate
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
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...]
WnnClause.java 29 * @param candidate The string of the clause
34 public WnnClause(String candidate, String stroke, WnnPOS posTag, int frequency) {
35 super(candidate,
49 stem.candidate,
65 stem.candidate + fzk.candidate,
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...]
StrSegmentClause.java 36 super(clause.candidate, from, to);
CandidateFilter.java 46 String str = word.candidate;
  /external/webkit/Source/WebCore/css/
CSSNamespace.h 45 for (CSSNamespace* candidate = this; candidate; candidate = candidate->parent.get()) {
46 if (candidate->prefix == prefix)
47 return candidate;
  /external/elfutils/lib/
next_prime.c 53 /* Test whether CANDIDATE is a prime. */
55 is_prime (size_t candidate)
61 while (sq < candidate && candidate % divn != 0)
71 return candidate % divn != 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
RedEyeCandidate.java 25 public RedEyeCandidate(RedEyeCandidate candidate) {
26 mRect.set(candidate.mRect);
27 mBounds.set(candidate.mBounds);
35 public boolean equals(RedEyeCandidate candidate) {
36 if (candidate.mRect.equals(mRect)
37 && candidate.mBounds.equals(mBounds)) {
  /external/mockito/src/org/mockito/exceptions/stacktrace/
StackTraceCleaner.java 25 * @param candidate element of the actual stack trace
28 boolean isOut(StackTraceElement candidate);
  /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...]
p2ptransport.h 70 Candidate* candidate,
72 bool WriteCandidate(const Candidate& candidate,
transportchannelimpl.h 39 class Candidate;
73 const Candidate&> SignalCandidateReady;
74 virtual void OnCandidate(const Candidate& candidate) = 0;
  /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) {
  /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);
version.h 63 bool candidate, const char* soname);
  /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/test/cctest/
test-version.cc 40 bool candidate, const char* soname) {
45 Version::candidate_ = candidate;
53 int patch, bool candidate,
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
80 "0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so");
83 "1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so");
86 "1.0.0.1 (candidate) SIMULATOR", "libv8-1.0.0.1-candidate.so")
    [all...]
  /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/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p3.cpp 6 class C {}; // expected-note {{candidate}}
10 expected-note {{candidate}}
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 62 MachineBasicBlock::iterator candidate);
74 bool delayHasHazard(MachineBasicBlock::iterator candidate,
187 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate,
194 if (candidate->isImplicitDef() || candidate->isKill())
197 if (candidate->mayLoad()) {
203 if (candidate->mayStore()) {
211 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) {
212 const MachineOperand &MO = candidate->getOperand(i);
290 // return true if the candidate is a delay filler
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/
InvocationMatcher.java 77 public boolean hasSimilarMethod(Invocation candidate) {
79 String currentMethodName = candidate.getMethod().getName();
82 final boolean isUnverified = !candidate.isVerified();
83 final boolean mockIsTheSame = getInvocation().getMock() == candidate.getMock();
84 final boolean methodEquals = hasSameMethod(candidate);
90 final boolean overloadedButSameArgs = !methodEquals && safelyArgumentsMatch(candidate.getArguments());
95 public boolean hasSameMethod(Invocation candidate) {
99 Method m2 = candidate.getMethod();
  /external/skia/src/core/
SkTileGrid.h 98 T* candidate = (T*)(*tileData[tile])[pos]; local
99 if (!haveVal || (*candidate) < (*minVal)) {
100 minVal = 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/junit/src/org/junit/experimental/theories/
ParameterSignature.java 43 public boolean canAcceptType(Class<?> candidate) {
44 return type.isAssignableFrom(candidate);
75 Annotation candidate= findDeepAnnotation(each.annotationType()
77 if (candidate != null)
78 return annotationType.cast(candidate);

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 910