/external/clang/test/SemaCXX/ |
addr-of-overloaded-function-casting.cpp | 4 void f(); // expected-note 9{{candidate function}} 5 void f(int); // expected-note 9{{candidate function}} 7 template<class T> void t(T); // expected-note 6{{candidate function}} 8 template<class T> void t(T*); // expected-note 6{{candidate function}}
|
arrow-operator.cpp | 7 T* operator->(); // expected-note{{candidate function}} 11 T* operator->(); // expected-note{{candidate function}}
|
complex-overload.cpp | 30 char *promote_or_convert(double _Complex); // expected-note{{candidate function}} 31 int *promote_or_convert(long double _Complex); // expected-note{{candidate function}}
|
convert-to-bool.cpp | 39 void accepts_bool(bool) { } // expected-note{{candidate function}} 60 operator B&(); // expected-note{{candidate}}
|
overloaded-operator.cpp | 22 bool operator-(Y, Y); // expected-note{{candidate function}} 23 bool operator-(Z, Z); // expected-note{{candidate function}} 31 bool operator==(Z&); // expected-note 2{{candidate function}} 36 bool operator==(A&, Z&); // expected-note 3{{candidate function}} 71 float& operator==(E1, E2); // expected-note{{candidate function}} 88 bool operator==(const pr5244_foo& s1, const pr5244_foo& s2); // expected-note{{candidate function}} 89 bool operator==(char c, const pr5244_foo& s); // expected-note{{candidate function}} 164 int& operator()(int, double = 2.71828); // expected-note{{candidate function}} 165 float& operator()(int, double, long, ...); // expected-note{{candidate function}} 167 double& operator()(float); // expected-note{{candidate function} [all...] |
/external/clang/test/SemaTemplate/ |
temp_func_order.cpp | 44 int &f3(T*, U); // expected-note{{candidate}} 47 float &f3(T, U*); // expected-note{{candidate}} 67 int &f5(T&, const U&); // expected-note{{candidate}} 70 float &f5(const T&, U&); // expected-note{{candidate}}
|
instantiate-using-decl.cpp | 29 void Visit(struct Object2*); // expected-note {{candidate function}} 37 void Visit(struct Object1*); // expected-note {{candidate function}}
|
operator-template.cpp | 5 template<class X>bool operator==(A<X>,typename A<X>::Y); // expected-note{{candidate template ignored: could not match 'A<type-parameter-0-0>' against 'B<int> *'}} 16 // expected-note{{candidate template ignored: substitution failure [with X = int]}}
|
/external/harfbuzz/contrib/ |
harfbuzz-unicode.c | 68 const struct script_property *candidate = vcandidate; local 70 if (key < candidate->range_start) { 72 } else if (key > candidate->range_end) { 210 const struct grapheme_break_property *candidate = vcandidate; local 212 if (key < candidate->range_start) { 214 } else if (key > candidate->range_end) { 254 const struct mirroring_property *candidate = vcandidate; local 256 if (key < candidate->a) { 258 } else if (key > candidate->a) {
|
/external/v8/src/ |
version.cc | 49 #define CANDIDATE_STRING " (candidate)" 80 const char* candidate = IsCandidate() ? " (candidate)" : ""; local 88 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate, 92 GetMajor(), GetMinor(), GetBuild(), candidate, 102 const char* candidate = IsCandidate() ? "-candidate" : ""; local 105 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate); 108 GetMajor(), GetMinor(), GetBuild(), candidate);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
TextCandidatesViewManager.java | 78 /** Delay of set candidate */ 87 /** Handler for focus Candidate */ 89 /** Handler for set Candidate */ 91 /** Handler for select Candidate */ 94 /** NUmber of Candidate display lines */ 125 /** Minimum width of a candidate (density support) */ 127 /** Maximum width of a candidate (density support) */ 129 /** Minimum height of the category candidate view */ 131 /** Left align threshold of the candidate view */ 142 /** Whether hide the view if there is no candidate */ [all...] |
/external/llvm/lib/Target/Sparc/ |
DelaySlotFiller.cpp | 62 MachineBasicBlock::iterator candidate); 74 bool delayHasHazard(MachineBasicBlock::iterator candidate, 187 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate, 194 if (candidate->isImplicitDef() || candidate->isKill()) 197 if (candidate->mayLoad()) { 203 if (candidate->mayStore()) { 211 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) { 212 const MachineOperand &MO = candidate->getOperand(i); 290 // return true if the candidate is a delay filler [all...] |
/external/chromium/webkit/glue/ |
p2p_transport.h | 29 // Called for each local candidate. 44 // Add candidate received from the remote peer. Returns false if the
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
p5-cxx0x-no-extra-copy.cpp | 58 int &g(int_c<sizeof(f(T()))> * = 0); // expected-note{{candidate function [with T = X3]}} 60 template<typename T> float &g(); // expected-note{{candidate function [with T = X3]}}
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p10.cpp | 6 int AmbiguousVar; // expected-note {{candidate}} 8 int AmbiguousVar; // expected-note {{candidate}}
|
/external/clang/test/CXX/special/class.inhctor/ |
p1.cpp | 9 struct B : A { // expected-note 3{{candidate}} 10 using A::A; // expected-warning 3{{inheriting constructor does not inherit ellipsis}} expected-note 4{{candidate}} expected-note 2{{deleted}}
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
p11.cpp | 26 template<class T, class U> inline int *f3( U, A<U,T>* p = 0 ); // #1 expected-note{{candidate function [with T = int, U = int]}} 27 template< class U> inline float *f3( U, A<U,U>* p = 0 ); // #2 expected-note{{candidate function [with U = int]}}
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p4.cpp | 3 struct IntHolder { // expected-note{{here}} // expected-note 2{{candidate constructor (the implicit copy constructor)}} 4 IntHolder(int); // expected-note 2{{candidate constructor}}
|
/external/clang/test/Sema/ |
overloadable-complex.c | 30 char *promote_or_convert(double _Complex) __attribute__((__overloadable__)); // expected-note 2 {{candidate function}} 31 int *promote_or_convert(long double _Complex) __attribute__((__overloadable__)); // expected-note 2 {{candidate function}}
|
/external/mockito/src/org/mockito/exceptions/stacktrace/ |
StackTraceCleaner.java | 25 * @param candidate element of the actual stack trace 28 boolean isOut(StackTraceElement candidate);
|
/external/mockito/src/org/mockito/internal/configuration/injection/filter/ |
FinalMockCandidateFilter.java | 18 * <li>an {@link OngoingInjecter} that do nothing if a candidate couldn't be found</li>
19 * <li>an {@link OngoingInjecter} that will try to inject the candidate trying first the property setter then if not possible try the field access</li>
|
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/ |
DexmakerMockMaker.java | 103 public boolean isOut(StackTraceElement candidate) { 104 return defaultCleaner.isOut(candidate) 105 || candidate.getClassName().endsWith("_Proxy") // dexmaker class proxies 106 || candidate.getClassName().startsWith("$Proxy") // dalvik interface proxies 107 || candidate.getClassName().startsWith("com.google.dexmaker.mockito.");
|
/external/elfutils/lib/ |
next_prime.c | 53 /* Test whether CANDIDATE is a prime. */ 55 is_prime (size_t candidate) 61 while (sq < candidate && candidate % divn != 0) 71 return candidate % divn != 0;
|
/external/llvm/lib/Target/MBlaze/ |
MBlazeDelaySlotFiller.cpp | 65 static bool hasImmInstruction(MachineBasicBlock::iterator &candidate) { 68 unsigned numOper = candidate->getNumOperands(); 70 MachineOperand &mop = candidate->getOperand(op); 105 static bool delayHasHazard(MachineBasicBlock::iterator &candidate, 108 MachineBasicBlock::iterator a = candidate; 112 // candidate := a0 = operation(a1, a2) 123 bool a_is_memory = candidate->mayLoad() || candidate->mayStore(); 126 // candidate instruction. 179 MachineBasicBlock::iterator candidate) { [all...] |
/external/webkit/Source/WebCore/page/ |
FocusController.cpp | 439 static void updateFocusCandidateIfNeeded(FocusDirection direction, const FocusCandidate& current, FocusCandidate& candidate, FocusCandidate& closest) 441 ASSERT(candidate.visibleNode->isElementNode()); 442 ASSERT(candidate.visibleNode->renderer()); 445 if (frameOwnerElement(candidate) && (!frameOwnerElement(candidate)->contentFrame() || candidate.rect.isEmpty())) 449 if (candidate.isOffscreen && !canBeScrolledIntoView(direction, candidate)) 452 distanceDataForNode(direction, current, candidate); 453 if (candidate.distance == maxDistance() 509 FocusCandidate candidate = FocusCandidate(node, direction); local [all...] |