HomeSort by relevance Sort by last modified time
    Searched full:candidates (Results 76 - 100 of 702) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java 60 * The default candidates view manager class using {@link EditText}.
72 /** Maximum number of displaying candidates par one line (full view mode) */
74 /** Maximum number of displaying candidates par one line (full view mode)(symbol)(portrait) */
76 /** Maximum number of displaying candidates par one line (full view mode)(symbol)(landscape) */
97 /** Body view of the candidates list */
108 /** Button displayed bottom of the view when there are more candidates. */
110 /** Layout for the candidates list on normal view */
112 /** Layout for the candidates list on full view */
144 /** The converter to get candidates from and notice the selected candidate to. */
146 /** Limitation of displaying candidates */
    [all...]
OpenWnnEvent.java 44 * This event makes {@link OpenWnn} to display conversion candidates from {@link ComposingText}.
51 * This event makes {@link OpenWnn} to display prediction candidates from {@link ComposingText}.
56 * List candidates (normal view).
58 * This event changes the candidates view's size
63 * List candidates (wide view).
65 * This event changes the candidates view's size
110 * Focus to the candidates view.
115 * Focus out from the candidates view.
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannelimpl.h 64 // Handles sending and receiving of candidates. The Transport
65 // receives the candidates and may forward them to the relevant
68 // Note: Since candidates are delivered asynchronously to the
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGridTemplateValue.cpp 51 Vector<String> candidates; local
57 candidates.append(it->key);
63 if (column >= coordinate.columns.initialPositionIndex && column <= coordinate.columns.finalPositionIndex && candidates.contains(it->key))
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.h 50 // Serialize SessionDescription including candidates if
51 // JsepSessionDescription has candidates.
73 // candidates - The JsepIceCandidate from the SDP string.
webrtcsession_unittest.cc 102 // Media index of candidates belonging to the first media content.
106 // Media index of candidates belonging to the second media content.
678 // If rtcp_mux is enabled we should expect 4 candidates - host and srflex
774 // new portallocator session which will allocate new set of candidates.
1298 const IceCandidateCollection* candidates = local
1331 const IceCandidateCollection* candidates = local
1376 const IceCandidateCollection* candidates = local
1422 const IceCandidateCollection* candidates = local
    [all...]
webrtcsession.cc 78 const char kInvalidCandidates[] = "Description contains invalid candidates.";
487 // from TransportProxy to start gathering ice candidates.
490 // If there are saved candidates which arrived before local description is
494 // Push remote candidates present in remote description to transport channels.
577 // Kick starting the ice candidates allocation.
636 // NOTE: Candidates allocation will be initiated only when SetLocalDescription
650 // Copy all saved candidates.
652 // We retain all received candidates.
721 LOG(LS_ERROR) << "ProcessIceMessage: ICE candidates can't be added "
1195 const IceCandidateCollection* candidates = remote_desc->candidates(m); local
1219 std::vector<cricket::Candidate> candidates; local
    [all...]
