/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine_interface.h | 93 struct Candidate { 94 Candidate(); 95 virtual ~Candidate(); 102 std::vector<Candidate> candidates; 144 // Called when the user clicks on an item in the candidate list. 187 // This function returns the current property of the candidate window. 193 // Change the property of the candidate window and repaint the candidate 198 // Show or hide the candidate window. 201 // Set the text that appears as a label in the candidate window [all...] |
/external/chromium_org/remoting/host/ |
resizing_host_observer.cc | 25 CandidateResolution(const ScreenResolution& candidate, 27 : resolution_(candidate) { 29 CHECK(!candidate.IsEmpty()); 32 // The client scale factor is the smaller of the candidate:preferred ratios 34 if ((candidate.dimensions().width() > preferred.dimensions().width()) || 35 (candidate.dimensions().height() > preferred.dimensions().height())) { 38 candidate.dimensions().width(); 41 candidate.dimensions().height(); 49 // of the two aspect ratios (candidate and preferred) to the larger. The 55 static_cast<float>(candidate.dimensions().width()) [all...] |
/external/clang/test/SemaTemplate/ |
overload-candidates.cpp | 4 const T& min(const T&, const T&); // expected-note{{candidate template ignored: deduced conflicting types for parameter 'T' ('int' vs. 'long')}} 11 R *dyn_cast(const T&); // expected-note{{candidate template ignored: couldn't infer template argument 'R'}} 18 void get(const T&); // expected-note{{candidate template ignored: invalid explicitly-specified argument for template parameter 'I'}} 20 void get(const T&); // expected-note{{candidate template ignored: invalid explicitly-specified argument for 1st template parameter}} 27 typename T::type get_type(const T&); // expected-note{{candidate template ignored: substitution failure [with T = int *]: type 'int *' cannot be used prior to '::'}} 29 void get_type(T *, int[(int)sizeof(T) - 9] = 0); // expected-note{{candidate template ignored: substitution failure [with T = int]: array size is negative}} 37 const T& min(const T&, const T&); // expected-note{{candidate template ignored: deduced conflicting types for parameter 'T' ('int' vs. 'long')}} 48 template<typename T> typename boost::enable_if<sizeof(T) == 4, int>::type if_size_4(); // expected-note{{candidate template ignored: disabled by 'enable_if' [with T = char]}} 56 template<typename T> typename llvm::enable_if<is_int<T> >::type if_int(); // expected-note{{candidate template ignored: disabled by 'enable_if' [with T = char]}} 77 void foo(NS2::array<A>); // expected-note{{candidate template ignored: could not match 'NS2::array' against 'NS1::array'} [all...] |
explicit-instantiation.cpp | 19 template <typename U> T f0(T, U) { return T(); } // expected-note {{candidate template ignored: could not match 'int (int, U)' against 'int (int) const'}} \ 20 // expected-note {{candidate template ignored: could not match 'int' against 'int *'}} 28 struct NotDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor)}} 29 NotDefaultConstructible(int); // expected-note{{candidate constructor}} 52 template<typename T, typename U> void f2(T, U*) { } // expected-note{{candidate}} 53 template<typename T, typename U> void f2(T*, U) { } // expected-note{{candidate}} 63 void print_type() {} // expected-note {{candidate template ignored: could not match 'void ()' against 'void (float *)'}} 69 void print_type(T *) {} // expected-note {{candidate template ignored: could not match 'void (int *)' against 'void (float *)'}}
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
CandidateTextView.java | 45 /** Maximum width of candidate view */ 49 /** Minimum width of candidate view */ 67 * @param candidateMinimumHeight Minimum height of candidate view 68 * @param candidateMinimumWidth Minimum width of candidate view 69 * @param maxWidth Maximum width of candidate view 89 * Textview is set to the best content for the display of candidate. 90 * @param WnnWord candidate 91 * @param wordCount candidate id 100 setText(word.candidate); 115 * @param WnnWord candidate wor [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/ |
testsdpstrings.h | 54 "a=candidate:0 1 UDP 2112946431 172.16.191.1 61725 typ host\r\n" 55 "a=candidate:2 1 UDP 2112487679 172.16.131.1 58798 typ host\r\n" 56 "a=candidate:4 1 UDP 2113667327 10.0.254.2 58122 typ host\r\n" 57 "a=candidate:5 1 UDP 1694302207 74.95.2.170 36993 typ srflx raddr " 59 "a=candidate:0 2 UDP 2112946430 172.16.191.1 55025 typ host\r\n" 60 "a=candidate:2 2 UDP 2112487678 172.16.131.1 63576 typ host\r\n" 61 "a=candidate:4 2 UDP 2113667326 10.0.254.2 50962 typ host\r\n" 62 "a=candidate:5 2 UDP 1694302206 74.95.2.170 41028 typ srflx raddr" 68 "a=candidate:0 1 UDP 2112946431 172.16.191.1 62017 typ host\r\n" 69 "a=candidate:2 1 UDP 2112487679 172.16.131.1 59741 typ host\r\n [all...] |
/external/clang/test/SemaCXX/ |
addr-of-overloaded-function-casting.cpp | 4 void f(); // expected-note 9{{candidate function}} 5 void f(int); // expected-note 9{{candidate function}} 8 void t(T); // expected-note 6{{candidate function}} \ 9 // expected-note 3{{candidate template ignored: could not match 'void' against 'int'}} 11 void t(T *); // expected-note 6{{candidate function}} \ 12 // expected-note 3{{candidate template ignored: could not match 'void' against 'int'}}
|
converting-constructor.cpp | 15 void f(X); // expected-note{{candidate function}} 30 class FromShortExplicitly { // expected-note{{candidate constructor (the implicit copy constructor)}}
|
overload-call.cpp | 11 int* g(int, float, int); // expected-note {{candidate function}} 12 float* g(int, int, int); // expected-note {{candidate function}} 13 double* g(int, float, float); // expected-note {{candidate function}} 14 char* g(int, float, ...); // expected-note {{candidate function}} 129 int* multiparm(long, int, long); // expected-note {{candidate function}} 130 float* multiparm(int, int, int); // expected-note {{candidate function}} 131 double* multiparm(int, int, short); // expected-note {{candidate function}} 169 void quals_rank3(int const * const * const volatile * p); // expected-note{{candidate function}} 170 void quals_rank3(int const * const volatile * const * p); // expected-note{{candidate function}} 172 void quals_rank3(int const *); // expected-note{{candidate function} [all...] |
ref-init-ambiguous.cpp | 6 operator E2&(); // expected-note 3 {{candidate function}} 10 operator E2&(); // expected-note 3 {{candidate function}}
|
copy-initialization.cpp | 4 explicit X(const X&); // expected-note {{candidate constructor}} 5 X(int*); // expected-note 3{{candidate constructor}} 6 explicit X(float*); // expected-note {{candidate constructor}} 31 Foo(Foo&); // expected-note{{candidate constructor not viable}}
|
/external/chromium/chrome/browser/chromeos/input_method/ |
candidate_window.cc | 35 // Colors used in the candidate window UI. 48 // in the candidate window. 55 // The minimum width of candidate labels in the vertical candidate 56 // window. We use this value to prevent the candidate window from being 59 // The maximum width of candidate labels in the vertical candidate 60 // window. We use this value to prevent the candidate window from being 64 // VerticalCandidateLabel is used for rendering candidate text in 65 // the vertical candidate window [all...] |
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
register_app_task.cc | 64 FileTracker candidate; local 65 if (!FilterCandidates(trackers, &candidate)) { 70 if (candidate.active()) { 75 RegisterAppIntoDatabase(candidate, callback); 109 FileTracker* candidate) { 110 DCHECK(candidate); 112 *candidate = *trackers.active_tracker(); 148 *candidate = *oldest_tracker;
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
p2ptransport.h | 76 Candidate* candidate, 78 virtual bool WriteGingleCandidate(const Candidate& candidate, 87 Candidate* candidate, 90 const Candidate& candidate,
|
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 45 #include "talk/p2p/base/candidate.h" 54 // Adds the port on which the candidate originated. 55 class RemoteCandidate : public Candidate { 57 RemoteCandidate(const Candidate& c, PortInterface* origin_port) 58 : Candidate(c), origin_port_(origin_port) {} 91 virtual void OnCandidate(const Candidate& candidate); [all...] |
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.unnamed/ |
p1.cpp | 5 int i; // expected-note {{candidate}} 11 int i; // expected-note {{candidate}}
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/ |
p1-0x.cpp | 18 struct NonAggr1a { // expected-note 2 {{candidate constructor}} 19 NonAggr1a(int, int); // expected-note {{candidate constructor}} 25 NonAggr1b(const NonAggr1b &); // expected-note {{candidate constructor}} 38 // expected-note@-6 3 {{candidate constructor}} 42 struct NonAggr3 { // expected-note 3 {{candidate constructor}} 49 struct NonAggr4 { // expected-note 3 {{candidate constructor}} 56 struct NonAggr5 : Aggr { // expected-note 3 {{candidate constructor}} 65 struct NonAggr6 { // expected-note 3 {{candidate constructor}}
|
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.copy/ |
p1.cpp | 4 struct X { }; // expected-note 2{{candidate constructor}} 18 struct C { }; // expected-note 2 {{candidate constructor}}
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/ |
p4.cpp | 8 template<class T> void g(T); // expected-note{{candidate}} 9 template<class T> void g(T&); // expected-note{{candidate}}
|
/external/clang/test/SemaObjCXX/ |
gc-attributes.mm | 6 void f0(__strong A**); // expected-note{{candidate function not viable: 1st argument ('A *__weak *') has __weak ownership, but parameter has __strong ownership}} 15 void f1(__weak A**); // expected-note{{candidate function not viable: 1st argument ('A *__strong *') has __strong ownership, but parameter has __weak ownership}}
|
/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();
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
CandidateViewListener.java | 20 * Interface to notify the input method when the user clicks a candidate or 21 * makes a direction-gesture on candidate view.
|
/external/mockito/src/org/mockito/internal/configuration/injection/filter/ |
OngoingInjecter.java | 8 * Allow the ongoing injection of a mock candidate.
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_events.cc | 16 "swapin candidate", 17 "swapin candidate namespace matches", 21 "swapin merge for swapin candidate",
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
jsep.h | 41 class Candidate; 54 // Class representation of an ICE candidate. 61 // identification" as defined in [RFC 3388] for m-line this candidate is 65 // candidate is assocated with. 67 virtual const cricket::Candidate& candidate() const = 0; 68 // Creates a SDP-ized form of this candidate. 92 // Returns true if an equivalent |candidate| exist in the collection. 93 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0; 115 // Adds the specified candidate to the description [all...] |