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

1234567891011>>

/external/jmdns/src/javax/jmdns/impl/
H A DJmDNSImpl.java225 * Returns <code>true</code> if this set contains the specified element. More formally, returns <code>true</code> if and only if this set contains an element <code>e</code> such that
230 * @return <code>true</code> if this set contains the specified element
232 public boolean contains(String subtype) { method in class:JmDNSImpl.ServiceTypeEntry
237 * Adds the specified element to this set if it is not already present. More formally, adds the specified element <code>e</code> to this set if this set contains no element <code>e2</code> such that
238 * <code>(e==null&nbsp;?&nbsp;e2==null&nbsp;:&nbsp;e.equals(e2))</code>. If this set already contains the element, the call leaves the set unchanged and returns <code>false</code>.
245 if (subtype == null || this.contains(subtype)) {
937 if (!list.contains(listener)) {
1112 if ((subtypes != null) && (!subtypes.contains(subtype))) {
1114 if (!subtypes.contains(subtyp
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h166 /// contains - Returns true if this tree contains a subtree (node) that
169 bool contains(key_type_ref K) { return (bool) find(K); } function in class:llvm::ImutAVLTree
975 /// getEmptySet - Returns an immutable set that contains no elements.
980 /// add - Creates a new immutable set that contains all of the values
992 /// remove - Creates a new immutable set that contains all of the values
1017 /// Returns true if the set contains the specified value.
1018 bool contains(value_type_ref V) const { function in class:llvm::ImmutableSet
1019 return Root ? Root->contains(V) : false;
1039 /// isEmpty - Return true if the set contains n
1150 bool contains(value_type_ref V) const { function in class:llvm::ImmutableSetRef
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp271 // Now Orphans contains the inherited subregisters without a direct index.
713 // Default allocation order always contains all registers.
730 if (!contains(Reg))
787 if (contains(RegBank.getReg(Super.Orders[i][j])))
791 bool CodeGenRegisterClass::contains(const CodeGenRegister *Reg) const { function in class:CodeGenRegisterClass
1455 // Create a RegUnitSet for each RegClass that contains all units in the class
1692 if (SubRC->contains(SSPairs[i].second))
1748 /// getRegisterClassForRegister - Find the register class that contains the
1760 if (!RC.contains(Reg))
1763 // If this is the first class that contains th
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashTable.h329 bool contains(const KeyType& key) const { return contains<KeyType, IdentityTranslatorType>(key); } function in class:WTF::HashTable
333 template <typename T, typename HashTranslator> bool contains(const T&) const;
801 bool HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::contains(const T& key) const function in class:WTF::HashTable
/external/webkit/Source/WebCore/editing/
H A DSelectionController.cpp222 return element->contains(position.anchorNode()) || element->contains(position.anchorNode()->shadowAncestorNode());
1318 bool SelectionController::contains(const IntPoint& point) function in class:SelectionController
1365 // Check if the selection contains the entire frame contents; if not, then there is nothing to do.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar ... key java.util.List result public synchronized boolean contains (org.eclipse.equinox.p2.repository. ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jar ... int) int[] waitingThreads int lockIndex int i int j boolean contains (java.lang.Thread) Thread t private void fillPresentEntries ...
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.runtime_3.6.0.v20100505.jar ... core.runtime.preferences.IEclipsePreferences defaults public boolean contains (java.lang.String) String name String value public ...
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher.jar ... .security.Permission permission public void refresh () private boolean contains (java.security.CodeSource) java.security.CodeSource ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jar ... .security.Permission permission public void refresh () private boolean contains (java.security.CodeSource) java.security.CodeSource ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/lib/Analysis/
H A DThreadSafety.cpp688 /// \brief Return true if the list contains the specified SExpr
690 bool contains(const SExpr& M) { function in class:__anon3547::MutexIDList
698 if (!contains(M)) push_back(M);
871 /// CFGBlockInfo is a struct which contains all the information that is
921 /// information, but instead contains a pointer to a previous VarDefinition.
1057 assert(!Ctx.contains(D));
1075 if (Ctx.contains(D)) {
1089 if (NewCtx.contains(D)) {
1099 if (NewCtx.contains(D)) {
1194 // definition in C. Return a new context that contains thes
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java667 * Returns true if this reference contains an active value, meaning one that is still considered
2096 * The key reference queue contains entries whose keys have been garbage collected, and which
2102 * The value reference queue contains value references whose values have been garbage collected,
2624 if (accessQueue.contains(e)) {
3619 * of the queue as part of copyWriteEntry, and (2) the contains method is highly optimized
3703 public boolean contains(Object o) { method in class:LocalCache.WriteQueue
3756 * of the queue as part of copyWriteEntry, and (2) the contains method is highly optimized
3840 public boolean contains(Object o) { method in class:LocalCache.AccessQueue
4482 public boolean contains(Object o) { method in class:LocalCache.KeySet
4515 public boolean contains(Objec method in class:LocalCache.Values
4533 public boolean contains(Object o) { method in class:LocalCache.EntrySet
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java2102 * The key reference queue contains entries whose keys have been garbage collected, and which
2108 * The value reference queue contains value references whose values have been garbage collected,
2343 if (evictionQueue.contains(e)) {
2346 if (map.expiresAfterAccess() && expirationQueue.contains(e)) {
3153 * of the queue as part of copyEvictableEntry, and (2) the contains method is highly optimized
3229 public boolean contains(Object o) { method in class:MapMakerInternalMap.EvictionQueue
3281 * of the queue as part of copyEvictableEntry, and (2) the contains method is highly optimized
3365 public boolean contains(Object o) { method in class:MapMakerInternalMap.ExpirationQueue
3842 public boolean contains(Object o) { method in class:MapMakerInternalMap.KeySet
3875 public boolean contains(Objec method in class:MapMakerInternalMap.Values
3893 public boolean contains(Object o) { method in class:MapMakerInternalMap.EntrySet
[all...]
/external/icu4c/test/intltest/
H A Dtranstst.cpp660 virtual UBool contains(UChar32 c) const { function in class:TestFilter
3991 if (set.contains(0x200E)) {
/external/webkit/Source/WebCore/dom/
H A DNode.cpp390 ASSERT(!NodeRareData::rareDataMap().contains(this));
537 ASSERT(!NodeRareData::rareDataMap().contains(this));
1204 // FIXME: Implement support for INVALID_CHARACTER_ERR: Raised if the specified prefix contains an illegal character.
1310 bool Node::contains(const Node* node) const function in class:WebCore::Node
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1210 // function name contains "InsertValue", "SetValue", "AddValue",
1864 static inline bool contains(const SmallVectorImpl<ArgEffect>& V, function
2034 if (!GCEnabled && contains(AEffects, Dealloc)) {
2047 if (contains(AEffects, MakeCollectable)) {
/external/v8/src/
H A Dobjects-inl.h4191 bool Code::contains(byte* inner_pointer) { function in class:Code
H A Dspaces.h47 // separated into a map space and an old object space. The map space contains
828 bool contains(Address address) { function in class:v8::internal::CodeRange
873 // Finds a block on the allocation list that contains at least the
2033 // to the page that contains limit in the same semispace.

Completed in 471 milliseconds

1234567891011>>