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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/input_method/
candidate_window_constants.h 12 // in the candidate window.
22 // The minimum width of candidate labels in the vertical candidate
23 // window. We use this value to prevent the candidate window from being
26 // The maximum width of candidate labels in the vertical candidate
27 // window. We use this value to prevent the candidate window from being
31 // candidate window from being too narrow when candidate lists are not shown.
34 // The width of the infolist indicator icon in the candidate window
    [all...]
candidate_view.h 18 // CandidateView renderes a row of a candidate.
25 // Initializes the candidate view with the given column widths.
32 // Sets candidate text to the given text.
44 // Selects the candidate row. Changes the appearance to make it look
45 // like a selected candidate.
48 // Unselects the candidate row. Changes the appearance to make it look
49 // like an unselected candidate.
52 // Enables or disables the candidate row based on |enabled|. Changes the
56 // Returns the relative position of the candidate label.
66 // Selects the candidate located at the point
    [all...]
candidate_window_view.h 25 // CandidateWindowView is the main container of the candidate window UI.
32 // The function is called when a candidate is committed.
55 // Selects the candidate specified by the index in the current page
56 // (zero-origin). Changes the appearance of the selected candidate,
57 // updates the information in the candidate window as needed.
60 // The function is called when a candidate is being dragged. From the
61 // given point, locates the candidate under the mouse cursor, and
65 // Commits the candidate currently being selected.
77 // Hides whole the candidate window.
95 // Returns true if we should update candidate views in the window. Fo
    [all...]
candidate_window_controller.h 5 // This file implements the input method candidate window used on Chrome OS.
18 // candidate window. Once the initialization is done, the controller
20 // daemon, and shows and hides the candidate window as neeeded. Upon
22 // rendering the candidate view is deleted.
35 // Initializes the candidate window. Returns true on success. |controller| can
40 // Shutdown the candidate window controller. |controller| can be NULL.
  /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...]
  /external/objenesis/tck/test/org/objenesis/tck/
