/external/mockito/src/main/java/org/mockito/exceptions/stacktrace/ |
StackTraceCleaner.java | 24 * @param candidate element of the actual stack trace 27 boolean isIn(StackTraceElement candidate);
|
/external/objenesis/tck/src/test/resources/org/objenesis/tck/ |
CandidateLoaderTest-sample.properties | 18 org.objenesis.tck.CandidateLoaderTest$A = A candidate 19 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/mockito/src/main/java/org/mockito/invocation/ |
MatchableInvocation.java | 47 boolean matches(Invocation candidate); 50 * Candidate invocation has the similar method. 55 boolean hasSimilarMethod(Invocation candidate); 58 * Returns true if the candidate invocation has the same method (method name and parameter types) 62 boolean hasSameMethod(Invocation candidate);
|
/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/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/junit/src/main/java/org/junit/experimental/theories/ |
ParameterSignature.java | 66 public boolean canAcceptValue(Object candidate) { 67 return (candidate == null) ? !type.isPrimitive() : canAcceptType(candidate.getClass()); 70 public boolean canAcceptType(Class<?> candidate) { 71 return type.isAssignableFrom(candidate) || 72 isAssignableViaTypeConversion(type, candidate); 75 public boolean canPotentiallyAcceptType(Class<?> candidate) { 76 return candidate.isAssignableFrom(type) || 77 isAssignableViaTypeConversion(candidate, type) || 78 canAcceptType(candidate); 116 Annotation candidate = findDeepAnnotation(each.annotationType() local [all...] |
/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/src/compiler/ |
js-inlining-heuristic.cc | 52 // Quick check on the size of the AST to avoid parsing large candidate. 71 // Check if the {node} is an appropriate candidate for inlining. 73 Candidate candidate; local 74 candidate.node = node; 75 candidate.num_functions = 76 CollectFunctions(callee, candidate.functions, kMaxCallPolymorphism); 77 if (candidate.num_functions == 0) { 79 } else if (candidate.num_functions > 1 && !FLAG_polymorphic_inlining) { 89 for (int i = 0; i < candidate.num_functions; ++i) 156 Candidate candidate = *i; local [all...] |
/packages/apps/ManagedProvisioning/tools/java/com/android/managedprovisioning/tools/anim/ |
SwiperThemeGenerator.java | 44 int candidate = colorMatcher.findClosestColor(color); local 45 if (seen.add(candidate)) { 46 String colorHex = String.format("%02x%02x%02x", Color.red(candidate), 47 Color.green(candidate), Color.blue(candidate));
|
/external/mockito/src/main/java/org/mockito/internal/invocation/ |
InvocationMatcher.java | 80 public boolean matches(Invocation candidate) { 81 return invocation.getMock().equals(candidate.getMock()) && hasSameMethod(candidate) && argumentsMatch(candidate); 88 public boolean hasSimilarMethod(Invocation candidate) { 90 String candidateMethodName = candidate.getMethod().getName(); 95 if (candidate.isVerified()) { 98 if (getInvocation().getMock() != candidate.getMock()) { 101 if (hasSameMethod(candidate)) { 105 return !argumentsMatch(candidate); [all...] |
/external/desugar/java/com/google/devtools/common/options/ |
GenericTypeHelper.java | 91 Type candidate = matchTypeVariable(type, variable); local 92 if (candidate != null) { 93 return candidate; 98 candidate = matchTypeVariable(interfaceType, variable); 99 if (candidate != null) { 100 return candidate;
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
ARDSignalingMessage.h | 34 @property(nonatomic, readonly) RTCICECandidate *candidate; variable 36 - (instancetype)initWithCandidate:(RTCICECandidate *)candidate;
|