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

<<21222324252627282930>>

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocatorsessionproxy_unittest.cc 38 using cricket::Candidate;
66 const std::vector<Candidate>& candidates) {
portinterface.h 90 const Candidate& remote_candidate, CandidateOrigin origin) = 0;
97 virtual const std::vector<Candidate>& Candidates() const = 0;
portproxy.cc 91 Connection* PortProxy::CreateConnection(const Candidate& remote_candidate,
123 const std::vector<Candidate>& PortProxy::Candidates() const {
transportdescription.h 37 #include "talk/p2p/base/candidate.h"
99 typedef std::vector<Candidate> Candidates;
  /external/chromium_org/ui/base/ime/
input_method_tsf.cc 17 // Returns true if we know for sure that a candidate window (or IME suggest,
27 // True if we know for sure that a candidate window is open.
  /external/chromium_org/ui/views/focus/
focus_search.cc 43 // focus candidate.
205 // it is a good candidate return it.
  /external/clang/test/CXX/special/class.inhctor/
p2.cpp 100 using TemplateCtors::TemplateCtors; // expected-note 4{{here}} expected-note {{candidate}}
106 template<int = 0> constexpr UsingTemplateCtors(int) {} // expected-note {{candidate}}
  /external/clang/test/OpenMP/
threadprivate_messages.cpp 90 int o; // expected-note {{candidate found by name lookup is 'o'}}
93 int o; // expected-note {{candidate found by name lookup is '<anonymous namespace>::o'}}
  /external/clang/test/SemaCXX/
default2.cpp 89 Z(Z&, int i = 17); // expected-note 3 {{candidate constructor}}
111 ZZ(ZZ&, int = 17); // expected-note{{candidate constructor}}
nullptr.cpp 10 void o2(char*); // expected-note {{candidate}}
11 void o2(int A::*); // expected-note {{candidate}}
  /external/dropbear/libtommath/
bn_mp_prime_next_prime.c 108 /* skip to the next non-trivially divisible candidate */
114 /* increase step to next candidate */
  /external/objenesis/tck/src/org/objenesis/tck/
TextReporter.java 52 * @param candidateDescription Description of the tested candidate
199 log.println("--- Candidate '" + element.candidateDescription + "', Instantiator '"
  /external/openssh/
ssh-keygen.0 128 Generate candidate primes for DH-GEX. These primes must be
166 generating candidate moduli for DH-GEX.
257 Specify start point (in hex) when generating candidate moduli for
265 Test DH group exchange candidate primes (generated using the -G
299 Specify desired generator when testing candidate moduli for DH-
313 process: first, candidate primes are generated using a fast, but memory
314 intensive process. These candidate primes are then tested for
333 By default, each candidate will be subjected to 100 primality tests.
ssh-keygen.1 258 Generate candidate primes for DH-GEX.
316 candidate moduli for DH-GEX.
424 Specify start point (in hex) when generating candidate moduli for DH-GEX.
431 Test DH group exchange candidate primes (generated using the
478 Specify desired generator when testing candidate moduli for DH-GEX.
491 Generating these groups is a two-step process: first, candidate
493 These candidate primes are then tested for suitability (a CPU-intensive
526 By default, each candidate will be subjected to 100 primality tests.
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSession.java 56 * @param candidatesStart The text offset of the current candidate
58 * @param candidatesEnd The text offset of the current candidate
  /packages/apps/ContactsCommon/res/values/
donottranslate_config.xml 71 exist in a target directory, 00003.vcf becomes a next file name candidate.
72 Without this configuration, 00002.vcf becomes the candidate.-->
  /packages/experimental/LoaderApp/res/values/
config.xml 75 exist in a target directory, 00003.vcf becomes a next file name candidate.
76 Without this configuration, 00002.vcf becomes the candidate.-->
  /packages/inputmethods/OpenWnn/res/values-ja/
string.xml 129 <!-- Candidate Delete -->
133 <!-- Candidate -->
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 34 #include "talk/p2p/base/candidate.h"
363 const Candidate& candidate) {
378 int family = candidate.address().family();
385 if (mtu_socket->Connect(candidate.address()) < 0 ||
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 145 // pull the candidate string out of the full text rather than body
147 String candidate = mFullText.substring(start, end); local
148 if (tp.measureText(candidate) > textFieldWidth) {
150 // do not use this "candidate"
157 candidate,
  /external/clang/test/CXX/drs/
dr0xx.cpp 159 namespace X { typedef int T; typedef int U; } // expected-note {{candidate}}
160 namespace Y { typedef int T; typedef long U; } // expected-note {{candidate}}
241 template<typename T> void f(T, T); // expected-note {{candidate}}
242 template<typename T> void f(T, int); // expected-note {{candidate}}
271 B(); // expected-note {{candidate}}
272 B(const B &, B = B()); // expected-error {{no matching constructor}} expected-note {{candidate}} expected-note {{here}}
359 namespace X { struct S; void f(void (*)(S)); } // expected-note {{candidate}}
360 namespace Y { struct T; void f(void (*)(T)); } // expected-note {{candidate}}
738 int f(int n); // expected-note 2{{candidate}}
875 B(B&); // expected-note {{candidate}}
    [all...]
  /external/v8/src/
mark-compact.cc 514 class Candidate {
516 Candidate() : fragmentation_(0), page_(NULL) { }
517 Candidate(int f, Page* p) : fragmentation_(f), page_(p) { }
555 Candidate candidates[kMaxMaxEvacuationCandidates];
559 Candidate* least = NULL;
611 candidates[count++] = Candidate(fragmentation, p);
622 *least = Candidate(fragmentation, p);
791 JSFunction* candidate = jsfunction_candidates_head_; local
793 while (candidate != NULL) {
794 next_candidate = GetNextCandidate(candidate);
826 SharedFunctionInfo* candidate = shared_function_info_candidates_head_; local
    [all...]
  /external/ceres-solver/internal/ceres/
trust_region_minimizer.cc 494 // Update the best, reference and candidate iterates.
505 // Set the candidate iterate to the current point.
513 // candidate iterate. Set the candidate to this point.
514 VLOG(2) << "Updating the candidate iterate to the current point.";
523 // This is the case because the candidate iterate has a value
528 VLOG(2) << "Resetting the reference point to the candidate point";
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 224 CacheResponse candidate = responseCache.get(
226 if (candidate == null) return;
228 Map<String, List<String>> responseHeadersMap = candidate.getHeaders();
229 cachedResponseBody = candidate.getBody();
230 if (!acceptCacheResponseType(candidate)
242 this.cacheResponse = candidate;
245 this.cacheResponse = candidate;
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_browsertest.js 38 var candidate = items[i];
39 var name = candidate.data.name;
41 return candidate;

Completed in 507 milliseconds

<<21222324252627282930>>