Searched refs:find (Results 251 - 275 of 2084) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/JavaScriptCore/wtf/
H A DHashSet.h64 iterator find(const ValueType&) const;
67 // An alternate version of find() that finds the object by hashing and comparing
72 template<typename T, typename HashTranslator> iterator find(const T&) const;
149 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::find(const ValueType& value) const function in class:WTF::HashSet
151 return m_impl.find(value);
163 inline HashSet<Value, HashFunctions, Traits>::find(const T& value) const function in class:WTF::HashSet::HashSet
166 return m_impl.template find<T, Adapter>(value);
204 remove(find(value));
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicString.h56 static AtomicStringImpl* find(const UChar* s, unsigned length, unsigned existingHash);
74 size_t find(UChar c, size_t start = 0) const { return m_string.find(c, start); } function in class:WTF::AtomicString
75 size_t find(const char* s, size_t start = 0, bool caseSentitive = true) const function in class:WTF::AtomicString
76 { return m_string.find(s, start, caseSentitive); }
77 size_t find(const String& s, size_t start = 0, bool caseSentitive = true) const function in class:WTF::AtomicString
78 { return m_string.find(s, start, caseSentitive); }
/external/chromium/chrome/browser/task_manager/
H A Dtask_manager.cc238 GroupMap::const_iterator iter = group_map_.find(resource->GetProcess());
265 group_map_.find(resource->GetProcess());
399 cpu_usage_map_.find(resource->GetProcess());
407 MemoryUsageMap::const_iterator iter = memory_usage_map_.find(handle);
423 MemoryUsageMap::const_iterator iter = memory_usage_map_.find(handle);
561 GroupMap::const_iterator group_iter = group_map_.find(process);
577 std::find(resources_.begin(),
586 if (metrics_map_.find(process) == metrics_map_.end()) {
607 GroupMap::iterator group_iter = group_map_.find(process);
612 ResourceList::iterator iter = std::find(group_entrie
[all...]
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DMatcherTest.java84 for (int i = 0; m.find(); i++) {
95 for (int i = 1; m.find(); i *= 30) {
133 while (m.find()) {
249 * Class under test for boolean find(int)
354 * Class under test for boolean find()
363 while (mat.find()) {
378 while (mat2.find()) {
425 mat.find();
594 assertTrue(mat.find());
652 matcher.find();
[all...]
H A DMatcher2Test.java92 assertTrue(m.find());
136 assertTrue(m.find());
180 assertFalse(m.find());
/external/llvm/unittests/ADT/
H A DStringRefTest.cpp265 EXPECT_EQ(2U, Str.find('l'));
266 EXPECT_EQ(StringRef::npos, Str.find('z'));
267 EXPECT_EQ(StringRef::npos, Str.find("helloworld"));
268 EXPECT_EQ(0U, Str.find("hello"));
269 EXPECT_EQ(1U, Str.find("ello"));
270 EXPECT_EQ(StringRef::npos, Str.find("zz"));
271 EXPECT_EQ(2U, Str.find("ll", 2));
272 EXPECT_EQ(StringRef::npos, Str.find("ll", 3));
273 EXPECT_EQ(0U, Str.find(""));
275 EXPECT_EQ(36U, LongStr.find("hell
[all...]
/external/stlport/test/unit/
H A Dset_test.cpp24 CPPUNIT_TEST(find);
41 void find();
112 void SetTest::find() function in class:SetTest
116 CPPUNIT_ASSERT( s.find(0) == s.end() );
120 CPPUNIT_ASSERT( crs.find(0) == crs.end() );
407 CPPUNIT_ASSERT( keySet.find(2) != keySet.end() );
413 CPPUNIT_ASSERT( ckeySet.find(2) != ckeySet.end() );
431 CPPUNIT_ASSERT( keySet.find(2) != keySet.end() );
437 CPPUNIT_ASSERT( ckeySet.find(2) != ckeySet.end() );
454 CPPUNIT_ASSERT( keySet.find(
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddevtools_manager.cc61 inspected_rvh_to_client_host_.find(inspected_rvh);
155 runtime_properties_map_.find(inspected_rvh);
208 client_host_to_inspected_rvh_.find(client_host);
289 OrphanClientHosts::iterator it = orphan_client_hosts_.find(
308 runtime_properties_map_.find(inspected_rvh);
403 DCHECK(inspected_rvh_to_client_host_.find(inspected_rvh) ==
405 DCHECK(client_host_to_inspected_rvh_.find(client_host) ==
422 DCHECK(inspected_rvh_to_client_host_.find(inspected_rvh)->second ==
424 DCHECK(client_host_to_inspected_rvh_.find(client_host)->second ==
/external/chromium/chrome/browser/net/
H A Dload_timing_observer_unittest.cc178 ASSERT_FALSE(observer.http_stream_job_to_record_.find(0) ==
183 ASSERT_TRUE(observer.http_stream_job_to_record_.find(0) ==
189 ASSERT_TRUE(observer.http_stream_job_to_record_.find(1) ==
199 ASSERT_FALSE(observer.connect_job_to_record_.find(0) ==
204 ASSERT_TRUE(observer.connect_job_to_record_.find(0) ==
210 ASSERT_TRUE(observer.connect_job_to_record_.find(1) ==
220 ASSERT_FALSE(observer.socket_to_record_.find(0) ==
225 ASSERT_TRUE(observer.socket_to_record_.find(0) ==
232 ASSERT_TRUE(observer.socket_to_record_.find(1) ==
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatcher.java47 * The phone number pattern used by {@link #find}, similar to
223 * Attempts to find the next subsequence in the searched sequence on or after {@code searchIndex}
229 private PhoneNumberMatch find(int index) { method in class:PhoneNumberMatcher
231 while ((maxTries > 0) && matcher.find(index)) {
258 if (trailingCharsMatcher.find()) {
297 if (PUB_PAGES.matcher(candidate).find() || SLASH_SEPARATED_DATES.matcher(candidate).find()) {
301 if (TIME_STAMPS.matcher(candidate).find()) {
315 // If that failed, try to find an "inner match" - there might be a phone number within this
333 if (groupMatcher.find()) {
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h192 /// find - Return an iterator pointing to the first range that ends after
199 iterator find(SlotIndex Pos);
201 const_iterator find(SlotIndex Pos) const {
202 return const_cast<LiveInterval*>(this)->find(Pos);
304 const_iterator r = find(index);
312 const_iterator r = find(index.getRegSlot(true));
343 /// necessarilly including Idx, or NULL. Use this to find the reaching def
353 iterator I = find(Idx);
358 const_iterator I = find(Idx);
411 const_iterator r = find(Star
[all...]
/external/llvm/unittests/Support/
H A DPath.cpp261 v_t::const_iterator a0 = std::find(visited.begin(), visited.end(), "a0");
262 v_t::const_iterator aa1 = std::find(visited.begin(), visited.end(), "aa1");
263 v_t::const_iterator ab1 = std::find(visited.begin(), visited.end(), "ab1");
264 v_t::const_iterator dontlookhere = std::find(visited.begin(), visited.end(),
266 v_t::const_iterator da1 = std::find(visited.begin(), visited.end(), "da1");
267 v_t::const_iterator z0 = std::find(visited.begin(), visited.end(), "z0");
268 v_t::const_iterator za1 = std::find(visited.begin(), visited.end(), "za1");
269 v_t::const_iterator pop = std::find(visited.begin(), visited.end(), "pop");
270 v_t::const_iterator p1 = std::find(visited.begin(), visited.end(), "p1");
/external/chromium/base/metrics/
H A Dfield_trial.cc206 DCHECK_EQ(name.find(kPersistentStringSeparator), std::string::npos);
207 DCHECK_EQ(group_name.find(kPersistentStringSeparator), std::string::npos);
230 size_t name_end = parent_trials.find(kPersistentStringSeparator, next_item);
233 size_t group_name_end = parent_trials.find(kPersistentStringSeparator,
267 RegistrationList::iterator it = registered_.find(name);
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_apitest.cc163 EXPECT_EQ(description.find('<'),
168 EXPECT_EQ(description.find('>') + 1u,
173 EXPECT_EQ(description.find('['),
178 EXPECT_EQ(description.find(']') + 1u,
183 EXPECT_EQ(description.find('('),
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc125 } else if (domain->find("*.") == 0) {
135 if (domain->find("*.", start_offset) != std::string::npos ||
136 domain->find('!', start_offset) != std::string::npos) {
203 CHECK(rules.find(domain) == rules.end());
229 if (rules.find(*iter) == rules.end()) {
/external/chromium/net/url_request/
H A Durl_request_job_manager.cc81 FactoryMap::const_iterator i = factories_.find(scheme);
149 if (factories_.find(scheme) != factories_.end())
170 FactoryMap::iterator i = factories_.find(scheme);
192 DCHECK(std::find(interceptors_.begin(), interceptors_.end(), interceptor) ==
206 std::find(interceptors_.begin(), interceptors_.end(), interceptor);
/external/icu4c/stubdata/
H A Dicu_dat_generator.py106 end = path.find(".res")
108 collection.add(path[path.find("/")+1:end])
144 end = line.find(".res")
145 if end <= 3 or (line.find("_") <= 3 and line.find("_") > 0):
259 # Work out the ICU version from the input filenames, so we can find the
/external/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp38 SegmentIter SegPos = Segments.find(RegPos->start);
65 SegmentIter SegPos = Segments.find(RegPos->start);
107 std::find(InterferingVRegs.begin(), InterferingVRegs.end(), VirtReg);
139 LiveUnionI.find(VirtRegI->start);
194 LiveInterval::iterator VRI = VirtReg->find(Overlaps.start());
H A DMachineCopyPropagation.cpp66 SourceMap::iterator SI = SrcMap.find(*AI);
146 DenseMap<unsigned, MachineInstr*>::iterator CI = AvailCopyMap.find(Src);
180 CI = CopyMap.find(*AI);
212 if (std::find(SrcMap[Src].begin(), SrcMap[Src].end(), Def) ==
245 DenseMap<unsigned, MachineInstr*>::iterator CI = CopyMap.find(*AI);
/external/oprofile/libpp/
H A Dlocate_images.cpp73 vector<string> const extra_images::find(string const & name) const function in class:extra_images
76 return find(match);
81 extra_images::find(extra_images::matcher const & match) const function in class:extra_images
172 vector<string> result = find(base);
176 result = find(module_matcher(base + ".ko"));
/external/webkit/Source/WebCore/dom/
H A DEventTarget.cpp219 if (entry->find(registeredListener) != notFound) // duplicate listener
233 EventListenerMap::iterator result = d->eventListenerMap.find(eventType);
239 size_t index = entry->find(registeredListener);
326 EventListenerMap::iterator result = d->eventListenerMap.find(event->type());
386 EventListenerMap::iterator it = d->eventListenerMap.find(eventType);
/external/webkit/Source/WebCore/page/
H A DWindowFeatures.cpp212 DialogFeaturesMap::const_iterator it = features.find(key);
221 DialogFeaturesMap::const_iterator it = features.find(key);
246 size_t separatorPosition = featureString.find('=');
247 size_t colonPosition = featureString.find(':');
259 value = value.left(value.find(' '));
/external/bouncycastle/
H A DAndroid.mk57 `(find $(LOCAL_PATH) -name '*.java' | xargs grep '"org.bouncycastle' | egrep ' (put|add)' | sed -e 's/");//' -e 's/.*"//'; \
58 find $(LOCAL_PATH) -name '*.java' | xargs grep ' addHMACAlgorithm' | sed 's/"org.bouncycastle/\norg.bouncycastle/g' | grep ^org.bouncycastle | sed 's/".*//'; \
59 find . -name '*.java' | xargs grep 'import org.bouncycastle' | grep -v /bouncycastle/ | sed -e 's/.*:import //' -e 's/;//') \
/external/chromium/base/json/
H A Djson_writer.cc87 if (real.find('.') == std::string::npos &&
88 real.find('e') == std::string::npos &&
89 real.find('E') == std::string::npos) {
/external/chromium/base/
H A Dobserver_list_threadsafe.h97 if (observer_lists_.find(loop) == observer_lists_.end())
192 observer_lists_.find(MessageLoop::current());
217 observer_lists_.find(MessageLoop::current());

Completed in 1054 milliseconds

<<11121314151617181920>>