/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLFormattingElementList.cpp | 146 HTMLStackItem* candidate = entry.stackItem().get(); 147 if (newItem->localName() != candidate->localName() || newItem->namespaceURI() != candidate->namespaceURI()) 149 if (candidate->attributes().size() != newItemAttributeCount) 152 candidates.append(candidate); 178 HTMLStackItem* candidate = candidates[j]; local 181 ASSERT(newItem->attributes().size() == candidate->attributes().size()); 182 ASSERT(newItem->localName() == candidate->localName() && newItem->namespaceURI() == candidate->namespaceURI()); 184 Attribute* candidateAttribute = candidate->getAttributeItem(attribute.name()) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
jsepsessiondescription_unittest.cc | 36 #include "talk/p2p/base/candidate.h" 102 cricket::Candidate candidate("rtp", cricket::ICE_CANDIDATE_COMPONENT_RTP, 105 candidate_ = candidate; 128 cricket::Candidate candidate_; 138 // Test that we can add a candidate to a session description. 149 EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_)); 166 EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_)); 183 EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_)); 188 // Test that we can not add a candidate if there is no corresponding medi [all...] |
webrtcsdp.h | 57 // candidate - The candidate to be serialized. 58 std::string SdpSerializeCandidate(const IceCandidateInterface& candidate); 70 // The first line must be a=candidate line and only the first line will be 77 JsepIceCandidate* candidate,
|
/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/chromium_org/content/renderer/media/ |
mock_web_rtc_peer_connection_handler_client.h | 28 void(const blink::WebRTCICECandidate& candidate)); 40 const blink::WebRTCICECandidate& candidate);
|
/external/chromium_org/third_party/mesa/src/bin/ |
get-pick-list.sh | 10 # Grep for commits that were marked as a candidate for the stable tree. 11 git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' HEAD..origin/master |\
|
/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/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/clang/test/SemaCXX/ |
arrow-operator.cpp | 7 T* operator->(); // expected-note{{candidate function}} 11 T* operator->(); // expected-note{{candidate function}}
|
convert-to-bool.cpp | 39 void accepts_bool(bool) { } // expected-note{{candidate function}} 60 operator B&(); // expected-note{{candidate}}
|
decl-init-ref.cpp | 6 operator A(); // expected-note {{candidate function}} 10 operator A(); // expected-note {{candidate function}}
|
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/ |
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/mesa3d/bin/ |
get-pick-list.sh | 10 # Grep for commits that were marked as a candidate for the stable tree. 11 git log --reverse --pretty=%H -i --grep='^[[:space:]]*NOTE: This is a candidate' HEAD..origin/master |\
|
/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/chromium_org/chrome/browser/chromeos/input_method/ |
candidate_window_controller_impl.h | 47 // candidate window, but the position should be changed based on position 49 // shown left-top of candidate window. If bottom of infolist window is out of 78 // Creates the candidate window view. 96 // The candidate window view. 99 // This is the outer frame of the candidate window view. The frame will
|
/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/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
p2ptransportchannel.cc | 95 // Compare the candidate information. 255 // Restart candidate allocation if there is any change in either 264 // Restart candidate gathering. 282 // |candidate.generation()| is not signaled in ICEPROTO_RFC5245. 386 // A new candidate is available, let listeners know 388 PortAllocatorSession *session, const std::vector<Candidate>& candidates) { 410 // is currently available for. See if we already have a candidate with the 411 // address. If it isn't we need to create new candidate for it. 427 const Candidate* candidate = NULL local [all...] |
/external/clang/include/clang/Sema/ |
TypoCorrection.h | 242 /// candidate is viable, without ranking potentially viable candidates. 245 /// The default predicate always returns true if the candidate is not a type 249 virtual bool ValidateCandidate(const TypoCorrection &candidate); 252 /// to a candidate (where a lower value represents a better candidate), or 253 /// returning InvalidDistance if the candidate is not at all viable. For 254 /// validation callbacks that only need to determine if a candidate is viable, 257 virtual unsigned RankCandidate(const TypoCorrection &candidate) { 258 return ValidateCandidate(candidate) ? 0 : InvalidDistance; 278 virtual bool ValidateCandidate(const TypoCorrection &candidate) { [all...] |