jsep.h 85 // This class represents a collection of candidates for a specific m-line.
87 // candidates for a certain m-line.
122 // Returns a collection of all candidates that belong to a certain m-line
123 virtual const IceCandidateCollection* candidates(
  /external/chromium_org/chrome/browser/chromeos/input_method/
candidate_window_controller_impl_unittest.cc 165 std::vector<IBusLookupTable::Entry>* candidates = local
167 (*candidates)[2].description_title = kSampleDescriptionTitle[2];
168 (*candidates)[2].description_body = kSampleDescriptionBody[2];
197 std::vector<IBusLookupTable::Entry>* candidates = local
199 (*candidates)[2].description_title = kSampleDescriptionTitle[2];
200 (*candidates)[2].description_body = kSampleDescriptionBody[2];
candidate_window_view.h 96 // instance, if we are going to show the same candidates as before, we
103 // Updates candidates of the candidate window from |lookup_table|.
104 // Candidates are arranged per |orientation|.
171 // The lookup table (candidates).
194 // The candidate area is where candidates are rendered.
196 // The candidate views are used for rendering candidates.
  /external/chromium_org/chrome/browser/extensions/
external_pref_loader.cc 195 // First list the potential .json candidates.
197 candidates = GetPrefsCandidateFilesFromFolder(base_path_); local
198 if (candidates.empty()) {
199 DVLOG(1) << "Extension candidates list empty";
205 for (std::set<base::FilePath>::const_iterator it = candidates.begin();
206 it != candidates.end();
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 229 private static X509Certificate[] createChain(X509Certificate signer, X509Certificate[] candidates) {
242 issuerCert = findCert(issuer, candidates);
256 private static X509Certificate findCert(Principal issuer, X509Certificate[] candidates) {
257 for (int i = 0; i < candidates.length; i++) {
258 if (issuer.equals(candidates[i].getSubjectDN())) {
259 return candidates[i];
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport_unittest.cc 41 using cricket::Candidates;
149 kIceUfrag1, kIcePwd1, cricket::ICEMODE_FULL, NULL, cricket::Candidates());
161 kIceUfrag1, kIcePwd1, cricket::ICEMODE_FULL, NULL, cricket::Candidates());
180 kIceUfrag1, kIcePwd1, cricket::ICEMODE_LITE, NULL, cricket::Candidates());
185 kIceUfrag1, kIcePwd1, cricket::ICEMODE_FULL, NULL, cricket::Candidates());
199 kIceUfrag1, kIcePwd1, cricket::ICEMODE_FULL, NULL, cricket::Candidates());
209 kIceUfrag1, kIcePwd1, cricket::ICEMODE_LITE, NULL, cricket::Candidates());
218 // Tests that we can properly serialize/deserialize candidates.
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 20 /// \brief Specifies which overload candidates to display when overload
24 Ovl_Best ///< Show just the "best" overload candidates.
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 53 * The width to draw candidates.
96 * If true, update the arrow status when drawing candidates.
128 * The Drawable used to display as separators between candidates.
133 * Color to draw normal candidates generated by IME.
138 * Color to draw normal candidates Recommended by application.
143 * Color to draw the normal(not highlighted) candidates, it can be one of
149 * Color to draw the active(highlighted) candidates, including candidates
150 * from IME and candidates from application.
155 * Text size to draw candidates generated by IME
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())
  /external/chromium_org/android_webview/browser/
icon_helper.h 41 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader.cc 45 const std::vector<content::FaviconURL>& candidates) OVERRIDE;
77 const std::vector<content::FaviconURL>& candidates) {
86 for (iter = candidates.begin(); iter != candidates.end(); ++iter) {
  /external/chromium_org/third_party/WebKit/ManualTests/autocorrection/
dismiss-multiple-guesses.html 37 <p>After seeing the panel with multiple candidates, pressing ESC key to dismiss the panel.</p>
select-from-multiple-guesses.html 37 <p>After seeing the panel with multiple candidates, use left and/or right arrow key to select the desired candidate, and then use return key to confirm. You can also use this test to test that pressing ESC key will dismiss the panel.</p>
  /external/chromium_org/third_party/icu/source/common/
dictbe.cpp 114 int count; // Count of candidates
116 int32_t offset; // Offset in the text of these candidates
124 // Fill the list of candidates if needed, select the longest, and return the number found
125 int candidates( UText *text, const TrieWordDictionary *dict, int32_t rangeEnd );
151 PossibleWord::candidates( UText *text, const TrieWordDictionary *dict, int32_t rangeEnd ) { function in class:PossibleWord
268 int candidates = words[wordsFound%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd); local
271 if (candidates == 1) {
277 else if (candidates > 1) {
284 if (words[(wordsFound+1)%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd) > 0)
345 int candidates = words[(wordsFound+1)%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd); local
    [all...]
  /external/chromium_org/third_party/mesa/src/bin/
get-pick-list.sh 3 # Script for generating a list of candidates for cherry-picking to a stable branch
  /external/mesa3d/bin/
get-pick-list.sh 3 # Script for generating a list of candidates for cherry-picking to a stable branch
  /external/objenesis/tck/src/org/objenesis/tck/
TCK.java 57 private final List candidates = new ArrayList(); field in class:TCK
67 candidates.add(candidateClass);
88 reporter.startTests(describePlatform(), findAllDescriptions(candidates, descriptions),
91 for(Iterator i = candidates.iterator(); i.hasNext();) {

Completed in 250 milliseconds

1 2 34 5 6 7 8 91011>>