HomeSort by relevance Sort by last modified time
    Searched refs:cit (Results 1 - 25 of 39) 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)
  /art/compiler/sea_ir/debug/
dot_gen.cc 27 for (std::vector<Region*>::const_iterator cit = graph->GetRegions()->begin();
28 cit != graph->GetRegions()->end(); cit++ ) {
29 if ((*cit)->GetIDominator() == (*cit)) {
30 root_region = *cit;
37 for (std::set<Region*>::const_iterator cit = dominated_regions->begin();
38 cit != dominated_regions->end(); cit++ ) {
39 ordered_regions_.push_back(*cit);
    [all...]
  /art/compiler/sea_ir/types/
type_inference_visitor.cc 50 for (std::vector<const Type*>::const_iterator cit = operand_types.begin();
51 cit != operand_types.end(); cit++) {
52 if (*cit != NULL) {
53 DCHECK((*cit)->IsInteger());
75 for (std::vector<InstructionNode*>::const_iterator cit = sources.begin(); cit != sources.end();
76 cit++) {
77 const Type* source_type = type_data_->FindTypeOf((*cit)->Id());
90 for (std::vector<const Type*>::const_iterator cit = types.begin()
    [all...]
  /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/chromium_org/content/renderer/
savable_resources_browsertest.cc 75 for (std::vector<GURL>::const_iterator cit = resources_list.begin();
76 cit != resources_list.end(); ++cit) {
77 ASSERT_TRUE(expected_resources_set.find(*cit) !=
81 for (std::vector<GURL>::const_iterator cit = frames_list.begin();
82 cit != frames_list.end(); ++cit) {
83 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 481 symbol_collection::const_iterator cit = symbols.begin(); local
483 for (; cit != end; ++cit) {
484 bfd_vma start = (*cit)->sample.vma;
485 bfd_vma end = start + (*cit)->size;
702 vector<string>::const_iterator cit = base_dirs.begin(); local
704 for (; cit != end; ++cit) {
705 string path = op_realpath(*cit);
714 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;
  /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 + " ";
  /art/compiler/sea_ir/code_gen/
code_gen.cc 42 for (std::vector<Region*>::const_iterator cit = graph->GetRegions()->begin();
43 cit != graph->GetRegions()->end(); cit++ ) {
44 if ((*cit)->GetIDominator() == (*cit)) {
45 root_region = *cit;
52 for (std::set<Region*>::const_iterator cit = dominated_regions->begin();
53 cit != dominated_regions->end(); cit++ ) {
54 ordered_regions_.push_back(*cit);
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 1500 CallerInfoToken cit; local
    [all...]
  /art/compiler/sea_ir/ir/
sea.cc 34 for (std::vector<PhiInstructionNode*>::const_iterator cit = phis->begin();
35 cit != phis->end(); cit++) {
36 (*cit)->Accept(this);
39 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
40 cit != instructions->end(); cit++) {
41 (*cit)->Accept(this);
46 for (std::vector<Region*>::const_iterator cit = ordered_regions_.begin();
47 cit != ordered_regions_.end(); cit++ )
    [all...]
sea.h 112 cit = definition_edges_.begin(); cit != definition_edges_.end(); cit++) {
113 producers.insert(producers.end(), (*cit)->begin(), (*cit)->end());
instruction_nodes.h 68 for (std::vector<int>::const_iterator cit = uses.begin(); cit != uses.end(); cit++) {
69 ssa_uses.push_back((*definition_edges_.find(*cit)).second);

Completed in 3307 milliseconds

1 2