/external/oprofile/libutil++/tests/ |
string_filter_tests.cpp | 15 #include "string_filter.h" 28 string_filter f1; 32 string_filter f2("ok", ""); 36 string_filter f3("", "no"); 40 string_filter f4("ok,ok2,", ""); 45 string_filter f5("ok,ok2", "no,no2"); 54 string_filter f6(v1, v2); 61 string_filter f7(v1, v2); 71 string_filter f8(v1, v2); 79 string_filter f9(v1, v2) [all...] |
/external/oprofile/libutil++/ |
string_filter.cpp | 2 * @file string_filter.cpp 14 #include "string_filter.h" 20 string_filter::string_filter(string const & include_patterns, function in class:string_filter 28 string_filter::string_filter(vector<string> const & include_patterns, function in class:string_filter 37 bool string_filter::match(string const & str) const
|
string_filter.h | 2 * @file string_filter.h 19 * string_filter - filtering of a string based on include/exclude list 26 class string_filter { class 28 string_filter() {} function in class:string_filter 34 string_filter(std::string const & include_patterns, 40 string_filter(std::vector<std::string> const & include_patterns, 43 virtual ~string_filter() {}
|
glob_filter.h | 15 #include "string_filter.h" 25 class glob_filter : public string_filter { 33 : string_filter(include_patterns, exclude_patterns) {} 40 : string_filter(include_patterns, exclude_patterns) {}
|
Makefile.am | 16 string_filter.cpp \ 17 string_filter.h \
|
Android.mk.bak | 34 string_filter.cpp \
|
op_bfd.cpp | 30 #include "string_filter.h" 44 remove_filter(string_filter const & filter) 51 string_filter filter_; 100 op_bfd::op_bfd(string const & fname, string_filter const & symbol_filter, 281 string_filter const & symbol_filter)
|
op_bfd.h | 30 class string_filter; 109 string_filter const & symbol_filter, 119 string_filter const & symbol_filter, 243 string_filter const & symbol_filter);
|
op_spu_bfd.cpp | 25 #include "string_filter.h" 42 string_filter const & symbol_filter,
|
/external/oprofile/libpp/ |
populate.h | 17 class string_filter; 23 string_filter const & symbol_filter, bool * has_debug_info);
|
populate_for_spu.h | 18 class string_filter; 33 string_filter const & symbol_filter,
|
callgraph_container.h | 21 #include "string_filter.h" 63 string_filter const & filter); 121 string_filter const & sym_filter);
|
format_output.h | 23 #include "string_filter.h" 243 string_filter const & symbol_filter); 279 string_filter const & symbol_filter; 304 symbol_collection & symbols, string_filter const & sf);
|
populate.cpp | 60 string_filter const & symbol_filter, bool * has_debug_info)
|
populate_for_spu.cpp | 51 string_filter const & symbol_filter, 108 string_filter const & symbol_filter,
|
callgraph_container.cpp | 28 #include "string_filter.h" 344 string_filter const & sym_filter) 397 bool merge_lib, string_filter const & sym_filter) 467 string_filter(), extra_found_images, caller_bfd_ok); 484 string_filter(), extra_found_images, callee_bfd_ok);
|
profile_container.h | 26 class string_filter;
|
/external/oprofile/pp/ |
opreport_options.h | 20 #include "string_filter.h" 39 extern string_filter symbol_filter;
|
opannotate_options.h | 27 extern string_filter symbol_filter;
|
opannotate_options.cpp | 38 string_filter symbol_filter; 120 options::symbol_filter = string_filter(include_symbols, exclude_symbols);
|
opreport_options.cpp | 23 #include "string_filter.h" 41 string_filter symbol_filter; 316 symbol_filter = string_filter(include_symbols, exclude_symbols);
|
oparchive_options.cpp | 23 #include "string_filter.h"
|
opgprof.cpp | 19 #include "string_filter.h" 289 op_bfd abfd(image_profile.image, string_filter(),
|
/art/compiler/optimizing/ |
graph_visualizer.h | 40 * unit contains `string_filter`, the compilation information will be 45 const char* string_filter, 70 // contains the string_filter given in the constructor.
|
graph_visualizer.cc | 244 const char* string_filter, 252 if (pretty_name.find(string_filter) == std::string::npos) {
|