Searched defs:contains (Results 226 - 250 of 437) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderList.java188 * empty list is returned if this header list contains no sip
539 public boolean contains(Object header) { method in class:SIPHeaderList
540 return this.hlist.contains(header);
/external/skia/include/core/
H A DSkClipStack.h29 // The bounding box contains all the pixels that can be written to
31 // The bounding box contains all the pixels that cannot be written to.
139 * Conservatively checks whether the clip shape contains the rect param. (Whether the shape
142 bool contains(const SkRect& rect) const { function in class:SkClipStack::Element
145 return this->getRect().contains(rect);
147 return fRRect.contains(rect);
H A DSkRect.h234 bool contains(int32_t x, int32_t y) const { function in struct:SkIRect
240 If either rectangle is empty, contains() returns false.
242 bool contains(int32_t left, int32_t top, int32_t right, int32_t bottom) const { function in struct:SkIRect
250 bool contains(const SkIRect& r) const { function in struct:SkIRect
258 bool contains(const SkRect& r) const;
260 /** Return true if this rectangle contains the specified rectangle.
768 * This is close, but not quite the same contract as contains(), since
769 * contains() treats the left and top different from the right and bottom.
770 * contains(x,y) -> fLeft <= x < fRight && fTop <= y < fBottom. Also note
771 * that contains(
901 inline bool SkIRect::contains(const SkRect& r) const { function in class:SkIRect
[all...]
H A DSkString.h153 bool contains(const char substring[]) const { function in class:SkString
156 bool contains(const char subchar) const { function in class:SkString
/external/skia/src/animator/
H A DSkDrawGroup.cpp64 bool SkGroup::contains(SkDisplayable* match) { function in class:SkGroup
67 if (drawable == match || drawable->contains(match))
H A DSkDisplayApply.cpp155 bool SkApply::contains(SkDisplayable* child) { function in class:SkApply
157 if (*curPtr == child || (*curPtr)->contains(child))
H A DSkDisplayable.cpp62 bool SkDisplayable::contains(SkDisplayable* ) { function in class:SkDisplayable
66 SkDisplayable* SkDisplayable::contains(const SkString& ) { function in class:SkDisplayable
/external/skia/tools/flags/
H A DSkCommandLineFlags.h145 bool contains(const char* string) const { function in class:SkCommandLineFlags::StringArray
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java126 * Create a NodeSet which contains the given Node.
1289 * Tell if the table contains the given node.
1295 public boolean contains(Node s) method in class:NodeSet
H A DNodeSetDTM.java179 * Create a NodeSetDTM which contains the given Node.
1050 * Tell if the table contains the given node.
1056 public boolean contains(int s) method in class:NodeSetDTM
1061 return super.contains(s);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h409 bool contains(typename ProgramStateTrait<T>::key_type key) const { function in class:clang::ento::ProgramState
/external/guava/guava/src/com/google/common/collect/
H A DIterators.java52 * This class contains static utility methods that operate on or return objects
199 * Returns {@code true} if {@code iterator} contains {@code element}.
201 public static boolean contains(Iterator<?> iterator, @Nullable Object element) { method in class:Iterators
298 * @throws IllegalArgumentException if the iterator contains multiple
324 * @throws IllegalArgumentException if the iterator contains multiple
791 * longer contains the corresponding element.
H A DMultisets.java341 return contains(element) ? unfiltered.remove(element, occurrences) : 0;
387 public boolean contains(@Nullable Object element) {
388 return multiset1.contains(element) || multiset2.contains(element);
425 if (!multiset1.contains(element)) {
524 public boolean contains(@Nullable Object element) {
525 return multiset1.contains(element) || multiset2.contains(element);
566 if (!multiset1.contains(element)) {
928 @Override public boolean contains(Objec method in class:Multisets.ElementSet
967 @Override public boolean contains(@Nullable Object o) { method in class:Multisets.EntrySet
[all...]
H A DSets.java388 * example, {@code contains} returns {@code false} when passed an object that
443 * {@code EnumSet} instance and contains no elements
561 * set contains all elements that are contained in either backing set.
597 @Override public boolean contains(Object object) {
598 return set1.contains(object) || set2.contains(object);
614 * returned set contains all elements that are contained by both backing sets.
654 @Override public boolean contains(Object object) {
655 return set1.contains(object) && set2.contains(objec
1270 public boolean contains(@Nullable Object o) { method in class:Sets.SubSet
1306 @Override public boolean contains(@Nullable Object obj) { method in class:Sets.PowerSet
[all...]
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLocalCache.java760 public boolean contains(Object o) { method in class:LocalCache.KeySet
785 public boolean contains(Object o) { method in class:LocalCache.Values
805 public boolean contains(Object o) { method in class:LocalCache.EntrySet
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterators.java50 * This class contains static utility methods that operate on or return objects
197 * Returns {@code true} if {@code iterator} contains {@code element}.
199 public static boolean contains(Iterator<?> iterator, @Nullable Object element) { method in class:Iterators
296 * @throws IllegalArgumentException if the iterator contains multiple
322 * @throws IllegalArgumentException if the iterator contains multiple
756 * longer contains the corresponding element.
/external/icu/icu4c/source/i18n/
H A Dregeximp.h325 inline UBool contains(UChar32 c);
334 inline UBool Regex8BitSet::contains(UChar32 c) { function in class:Regex8BitSet
346 if (s->contains(i)) {
/external/icu/icu4c/source/test/intltest/
H A Dtransapi.cpp714 virtual UBool contains(UChar32 c) const { function in class:TestFilter1
735 virtual UBool contains(UChar32 c) const { function in class:TestFilter2
756 virtual UBool contains(UChar32 c) const { function in class:TestFilter3
/external/llvm/include/llvm/Analysis/
H A DRegionInfo.h179 /// @return True if it contains a subregion. False if it contains a
222 /// A simple control flow graph, that contains two regions.
431 /// @brief Check if the region contains a BasicBlock.
435 bool contains(const BlockT *BB) const;
437 /// @brief Check if the region contains another region.
441 bool contains(const RegionT *SubRegion) const { function in class:llvm::RegionBase
446 return contains(SubRegion->getEntry()) &&
447 (contains(SubRegion->getExit()) ||
451 /// @brief Check if the region contains a
456 bool contains(const InstT *Inst) const { return contains(Inst->getParent()); } function in class:llvm::RegionBase
[all...]
H A DRegionInfoImpl.h103 bool RegionBase<Tr>::contains(const BlockT *B) const { function in class:llvm::RegionBase
120 bool RegionBase<Tr>::contains(const LoopT *L) const { function in class:llvm::RegionBase
127 if (!contains(L->getHeader()))
134 if (!contains(BB))
143 if (!contains(L))
146 while (L && contains(L->getParentLoop())) {
171 if (DT->getNode(Pred) && !contains(Pred)) {
195 if (contains(Pred)) {
238 if (!contains(BB))
246 if (!contains(*S
[all...]
/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h56 /// /// Determine if two keys are equal. Optional, only needed by contains.
134 bool contains(typename Info::key_type_ref Key, Info &InfoObj) { function in class:llvm::OnDiskChainedHashTableGenerator
/external/llvm/lib/IR/
H A DAttributes.cpp690 if (!B.contains(Kind))
1327 if (B.contains(I.first))
1333 bool AttrBuilder::contains(StringRef A) const { function in class:AttrBuilder
H A DValue.cpp327 static bool contains(SmallPtrSetImpl<ConstantExpr *> &Cache, ConstantExpr *Expr, function
338 if (contains(Cache, CE, C))
344 static bool contains(Value *Expr, Value *V) { function
357 return contains(Cache, CE, C);
363 assert(!contains(New, this) &&
396 assert(!contains(New, this) &&
/external/skia/tests/
H A DRoundRectTest.cpp366 int numSteps, const bool* contains) {
374 REPORTER_ASSERT(reporter, contains[i] == rr.contains(test));
381 // Exercise the RR's contains rect method
412 REPORTER_ASSERT(reporter, !rrects[i].contains(easyOuts[j]));
364 test_direction(skiatest::Reporter* reporter, const SkRRect &rr, SkScalar initX, int stepX, SkScalar initY, int stepY, int numSteps, const bool* contains) argument
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dslf4j-api-1.4.2.jar ... org.slf4j.Marker markerToRemove int size public boolean contains (org.slf4j.Marker) org.slf4j.Marker ...

Completed in 727 milliseconds

1234567891011>>