HomeSort by relevance Sort by last modified time
    Searched refs:cit (Results 1 - 25 of 32) sorted by null

1 2

  /external/oprofile/libutil++/
glob_filter.cpp 29 vector<string>::const_iterator cit; local
30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str));
31 if (cit != exclude.end())
34 cit = find_if(include.begin(), include.end(), fnmatcher(str));
35 if (include.empty() || cit != include.end())
string_filter.cpp 39 vector<string>::const_iterator cit; local
40 cit = find(exclude.begin(), exclude.end(), str);
41 if (cit != exclude.end())
44 cit = find(include.begin(), include.end(), str);
45 if (include.empty() || cit != include.end())
path_filter.cpp 24 vector<string>::const_iterator cit; local
29 cit = find_if(exclude.begin(), exclude.end(),
31 if (cit != exclude.end())
43 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(base));
44 if (cit != exclude.end())
48 cit = find_if(include.begin(), include.end(), fnmatcher(base));
49 if (cit != include.end())
56 cit = find_if(include.begin(), include.end(),
58 if (cit != include.end())
comma_list.h 90 const_iterator cit = items.begin();
93 for (; cit != end; ++cit) {
94 if (value == *cit)
  /external/chromium/chrome/browser/
language_order_table_model.cc 54 for (std::vector<std::string>::const_iterator cit = languages_.begin();
55 cit != languages_.end(); ++cit)
56 if (*cit == language)
76 for (std::vector<std::string>::const_iterator cit = languages_.begin();
77 cit != languages_.end(); ++cit) {
78 if (*cit == language)
  /external/chromium/webkit/glue/
dom_operations_unittest.cc 65 for (std::vector<GURL>::const_iterator cit = resources_list.begin();
66 cit != resources_list.end(); ++cit) {
67 ASSERT_TRUE(expected_resources_set.find(*cit) !=
71 for (std::vector<GURL>::const_iterator cit = frames_list.begin();
72 cit != frames_list.end(); ++cit) {
73 ASSERT_TRUE(expected_resources_set.find(*cit) !=
  /external/oprofile/pp/
common_option.cpp 253 vector<string>::const_iterator cit = mergespec.begin(); local
256 for (; cit != end; ++cit) {
257 if (*cit == "cpu") {
259 } else if (*cit == "tid") {
261 } else if (*cit == "tgid") {
265 } else if ((*cit == "lib" || *cit == "library") && allow_lib) {
267 } else if (*cit == "unitmask") {
269 } else if (*cit == "all")
    [all...]
opannotate.cpp 475 symbol_collection::const_iterator cit = symbols.begin(); local
477 for (; cit != end; ++cit) {
478 bfd_vma start = (*cit)->sample.vma;
479 bfd_vma end = start + (*cit)->size;
696 vector<string>::const_iterator cit = base_dirs.begin(); local
698 for (; cit != end; ++cit) {
699 string path = op_realpath(*cit);
708 vector<string>::const_iterator cit = search_dirs.begin() local
    [all...]
opgprof.cpp 267 list<string>::const_iterator cit; local
269 for (cit = it->cg_files.begin(); cit != cend; ++cit) {
274 << *cit << endl;
275 cg_db.add_sample_file(*cit);
opreport_options.cpp 137 vector<string>::const_iterator cit = sort.begin(); local
140 for (; cit != end; ++cit)
141 options::sort_by.add_sort_option(*cit);
  /external/oprofile/libpp/
locate_images.cpp 36 vector<string>::const_iterator cit = paths.begin(); local
38 for (; cit != end; ++cit) {
39 string const path = op_realpath(prefix_path + *cit);
85 const_iterator cit = images.begin(); local
88 for (; cit != end; ++cit) {
89 if (match(cit->first))
90 matches.push_back(cit->second + '/' + cit->first)
    [all...]
callgraph_container.cpp 320 cg_symbol::children::iterator cit = sym.callers.begin(); local
323 while (cit != cend && op_ratio(cit->sample.counts[0],
325 ++cit;
327 if (cit != cend)
328 sym.callers.erase(sym.callers.begin(), cit);
330 cit = sym.callees.begin();
333 while (cit != cend && op_ratio(cit->sample.counts[0],
335 ++cit;
361 cg_data::children::const_iterator cit; local
    [all...]
sample_container.cpp 137 samples_iterator cit = samples.begin();
139 for (; cit != end; ++cit)
140 samples_by_loc.insert(&cit->second);
symbol_container.cpp 87 symbols_t::const_iterator cit = symbols.begin();
89 for (; cit != end; ++cit)
90 symbols_by_loc.insert(&*cit);
format_output.cpp 515 cg_symbol::children::const_iterator cit; local
524 for (cit = sym->callers.begin(); cit != cend; ++cit) {
526 do_output(out, *cit, cit->sample, c);
539 for (cit = sym->callees.begin(); cit != cend; ++cit) {
541 do_output(out, *cit, cit->sample, c)
740 cg_symbol::children::const_iterator cit; local
947 cg_symbol::children::const_iterator cit; local
    [all...]
profile_spec.cpp 523 vector<string>::const_iterator cit = sessions.begin(); local
526 for (; cit != end; ++cit) {
527 if (cit->empty())
532 if ((*cit)[0] != '.' && (*cit)[0] != '/')
534 base_dir += *cit;
profile_container.cpp 232 vector<filename_by_samples>::reverse_iterator cit local
238 for (; cit != cend; ++cit) {
239 if (cit->percent >= threshold)
240 result.push_back(cit->filename);
arrange_profiles.cpp 564 list<string>::const_iterator cit; local
566 for (cit = it->cg_files.begin(); cit != cend; ++cit) {
568 parse_filename(*cit, extra);
730 list<profile_dep_set>::const_iterator cit; local
733 for (cit = pset.deps.begin(); cit != cend; ++cit)
734 out << "profile_dep_set #" << i++ << ":\n" << *cit; local
    [all...]
xml_utils.cpp 211 list<string>::const_iterator cit = begin; local
214 for (; cit != end; ++cit) {
215 if (cit != begin)
217 str << *cit; local
227 vector<string>::const_iterator cit = begin; local
230 for (; cit != end; ++cit) {
231 if (cit != begin)
233 str << *cit; local
    [all...]
  /external/oprofile/gui/
oprof_start_util.cpp 246 for (vector<string>::const_iterator cit = args.begin();
247 cit != args.end(); ++cit) {
248 if (verify_argument(*cit))
253 "Could not execute: Argument \"" + *cit +
270 for (vector<string>::const_iterator cit = args.begin();
271 cit != args.end(); ++cit) {
272 cmdline += " " + *cit + " ";
oprof_start.cpp 437 for (vector<op_event_descr>::reverse_iterator cit = v_events.rbegin();
438 cit != v_events.rend(); ++cit) {
439 new QListViewItem(events_list, cit->name.c_str());
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 1316 CallerInfoToken cit; local
    [all...]
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 171 DenseMap<uint32_t, uint32_t>::const_iterator cit(it);
172 EXPECT_TRUE(it == cit);
175 DenseMap<uint32_t, uint32_t>::const_iterator cit2(cit);
176 EXPECT_TRUE(cit == cit2);
  /external/stlport/test/unit/
set_test.cpp 249 set<int>::const_iterator cit = tree.begin(); local
250 int const& int_cref = *cit++;
  /ndk/tests/device/test-gnustl-full/unit/
set_test.cpp 249 set<int>::const_iterator cit = tree.begin(); local
250 int const& int_cref = *cit++;

Completed in 417 milliseconds

1 2