/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) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
RedEyeCandidate.java | 25 public RedEyeCandidate(RedEyeCandidate candidate) { 26 mRect.set(candidate.mRect); 27 mBounds.set(candidate.mBounds); 35 public boolean equals(RedEyeCandidate candidate) { 36 if (candidate.mRect.equals(mRect) 37 && candidate.mBounds.equals(mBounds)) {
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebRTCICECandidate.cpp | 42 static PassRefPtr<WebRTCICECandidatePrivate> create(const WebString& candidate, const WebString& sdpMid, unsigned short sdpMLineIndex) 44 return adoptRef(new WebRTCICECandidatePrivate(candidate, sdpMid, sdpMLineIndex)); 47 const WebString& candidate() const { return m_candidate; } function in class:blink::FINAL 52 WebRTCICECandidatePrivate(const WebString& candidate, const WebString& sdpMid, unsigned short sdpMLineIndex); 59 WebRTCICECandidatePrivate::WebRTCICECandidatePrivate(const WebString& candidate, const WebString& sdpMid, unsigned short sdpMLineIndex) 60 : m_candidate(candidate) 76 void WebRTCICECandidate::initialize(const WebString& candidate, const WebString& sdpMid, unsigned short sdpMLineIndex) 78 m_private = WebRTCICECandidatePrivate::create(candidate, sdpMid, sdpMLineIndex); 81 WebString WebRTCICECandidate::candidate() const function in class:blink::WebRTCICECandidate 84 return m_private->candidate(); [all...] |
/external/clang/test/SemaCXX/ |
using-directive.cpp | 4 short i; // expected-note 2{{candidate found by name lookup is 'A::i'}} 6 long i; // expected-note{{candidate found by name lookup is 'A::B::i'}} 7 void f() {} // expected-note{{candidate function}} 10 expected-note{{candidate found by name lookup is 'A::B::E'}} 13 namespace E {} // expected-note{{candidate found by name lookup is 'A::E'}} 18 expected-note{{candidate found by name lookup is 'A::C::E'}} 21 void f() {} // expected-note{{candidate function}} 48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}} 51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}} 61 class X { // expected-note{{candidate found by name lookup is 'X'} [all...] |
cast-conversion.cpp | 11 struct B { // expected-note 3 {{candidate constructor (the implicit copy constructor) not viable}} \ 12 expected-note 3 {{candidate constructor (the implicit move constructor) not viable}} 13 B(A); // expected-note 3 {{candidate constructor not viable}} 40 template <int> float* &f0(); // expected-note{{candidate}} 41 template <unsigned> float* &f0(); // expected-note{{candidate}} 69 operator int(); // expected-note {{candidate function}} 70 operator unsigned int(); // expected-note {{candidate function}}
|
overload-member-call.cpp | 4 int& f(int) const; // expected-note 2 {{candidate function}} 5 float& f(int); // expected-note 2 {{candidate function}} 15 int& g(int) const; // expected-note 2 {{candidate function}} 16 float& g(int); // expected-note 2 {{candidate function}} 17 static double& g(double); // expected-note 2 {{candidate function}} 73 template <class T> void foo(T t, unsigned N); // expected-note {{candidate function [with T = int] not viable: no known conversion from 'const char [6]' to 'unsigned int' for 2nd argument}} 74 void foo(int n, char N); // expected-note {{candidate function not viable: no known conversion from 'const char [6]' to 'char' for 2nd argument}} 75 void foo(int n, const char *s, int t); // expected-note {{candidate function not viable: requires 3 arguments, but 2 were provided}} 76 void foo(int n, const char *s, int t, ...); // expected-note {{candidate function not viable: requires at least 3 arguments, but 2 were provided}} 77 void foo(int n, const char *s, int t, int u = 0); // expected-note {{candidate function not viable: requires at least 3 arguments, but 2 were provided} [all...] |
builtin-ptrtomember-overload-1.cpp | 8 operator E*(); // expected-note{{candidate function}} 14 operator E*(); // expected-note{{candidate function}} 45 // expected-note 4 {{built-in candidate operator}}
|
deleted-operator.cpp | 10 // FIXME: We get a ridiculous number of "built-in candidate" notes here... 11 if(~a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 8 {{built-in candidate}} 12 if(a1==a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 121 {{built-in candidate}}
|
overload-0x.cpp | 4 struct A { // expected-note {{candidate function (the implicit copy assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}} expected-note {{candidate function (the implicit move assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}} 5 A &operator=(void*); // expected-note {{candidate function not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
|
/external/chromium_org/v8/test/cctest/ |
test-version.cc | 40 bool candidate, const char* soname) { 45 Version::candidate_ = candidate; 53 int patch, bool candidate, 60 SetVersion(major, minor, build, patch, candidate, ""); 68 SetVersion(major, minor, build, patch, candidate, soname); 80 "0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so"); 83 "1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so"); 86 "1.0.0.1 (candidate) SIMULATOR", "libv8-1.0.0.1-candidate.so") [all...] |
/external/v8/test/cctest/ |
test-version.cc | 40 bool candidate, const char* soname) { 45 Version::candidate_ = candidate; 53 int patch, bool candidate, 60 SetVersion(major, minor, build, patch, candidate, ""); 68 SetVersion(major, minor, build, patch, candidate, soname); 80 "0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so"); 83 "1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so"); 86 "1.0.0.1 (candidate) SIMULATOR", "libv8-1.0.0.1-candidate.so") [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementUpgradeCandidateMap.cpp | 72 UpgradeCandidateMap::iterator candidate = m_upgradeCandidates.find(element); local 73 ASSERT_WITH_SECURITY_IMPLICATION(candidate != m_upgradeCandidates.end()); 75 UnresolvedDefinitionMap::iterator elements = m_unresolvedDefinitions.find(candidate->value); 78 m_upgradeCandidates.remove(candidate); 83 // An upgrade candidate finished parsing; reorder so that eventual 90 UpgradeCandidateMap::iterator candidate = m_upgradeCandidates.find(element); local 91 ASSERT_WITH_SECURITY_IMPLICATION(candidate != m_upgradeCandidates.end()); 93 UnresolvedDefinitionMap::iterator elements = m_unresolvedDefinitions.find(candidate->value); 102 for (ElementSet::const_iterator candidate = candidates.begin(); candidate != candidates.end(); ++candidate) [all...] |
/external/objenesis/tck/test/org/objenesis/tck/ |
CandidateLoaderTest.java | 51 String input = "" + "org.objenesis.tck.CandidateLoaderTest$A = A candidate\n" + "\n" 53 + "org.objenesis.tck.CandidateLoaderTest$B = B candidate\n" 54 + "org.objenesis.tck.CandidateLoaderTest$C = C candidate\n"; 59 + "registerCandidate('class org.objenesis.tck.CandidateLoaderTest$A', 'A candidate')\n" 60 + "registerCandidate('class org.objenesis.tck.CandidateLoaderTest$B', 'B candidate')\n" 61 + "registerCandidate('class org.objenesis.tck.CandidateLoaderTest$C', 'C candidate')\n", 66 String input = "" + "org.objenesis.tck.CandidateLoaderTest$A = A candidate\n" 67 + "org.objenesis.tck.CandidateLoaderTest$NonExistant = Dodgy candidate\n" 68 + "org.objenesis.tck.CandidateLoaderTest$C = C candidate\n"; 73 + "registerCandidate('class org.objenesis.tck.CandidateLoaderTest$A', 'A candidate')\n [all...] |
/external/clang/test/SemaCUDA/ |
function-target.cu | 6 __device__ void h1d(void); // expected-note {{candidate function not viable: call to __device__ function from __host__ function}} 11 __device__ h1ds(); // expected-note {{candidate constructor not viable: call to __device__ function from __host__ function}} 22 __host__ void d1h(void); // expected-note {{candidate function not viable: call to __host__ function from __device__ function}} 34 __host__ void hd1h(void); // expected-note {{candidate function not viable: call to __host__ function from __host__ __device__ function}} 35 __device__ void hd1d(void); // expected-note {{candidate function not viable: call to __device__ function from __host__ __device__ function}}
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p17.cpp | 4 template<short s> void f(A<s>); // expected-note{{candidate template ignored: substitution failure}} 18 template<short s> void h(int (&)[s]); // expected-note{{candidate function template not viable: requires 1 argument, but 2 were provided}} 25 template<short s> void h(int (&)[s], A<s>); // expected-note{{candidate template ignored: substitution failure}}
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/ |
p1.cpp | 19 opaque0 foo(); // expected-note {{candidate}} 24 opaque1 foo(); // expected-note {{candidate}} 43 opaque0 foo(); // expected-note {{candidate}} 48 opaque1 foo(); // expected-note {{candidate}} 103 opaque0 foo(); // expected-note {{candidate}} 111 opaque1 foo(); // expected-note {{candidate}}
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
factor.sed | 47 # Pattern space looks like CANDIDATE\nNUMBER. When a candidate is valid, 48 # the number is divided and the candidate is tried again 51 # Decrement CANDIDATE, and search again if it is still >1 56 # rather than in the CANDIDATE, swap 'em: now NUMBER=1 60 # We have a prime factor in CANDIDATE! Print it
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnClause.java | 29 * @param candidate The string of the clause 34 public WnnClause(String candidate, String stroke, WnnPOS posTag, int frequency) { 35 super(candidate, 49 stem.candidate, 65 stem.candidate + fzk.candidate,
|
WnnSentence.java | 41 this.candidate = ""; 52 this.candidate = headClause.candidate; 58 StringBuffer candidate = new StringBuffer(); local 62 candidate.append(clause.candidate); 67 this.candidate = candidate.toString(); 84 this.candidate = clause.candidate; [all...] |
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/ |
p3.cpp | 6 class C {}; // expected-note {{candidate}} 10 expected-note {{candidate}}
|
/external/clang/test/CXX/dcl.dcl/ |
p4-0x.cpp | 12 constexpr operator int() const { return 1; } // expected-note {{candidate}} 13 constexpr operator long() const { return 0; } // expected-note {{candidate}}
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/ |
p9.cpp | 3 template <int> int f(int); // expected-note 2{{candidate}} 4 template <signed char> int f(int); // expected-note 2{{candidate}}
|
/external/clang/test/PCH/ |
cxx-using.cpp | 13 // expected-note@cxx-using.h:9 {{candidate function}} 14 // expected-note@cxx-using.h:15 {{candidate function}}
|
/external/clang/test/SemaOpenCL/ |
event_t_overload.cl | 3 void __attribute__((overloadable)) foo(event_t, __local char *); // expected-note {{candidate function not viable: no known conversion from '__global int *' to '__local char *' for 2nd argument}} 4 void __attribute__((overloadable)) foo(event_t, __local float *); // expected-note {{candidate function not viable: no known conversion from '__global int *' to '__local float *' for 2nd argument}}
|
/external/libvpx/libvpx/vp9/common/ |
vp9_mvref_common.c | 122 static INLINE int_mv get_sub_block_mv(const MODE_INFO *candidate, int which_mv, 124 return block_idx >= 0 && candidate->mbmi.sb_type < BLOCK_8X8 125 ? candidate->bmi[idx_n_column_to_subblock[block_idx][search_col == 0]] 127 : candidate->mbmi.mv[which_mv]; 160 #define IF_DIFF_REF_FRAME_ADD_MV(CANDIDATE) \ 162 if ((CANDIDATE)->ref_frame[0] != ref_frame) \ 163 ADD_MV_REF_LIST(scale_mv((CANDIDATE), 0, ref_frame, ref_sign_bias)); \ 164 if ((CANDIDATE)->ref_frame[1] != ref_frame && \ 165 has_second_ref(CANDIDATE) && \ 166 (CANDIDATE)->mv[1].as_int != (CANDIDATE)->mv[0].as_int) 209 const MB_MODE_INFO *const candidate = &candidate_mi->mbmi; local 234 const MB_MODE_INFO *const candidate = &xd->mi_8x8[mv_ref->col + local 264 const MB_MODE_INFO *const candidate = &xd->mi_8x8[mv_ref->col + local [all...] |