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

1 2 3 4 5 6 78 91011>>

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
rawtransportchannel.h 82 // We don't actually worry about signaling since we can't send new candidates.
108 const std::vector<Candidate>& candidates);
session.h 92 const Candidates& sent_candidates() const { return sent_candidates_; }
98 void AddSentCandidates(const Candidates& candidates);
121 Candidates sent_candidates_;
401 // Returns a TransportInfo without candidates for each content name.
422 const Candidates& candidates);
  /external/chromium_org/content/browser/download/
download_stats.h 75 // bytes' header. These downloads are candidates for partial resumption.
164 // and ETag indicates downloads that are candidates for partial resumption.
  /external/chromium_org/remoting/protocol/
transport.h 112 // disambiguate candidates it generates from candidates generated by
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocatorsessionproxy_unittest.cc 64 const std::vector<Candidate>& candidates) {
66 candidates_count_ += static_cast<int>(candidates.size());
portproxy.cc 123 const std::vector<Candidate>& PortProxy::Candidates() const {
125 return impl_->Candidates();
rawtransportchannel.h 86 // We don't actually worry about signaling since we can't send new candidates.
120 const std::vector<Candidate>& candidates);
port.h 206 // Fired when candidates are discovered by the port. When all candidates
211 virtual const std::vector<Candidate>& Candidates() const {
215 // SignalPortComplete is sent when port completes the task of candidates
218 // This signal sent when port fails to allocate candidates and this port
220 // and port fails to allocate one of the candidates, port shouldn't send
221 // this signal as other candidates might be usefull in establishing the
  /external/chromium_org/third_party/opus/src/silk/float/
SigProc_FLP.h 93 const silk_float search_thres1, /* I First stage threshold for lag candidates 0 - 1 */
94 const silk_float search_thres2, /* I Final threshold for lag candidates 0 - 1 */
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 338 BitVector Candidates =
346 Candidates.reset(MO.getReg());
350 // it will not be in the list of candidates.
369 Available &= Candidates;
381 Reg = Candidates.find_first();
382 Candidates.reset(Reg);
396 SpReg = Candidates.find_first();
397 // Candidates.reset(SpReg); // not really needed
  /external/objenesis/tck/src/org/objenesis/tck/
TextReporter.java 30 * being read by a human. If can be reused to provide a summary reports of different candidates as
170 // Candidates (and keep the exceptions meanwhile)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_FindMVpred.c 30 * the set of three MV candidates used for prediction is also returned,
57 * return to a buffer containing the three motion vector candidates
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.h 194 /* allocates pipes to selected candidates */
221 /* allocates pipes to selected candidates */
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.h 199 /* allocates pipes to selected candidates */
227 /* allocates pipes to selected candidates */
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_mdpcomp.h 194 /* allocates pipes to selected candidates */
221 /* allocates pipes to selected candidates */
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
Environment.java 42 * The height of the candidates area for portrait mode. It is relative to
48 * The height of the candidates area for portrait mode. It is relative to
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine_ibus.cc 237 // IBus shows candidates on a page where the cursor is placed, so we need to
290 const std::vector<Candidate>& candidates,
301 // TODO: Nested candidates
305 for (std::vector<Candidate>::const_iterator ix = candidates.begin();
306 ix != candidates.end(); ++ix) {
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 234 // Find candidates responding to tap gesture events in O(n) time.
237 Vector<Node*> candidates; local
270 candidates.append(node);
275 for (unsigned i = 0; i < candidates.size(); i++) {
276 Node* candidate = candidates[i];
  /packages/apps/Dialer/src/com/android/dialer/interactions/
PhoneNumberInteraction.java 64 * Initiates phone calls or a text message. If there are multiple candidates, this class shows a
430 // There are multiple candidates. Let the user choose one.
447 * Start call action using given contact Uri. If there are multiple candidates for the phone
463 * Start call action using given contact Uri. If there are multiple candidates for the phone
499 * candidates for the phone call, dialog is automatically shown and the user is asked to choose
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_coercion.py 91 candidates = [2, 2L, 4.0, 2+0j, [1], (2,), None, variable
261 for ia, a in enumerate(candidates):
262 for ib, b in enumerate(candidates):
288 for ia, a in enumerate(candidates):
289 for ib, b in enumerate(candidates):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_coercion.py 91 candidates = [2, 2L, 4.0, 2+0j, [1], (2,), None, variable
261 for ia, a in enumerate(candidates):
262 for ib, b in enumerate(candidates):
288 for ia, a in enumerate(candidates):
289 for ib, b in enumerate(candidates):
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 122 * Called by the framework when your view for showing candidates needs to
173 // be doing predictive text (showing candidates as the
200 // candidates when in fullscreen mode, otherwise relying
231 // Clear current composing text and candidates.
235 // We only hide the candidates window when finishing input on
544 * Update the list of available candidates from the current composing
546 * candidates.
  /external/chromium_org/chrome/browser/favicon/
favicon_handler.h 74 // favicon candidates and chooses the one that best matches the preferred size
97 const std::vector<content::FaviconURL>& candidates);
268 // The prioritized favicon candidates from the page back from the renderer.
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_token_matcher.py 66 candidates = [pos for pos in pending if all(alternative.isalpha() for alternative in [c.identifier[pos] for c in cases])]
67 if not candidates:
69 return sorted(candidates, key=lambda pos: self.score([c.identifier[pos] for c in cases]))[0]
  /external/chromium_org/third_party/freetype/src/autofit/
afhints.h 175 * Typical candidates for this are
194 * hinting instruction. Typical candidates are control points and
225 /* candidates for weak interpolation have this flag set */

Completed in 1244 milliseconds

1 2 3 4 5 6 78 91011>>