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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /external/webrtc/talk/app/webrtc/objc/
RTCICECandidate+Internal.h 35 webrtc::IceCandidateInterface* candidate; variable
37 - (id)initWithCandidate:(const webrtc::IceCandidateInterface*)candidate;
RTCICECandidate.mm 66 - (id)initWithCandidate:(const webrtc::IceCandidateInterface*)candidate {
69 if (candidate->ToString(&sdp)) {
70 _sdpMid = @(candidate->sdp_mid().c_str());
71 _sdpMLineIndex = candidate->sdp_mline_index();
81 - (const webrtc::IceCandidateInterface*)candidate {
  /external/elfutils/lib/
next_prime.c 33 /* Test whether CANDIDATE is a prime. */
35 is_prime (size_t candidate)
41 while (sq < candidate && candidate % divn != 0)
51 return candidate % divn != 0;
  /external/webrtc/talk/app/webrtc/
jsepicecandidate.h 36 #include "webrtc/p2p/base/candidate.h"
45 const cricket::Candidate& candidate);
49 void SetCandidate(const cricket::Candidate& candidate) {
50 candidate_ = candidate;
55 virtual const cricket::Candidate& candidate() const { function in class:webrtc::JsepIceCandidate
64 cricket::Candidate candidate_;
77 virtual bool HasCandidate(const IceCandidateInterface* candidate) const
    [all...]
jsepicecandidate.cc 57 const cricket::Candidate& candidate)
60 candidate_(candidate) {
85 const IceCandidateInterface* candidate) const {
89 if ((*it)->sdp_mid() == candidate->sdp_mid() &&
90 (*it)->sdp_mline_index() == candidate->sdp_mline_index() &&
91 (*it)->candidate().IsEquivalent(candidate->candidate())) {
webrtcsdp.h 57 // candidate - The candidate to be serialized.
58 std::string SdpSerializeCandidate(const IceCandidateInterface& candidate);
70 // The first line must be a=candidate line and only the first line will be
77 JsepIceCandidate* candidate,
jsepsessiondescription.cc 120 const IceCandidateInterface* candidate) {
121 if (!candidate || candidate->sdp_mline_index() < 0)
124 if (!GetMediasectionIndex(candidate, &mediasection_index)) {
137 cricket::Candidate updated_candidate = candidate->candidate();
146 new JsepIceCandidate(candidate->sdp_mid(),
178 const IceCandidateInterface* candidate,
180 if (!candidate || !index)
    [all...]
  /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/webrtc/webrtc/api/objc/
RTCIceCandidate.mm 45 (webrtc::IceCandidateInterface *)candidate {
46 NSParameterAssert(candidate);
48 candidate->ToString(&sdp);
51 sdpMLineIndex:candidate->sdp_mline_index()
52 sdpMid:[NSString stringForStdString:candidate->sdp_mid()]];
58 webrtc::IceCandidateInterface *candidate = webrtc::CreateIceCandidate(
61 if (!candidate) {
62 RTCLog(@"Failed to create ICE candidate: %s\nline: %s",
67 return rtc::scoped_ptr<webrtc::IceCandidateInterface>(candidate);
RTCIceCandidate+Private.h 29 * ownership is taken of the native candidate.
32 (webrtc::IceCandidateInterface *)candidate;
  /external/vogar/src/vogar/
ClassAnalyzer.java 32 Method candidate = klass.getMethod(name, parameters); local
33 int modifier = candidate.getModifiers();
34 Class<?> actualReturnType = candidate.getReturnType();
  /external/v8/src/
version.cc 16 #define CANDIDATE_STRING " (candidate)"
47 const char* candidate = IsCandidate() ? " (candidate)" : ""; local
55 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate,
59 GetMajor(), GetMinor(), GetBuild(), candidate,
69 const char* candidate = IsCandidate() ? "-candidate" : ""; local
72 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate);
75 GetMajor(), GetMinor(), GetBuild(), candidate);
  /external/v8/test/cctest/
test-version.cc 40 bool candidate, const char* soname) {
45 Version::candidate_ = candidate;
54 int patch, bool candidate,
61 SetVersion(major, minor, build, patch, candidate, "");
69 SetVersion(major, minor, build, patch, candidate, soname);
81 "0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so");
84 "1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so");
87 "1.0.0.1 (candidate) SIMULATOR", "libv8-1.0.0.1-candidate.so")
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDSignalingMessage.h 34 @property(nonatomic, readonly) RTCICECandidate *candidate; variable
36 - (instancetype)initWithCandidate:(RTCICECandidate *)candidate;
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
PictureSizeCalculator.java 115 for (Size candidate : supported) {
116 long pixels = candidate.area();
117 if (candidate.getWidth() >= target.getWidth() &&
118 candidate.getHeight() >= target.getHeight() &&
120 best = candidate;
163 for (Size candidate : supported) {
164 long area = candidate.area();
166 largestSize = candidate;
  /external/v8/src/compiler/
js-inlining-heuristic.cc 54 // Quick check on source code length to avoid parsing large candidate.
59 // Quick check on the size of the AST to avoid parsing large candidate.
102 // In the general case we remember the candidate for later.
112 // We inline at most one candidate in every iteration of the fixpoint.
119 Candidate candidate = *i; local
121 // Make sure we don't try to inline dead candidate nodes.
122 if (!candidate.node->IsDead()) {
123 Reduction r = inliner_.ReduceJSCall(candidate.node, candidate.function)
    [all...]
  /art/compiler/optimizing/
ssa_phi_elimination.cc 152 HInstruction* candidate = nullptr; local
166 } else if (candidate == nullptr) {
167 candidate = input;
168 } else if (candidate != input) {
169 candidate = nullptr;
174 // If we haven't found a candidate, check for a phi cycle. Note that we need to detect
177 if (candidate == nullptr) {
197 } else if (candidate == nullptr) {
198 candidate = input;
199 } else if (candidate != input)
    [all...]
  /external/ImageMagick/
winpath.sh 42 candidate="$temp"
46 result=$candidate
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p3.cpp 6 class C {}; // expected-note {{candidate}}
10 expected-note {{candidate}}

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>