HomeSort by relevance Sort by last modified time
    Searched full:candidate (Results 251 - 275 of 973) sorted by null

<<11121314151617181920>>

  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 61 void two() { }; //expected-note 5{{candidate}}
62 void two(int) { }; //expected-note 5{{candidate}}
71 void cant_resolve() { } //expected-note 3{{candidate}}
73 template<class T> void cant_resolve(T) { }//expected-note 3{{candidate}}
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 19 auto end(T &&t) -> decltype(t.end()) { return t.end(); } // expected-note {{candidate template ignored: substitution failure [with T = }}
23 expected-note 2{{candidate template ignored: substitution failure [with T = }}
25 auto end(T &&t) -> decltype(t.alt_end()) { return t.alt_end(); } // expected-note {{candidate template ignored: substitution failure [with T = }}
35 struct A { // expected-note 2 {{candidate constructor}}
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 13 template <typename T> int f0(void *, const T&); // expected-note{{candidate template ignored: substitution failure}}
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 72 void five_args(int, int, int, int, int); // expected-note{{candidate function not viable: requires 5 arguments, but 6 were provided}}
101 struct A { }; // expected-note{{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'int' to 'const A' for 1st argument}} \
102 // expected-note{{candidate constructor (the implicit move constructor) not viable: no known conversion from 'int' to 'A' for 1st argument}} \
103 // expected-note{{candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided}}
  /external/clang/test/SemaCXX/
dcl_ambig_res.cpp 61 void f7(int(C7)) { } // expected-note{{candidate}}
default1.cpp 26 struct Y { // expected-note 2{{candidate}}
vector-casts.cpp 6 struct S { }; // expected-note 2 {{candidate constructor}}
cxx0x-initializer-constructor.cpp 58 D(std::initializer_list<int>) { static_assert(N == 0, ""); } // expected-note 1 {{candidate}}
59 D(std::initializer_list<double>) { static_assert(N == 1, ""); } // expected-note 1 {{candidate}}
124 struct B { // expected-note 2 {{candidate constructor}}
125 B(C, int, C); // expected-note {{candidate constructor not viable: cannot convert initializer list argument to 'objects::C'}}
266 struct B { explicit B(short); B(long); }; // expected-note 2 {{candidate}}
  /external/clang/test/SemaObjCXX/
arc-nsconsumed-errors.mm 32 void templateFunction(T) {} // expected-note {{candidate function}}
overload.mm 30 int& f(A*); // expected-note {{candidate}}
31 float& f(B*); // expected-note {{candidate}}
117 void foo(id); // expected-note{{candidate function}}
  /external/libxml2/include/libxml/
xpointer.h 5 * W3C Candidate Recommendation 7 June 2000
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 114 // The best SUnit candidate.
117 // Register pressure values for the best candidate.
229 SUnit *SU, SchedCandidate &Candidate,
234 SchedCandidate &Candidate);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateFilter.java 46 String str = word.candidate;
CandidateViewButton.java 27 * The button for the candidate-view
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
tcpport.h 65 virtual Connection* CreateConnection(const Candidate& address,
117 TCPConnection(TCPPort* port, const Candidate& candidate,
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
basicportallocator.cc 72 // Returns the phase in which a given local candidate (or rather, the port that
73 // gave rise to that local candidate) would have been created.
74 int LocalCandidateToPhase(const cricket::Candidate& candidate) {
76 bool result = cricket::StringToProto(candidate.protocol().c_str(), &proto);
78 if (candidate.type() == cricket::LOCAL_PORT_TYPE) {
84 } else if (candidate.type() == cricket::STUN_PORT_TYPE) {
86 } else if (candidate.type() == cricket::RELAY_PORT_TYPE) {
437 std::vector<Candidate> candidates;
438 const std::vector<Candidate>& potentials = port->candidates()
    [all...]
  /external/clang/test/SemaTemplate/
default-expr-arguments.cpp 8 struct S { }; // expected-note 3 {{candidate constructor (the implicit copy constructor)}}
70 struct NotDefaultConstructible { // expected-note 2{{candidate}}
71 NotDefaultConstructible(int); // expected-note 2{{candidate}}
  /external/clang/utils/
CmpDriver 51 candidate = cost(a_0, b)
52 if best is None or candidate < best[0]:
53 best = (candidate, a_0, j)
  /external/icu4c/i18n/
name2uni.cpp 138 int32_t openPos = -1; // open delim candidate pos
217 openPos = -1; // close off candidate
248 // open delimiter candidate.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
MultiSourceCorpus.java 91 for (Source candidate : getSources()) {
92 if (candidate.getQueryThreshold() <= query.length()) {
93 sources.add(candidate);
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 183 assert(SuccToSinkTo && "Candidate sink target is null");
213 // dominated by the candidate
243 BasicBlock *Candidate = (*I)->getBlock();
245 IsAcceptableTarget(Inst, Candidate))
246 SuccToSinkTo = Candidate;
  /external/ceres-solver/internal/ceres/
trust_region_minimizer.cc 473 // Update the best, reference and candidate iterates.
484 // Set the candidate iterate to the current point.
492 // candidate iterate. Set the candidate to this point.
493 VLOG(2) << "Updating the candidate iterate to the current point.";
502 // This is the case because the candidate iterate has a value
507 VLOG(2) << "Resetting the reference point to the candidate point";
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 170 String candidate = pm.getInstallerPackageName(packageName); local
171 ComponentName result = getErrorReportReceiver(pm, packageName, candidate);
179 candidate = SystemProperties.get(SYSTEM_APPS_ERROR_RECEIVER_PROPERTY);
180 result = getErrorReportReceiver(pm, packageName, candidate);
187 candidate = SystemProperties.get(DEFAULT_ERROR_RECEIVER_PROPERTY);
188 return getErrorReportReceiver(pm, packageName, candidate);
196 * @param receiverPackage candidate package to receive the error
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 113 for (String candidate : context.getResources().getStringArray(
115 if (setCameraPictureSize(candidate, supported, parameters)) {
118 editor.putString(KEY_PICTURE_SIZE, candidate);
132 String candidate, List<Size> supported, Parameters parameters) {
133 int index = candidate.indexOf('x');
135 int width = Integer.parseInt(candidate.substring(0, index));
136 int height = Integer.parseInt(candidate.substring(index + 1));
  /packages/apps/Gallery2/src/com/android/camera/
CameraSettings.java 115 for (String candidate : context.getResources().getStringArray(
117 if (setCameraPictureSize(candidate, supported, parameters)) {
120 editor.putString(KEY_PICTURE_SIZE, candidate);
134 String candidate, List<Size> supported, Parameters parameters) {
135 int index = candidate.indexOf('x');
137 int width = Integer.parseInt(candidate.substring(0, index));
138 int height = Integer.parseInt(candidate.substring(index + 1));

Completed in 2745 milliseconds

<<11121314151617181920>>