HomeSort by relevance Sort by last modified time
    Searched full:candidate (Results 51 - 75 of 1480) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/input_method/
candidate_window_controller.h 5 // This file implements the input method candidate window used on Chrome OS.
16 // candidate window. Once the initialization is done, the controller
18 // daemon, and shows and hides the candidate window as neeeded. Upon
20 // rendering the candidate view is deleted.
  /external/chromium_org/third_party/skia/src/core/
SkTDynamicHash.h 39 T* candidate = fArray[index]; local
40 if (Empty() == candidate) {
43 if (Deleted() != candidate && Equal(*candidate, key)) {
44 return candidate;
79 const T* candidate = fArray[index]; local
80 if (Empty() == candidate || Deleted() == candidate || Equal(*candidate, key)) {
160 const T* candidate = fArray[index] local
178 const T* candidate = fArray[index]; local
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p5.cpp 4 struct x {}; // expected-note {{candidate found by name lookup is 'A::x'}}
5 int x; // expected-note {{candidate found by name lookup is 'A::x'}}
14 struct x {}; // expected-note {{candidate found by name lookup is 'B::x'}}
15 float x; // expected-note {{candidate found by name lookup is 'B::x'}}
p2.cpp 4 int zero = 0; // expected-note {{candidate found by name lookup is 'Ints::zero'}}
5 void f(int); // expected-note 3 {{candidate function}}
10 float zero = 0.0f; // expected-note {{candidate found by name lookup is 'Floats::zero'}}
11 void f(float); // expected-note 3 {{candidate function}}
34 struct Number { // expected-note 2 {{candidate}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p3.cpp 4 auto lambda = [i]() -> void {}; // expected-note 3{{candidate constructor}}
  /external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
p3-0x.cpp 9 operator typename identity<T>::type(); // expected-note{{candidate}}
  /external/clang/test/SemaCXX/
address-space-references.cpp 6 void f0(int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
7 // expected-note{{candidate function not viable: 1st argument ('int_2' (aka '__attribute__((address_space(2))) int')) is in address space 2, but parameter must be in address space 1}}
8 void f0(const int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in address space 0, but parameter must be in address space 1}} \
9 // expected-note{{candidate function not viable: 1st argument ('int_2' (aka '__attribute__((address_space(2))) int')) is in address space 2, but parameter must be in address space 1}}
attr-unavailable.cpp 3 int &foo(int); // expected-note {{candidate}}
4 double &foo(double); // expected-note {{candidate}}
5 void foo(...) __attribute__((__unavailable__)); // expected-note {{candidate function}} \
26 void foo() FOO; // expected-note {{candidate function has been explicitly made unavailable}}
complex-overload.cpp 30 char *promote_or_convert(double _Complex); // expected-note{{candidate function}}
31 int *promote_or_convert(long double _Complex); // expected-note{{candidate function}}
45 char *promote_or_convert3(int _Complex); // expected-note {{candidate}}
46 int *promote_or_convert3(long _Complex); // expected-note {{candidate}}
unused-with-error.cpp 4 static void foo(int *X) { // expected-note {{candidate}}
  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 4 template<typename T> class vector { }; // expected-note{{candidate}}
constructor-template.cpp 2 struct X0 { // expected-note{{candidate}}
3 X0(int); // expected-note{{candidate}}
4 template<typename T> X0(T); // expected-note {{candidate}}
5 template<typename T, typename U> X0(T*, U*); // expected-note {{candidate}}
8 template<typename T> X0() : f0(T::foo) {} // expected-note {{candidate}}
55 X2(); // expected-note{{candidate constructor}}
56 X2(X2&); // expected-note {{candidate constructor}}
  /external/skia/src/core/
SkTDynamicHash.h 39 T* candidate = fArray[index]; local
40 if (Empty() == candidate) {
43 if (Deleted() != candidate && Equal(*candidate, key)) {
44 return candidate;
79 const T* candidate = fArray[index]; local
80 if (Empty() == candidate || Deleted() == candidate || Equal(*candidate, key)) {
160 const T* candidate = fArray[index] local
178 const T* candidate = fArray[index]; local
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
overload12_1.cpp 2 // Testcase for not trying a candidate that would generate an ill-formed
  /ndk/tests/device/test-stlport_static-exception/jni/
overload12_1.cpp 2 // Testcase for not trying a candidate that would generate an ill-formed
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCIceCandidate.cpp 43 String candidate; local
44 bool ok = dictionary.get("candidate", candidate);
45 if (!ok || !candidate.length()) {
56 return adoptRef(new RTCIceCandidate(blink::WebRTCICECandidate(candidate, sdpMid, sdpMLineIndex)));
70 String RTCIceCandidate::candidate() const function in class:WebCore::RTCIceCandidate
72 return m_webCandidate.candidate();
RTCIceCandidateEvent.cpp 39 PassRefPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate)
41 return adoptRef(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
49 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate)
51 , m_candidate(candidate)
60 RTCIceCandidate* RTCIceCandidateEvent::candidate() const function in class:WebCore::RTCIceCandidateEvent
  /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/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);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepsessiondescription.cc 112 const IceCandidateInterface* candidate) {
113 if (!candidate || candidate->sdp_mline_index() < 0)
116 if (!GetMediasectionIndex(candidate, &mediasection_index)) {
121 if (candidate_collection_[mediasection_index].HasCandidate(candidate)) {
122 return true; // Silently ignore this candidate if we already have it.
132 cricket::Candidate updated_candidate = candidate->candidate();
141 new JsepIceCandidate(candidate->sdp_mid()
    [all...]
jsepicecandidate.cc 63 const cricket::Candidate& candidate)
66 candidate_(candidate) {
91 const IceCandidateInterface* candidate) const {
95 if ((*it)->sdp_mid() == candidate->sdp_mid() &&
96 (*it)->sdp_mline_index() == candidate->sdp_mline_index() &&
97 (*it)->candidate().IsEquivalent(candidate->candidate())) {
  /external/objenesis/tck/test/org/objenesis/tck/
TCKTest.java 52 // Given... a TCK with some candidate classes: A, B and C.
55 tck.registerCandidate(CandidateA.class, "Candidate A");
56 tck.registerCandidate(CandidateB.class, "Candidate B");
57 tck.registerCandidate(CandidateC.class, "Candidate C");
69 assertEquals("" + "startTests()\n" + "startTest('Candidate A', 'Instantiator1')\n"
70 + "result(false)\n" + "endTest()\n" + "startTest('Candidate A', 'Instantiator2')\n"
71 + "result(false)\n" + "endTest()\n" + "startTest('Candidate B', 'Instantiator1')\n"
72 + "result(false)\n" + "endTest()\n" + "startTest('Candidate B', 'Instantiator2')\n"
73 + "result(false)\n" + "endTest()\n" + "startTest('Candidate C', 'Instantiator1')\n"
74 + "result(false)\n" + "endTest()\n" + "startTest('Candidate C', 'Instantiator2')\n
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.cc 80 bool ContainsOnlyValidXChars(const PhoneNumber& number, const string& candidate,
89 found = candidate.find_first_of("xX");
92 while (found != string::npos && found < candidate.length() - 1) {
94 char next_char = candidate[found + 1];
100 number, candidate.substr(found, candidate.length() - found))
105 string normalized_extension(candidate.substr(found,
106 candidate.length() - found));
112 found = candidate.find_first_of("xX", found + 1);
406 bool PhoneNumberMatcher::ParseAndVerify(const string& candidate, int offset
640 string candidate; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transport.cc 32 #include "talk/p2p/base/candidate.h"
43 ChannelParams() : channel(NULL), candidate(NULL) {}
45 : name(name), channel(NULL), candidate(NULL) {}
49 channel(NULL), candidate(NULL) {}
50 explicit ChannelParams(cricket::Candidate* candidate) :
51 channel(NULL), candidate(candidate) {
52 name = candidate->name();
56 delete candidate;
62 cricket::Candidate* candidate; member in struct:cricket::ChannelParams
    [all...]
p2ptransportchannel.h 29 // two P2P clients. Clients have candidate ports for connecting, and
31 // Bob each have candidates, one candidate from Alice and one candidate from
44 #include "talk/p2p/base/candidate.h"
53 // Adds the port on which the candidate originated.
54 class RemoteCandidate : public Candidate {
56 RemoteCandidate(const Candidate& c, Port* origin_port)
57 : Candidate(c), origin_port_(origin_port) {}
99 virtual void OnCandidate(const Candidate& candidate);
    [all...]

Completed in 1384 milliseconds

1 23 4 5 6 7 8 91011>>