TextReporterTest.java 41 textReporter.startTests("Some platform", Arrays.asList(new String[] {"candidate A",
42 "candidate B", "candidate C"}), Arrays.asList(new String[] {"instantiator1",
45 textReporter.startTest("candidate A", "instantiator1");
47 textReporter.startTest("candidate A", "instantiator2");
49 textReporter.startTest("candidate A", "instantiator3");
52 textReporter.startTest("candidate B", "instantiator1");
54 textReporter.startTest("candidate B", "instantiator2");
56 textReporter.startTest("candidate B", "instantiator3");
59 textReporter.startTest("candidate C", "instantiator1")
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransport.cc 97 Candidate candidate; local
99 &candidate, error)) {
103 desc->candidates.push_back(candidate);
125 for (std::vector<Candidate>::const_iterator iter = desc.candidates.begin();
142 Candidate* candidate,
144 return ParseCandidate(ICEPROTO_GOOGLE, elem, translator, candidate, error);
148 const Candidate& candidate,
    [all...]
  /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...]
  /external/clang/test/CXX/basic/basic.scope/basic.scope.hiding/
p2.cpp 5 struct X { // expected-note{{candidate found by name lookup}}
14 } X; // expected-note{{candidate found by name lookup}}
  /external/clang/test/CXX/special/class.copy/
p9.cpp 18 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note {{candidate constructor}}
19 ImplicitNonConstCopy1(); // expected-note {{candidate constructor}}
22 struct ImplicitNonConstCopy2 { // expected-note {{candidate constructor}}
23 ImplicitNonConstCopy2(); // expected-note {{candidate constructor}}
27 struct ImplicitNonConstCopy3 { // expected-note {{candidate constructor}}
28 ImplicitNonConstCopy3(); // expected-note {{candidate constructor}}
32 struct ImplicitNonConstCopy4 : VirtualInheritsNonConstCopy { // expected-note {{candidate constructor}}
33 ImplicitNonConstCopy4(); // expected-note {{candidate constructor}}
  /external/clang/test/SemaTemplate/
ambiguous-ovl-print.cpp 3 void f(void*, int); // expected-note{{candidate function}}
5 void f(T*, long); // expected-note{{candidate function}}
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.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.
26 // Initializes the candidate window. Returns true on success.
  /external/chromium_org/jingle/glue/
utils.cc 16 #include "third_party/libjingle/source/talk/p2p/base/candidate.h"
36 std::string SerializeP2PCandidate(const cricket::Candidate& candidate) {
39 value.SetString("ip", candidate.address().ipaddr().ToString());
40 value.SetInteger("port", candidate.address().port());
41 value.SetString("type", candidate.type());
42 value.SetString("protocol", candidate.protocol());
43 value.SetString("username", candidate.username());
44 value.SetString("password", candidate.password());
45 value.SetDouble("preference", candidate.preference())
    [all...]
utils.h 19 class Candidate;
33 std::string SerializeP2PCandidate(const cricket::Candidate& candidate);
35 cricket::Candidate* candidate);
  /external/clang/test/SemaCXX/
direct-initializer.cpp 16 class X { // expected-note{{candidate constructor (the implicit copy constructor)}}
18 explicit X(int); // expected-note{{candidate constructor}}
19 X(float, float, float); // expected-note{{candidate constructor}}
20 X(float, Y); // expected-note{{candidate constructor}}
23 class Z { // expected-note{{candidate constructor (the implicit copy constructor)}}
25 Z(int); // expected-note{{candidate constructor}}
43 operator int*(); // expected-note {{candidate function}}
ambig-user-defined-conversions.cpp 5 operator int &(); // expected-note {{candidate function}}
8 operator int &(); // expected-note {{candidate function}}
16 void func(const int ci, const char cc); // expected-note {{candidate function}}
17 void func(const char ci, const B b); // expected-note {{candidate function}}
18 void func(const B b, const int ci); // expected-note {{candidate function}}
27 void func2(const char cc); // expected-note {{candidate function}}
28 void func2(const int ci); // expected-note {{candidate function}}
48 void f1(A); // expected-note {{candidate function}}
49 void f1(C); // expected-note {{candidate function}}
ambiguous-conversion-show-overload.cpp 17 // CHECK-NEXT: {{candidate constructor}}
18 // CHECK-NEXT: {{candidate constructor}}
19 // CHECK-NEXT: {{candidate constructor}}
20 // CHECK-NEXT: {{candidate constructor}}
builtin-ptrtomember-ambig.cpp 22 // expected-note {{built-in candidate operator->*(const struct A *, const int struct A::*)}} \
23 // expected-note {{built-in candidate operator->*(const struct A *, int struct A::*)}} \
24 // expected-note {{built-in candidate operator->*(struct A *, const int struct A::*)}} \
25 // expected-note {{built-in candidate operator->*(struct A *, int struct A::*)}}
ambiguous-builtin-unary-operator.cpp 17 // expected-note {{built-in candidate operator++(int &)}} \
18 // expected-note {{built-in candidate operator++(long &)}} \
19 // expected-note {{built-in candidate operator++(long *&)}} \
20 // expected-note {{built-in candidate operator++(int *&)}}
31 // expected-note {{built-in candidate operator++(volatile int &)}} \
32 // expected-note {{built-in candidate operator++(volatile long &)}}
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsepicecandidate.h 37 #include "talk/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...]
  /external/clang/test/CXX/over/over.over/
p4.cpp 3 template<typename T> T f0(T); // expected-note{{candidate function}}
4 int f0(int); // expected-note{{candidate function}}
13 int f0(int); // expected-note{{candidate function}}
p2.cpp 4 T f0(T, T); // expected-note{{candidate}} expected-note{{candidate function}}
  /external/chromium_org/remoting/protocol/
jingle_messages.cc 49 JingleMessage::NamedCandidate* candidate) {
50 DCHECK(element->Name() == QName(kP2PTransportNamespace, "candidate"));
78 candidate->name = name;
80 candidate->candidate.set_address(talk_base::SocketAddress(address, port));
81 candidate->candidate.set_type(type);
82 candidate->candidate.set_protocol(protocol);
83 candidate->candidate.set_username(username)
252 NamedCandidate candidate; local
    [all...]
  /external/chromium_org/content/renderer/media/
mock_web_rtc_peer_connection_handler_client.cc 33 const WebKit::WebRTCICECandidate& candidate) {
34 if (!candidate.isNull()) {
35 candidate_sdp_ = UTF16ToUTF8(candidate.candidate());
36 candidate_mline_index_ = candidate.sdpMLineIndex();
37 candidate_mid_ = UTF16ToUTF8(candidate.sdpMid());
  /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) {

Completed in 1761 milliseconds

1 2 3 4 5 6 7 8 91011>>