/build/tools/makeparallel/ |
D | makeparallel.cpp | 60 static std::vector<std::string> ReadMakeflags() { in ReadMakeflags() 61 std::vector<std::string> args; in ReadMakeflags() 73 std::string makeflags = makeflags_env; in ReadMakeflags() 101 static bool ParseMakeflags(std::vector<std::string>& args, in ParseMakeflags() 104 std::vector<char*> getopt_argv; in ParseMakeflags() 108 for (std::string& v : args) { in ParseMakeflags() 306 std::vector<char*> args({argv[1]}); in main() 308 std::vector<std::string> makeflags = ReadMakeflags(); in main() 319 std::string jarg = "-j" + std::to_string(tokens + 1); in main()
|
D | Makefile | 46 $(MAKEPARALLEL_LD) -std=c++11 $(MAKEPARALLEL_CXXFLAGS) -o $@ $^ $(MAKEPARALLEL_LIBS) 51 $(MAKEPARALLEL_CXX) -c -std=c++11 $(MAKEPARALLEL_CXXFLAGS) -o $@ $<
|
/build/kati/ |
D | string_piece.cc | 47 void StringPiece::CopyToString(std::string* target) const { in CopyToString() 51 void StringPiece::AppendToString(std::string* target) const { in AppendToString() 57 size_type ret = std::min(length_ - pos, n); in copy() 66 const char* result = std::search(ptr_ + pos, ptr_ + length_, in find() 76 const char* result = std::find(ptr_ + pos, ptr_ + length_, c); in find() 85 return std::min(length_, pos); in rfind() 87 const char* last = ptr_ + std::min(length_ - s.length_, pos) + s.length_; in rfind() 88 const char* result = std::find_end(ptr_, last, s.ptr_, s.ptr_ + s.length_); in rfind() 96 for (size_type i = std::min(pos, length_ - 1); ; --i) { in rfind() 185 for (size_type i = std::min(pos, length_ - 1); ; --i) { in find_last_of() [all …]
|
D | string_piece.h | 55 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; 56 typedef std::reverse_iterator<iterator> reverse_iterator; 67 StringPiece(const std::string& str) in StringPiece() 69 StringPiece(const std::string&& str) in StringPiece() 121 std::string as_string() const { in as_string() 123 return std::string(!empty() ? data() : "", size()); in as_string() 126 void CopyToString(std::string* target) const; 127 void AppendToString(std::string* target) const; 212 namespace std {
|
D | Makefile.ckati | 84 $(KATI_LD) -std=c++11 $(KATI_CXXFLAGS) -o $@ $^ $(KATI_LIBS) 89 $(KATI_CXX) -c -std=c++11 $(KATI_CXXFLAGS) -o $@ $< 94 $(KATI_CXX) -c -std=c++11 $(KATI_CXXFLAGS) -o $@ $<
|
D | symtab.h | 23 using namespace std; variable 87 namespace std {
|
D | stringprintf.h | 20 using namespace std; variable
|
D | regen.h | 20 using namespace std; variable
|
D | exec.h | 20 using namespace std; variable
|
D | thread_pool.h | 20 using namespace std; variable
|
D | strutil_bench.cc | 23 using namespace std;
|
D | file_cache.h | 22 using namespace std; variable
|
D | ninja.h | 25 using namespace std; variable
|
D | string_piece_test.cc | 23 using namespace std;
|
D | func.h | 24 using namespace std; variable
|
D | io.h | 24 using namespace std; variable
|
D | file.h | 23 using namespace std; variable
|
D | fileutil.h | 25 using namespace std; variable
|
D | flags.h | 24 using namespace std; variable
|
D | parser.h | 24 using namespace std; variable
|
D | command.h | 22 using namespace std; variable
|
/build/tools/ijar/ |
D | classfile.cc | 101 static std::vector<Constant*> const_pool_in; // input constant pool 102 static std::vector<Constant*> const_pool_out; // output constant_pool 103 static std::set<std::string> used_class_names; 134 virtual std::string Display() = 0; 178 void ExtractClassNames(const std::string& desc, size_t* p); 192 std::string Display() { in Display() 217 std::string Display() { in Display() 243 std::string Display() { in Display() 264 std::string Display() { return "int/float"; } in Display() 282 std::string Display() { return "long/double"; } in Display() [all …]
|
D | ijar.cc | 90 std::unique_ptr<ZipExtractor> in(ZipExtractor::Create(file_in, &processor)); in OpenFilesAndProcessJar() 97 std::unique_ptr<ZipBuilder> out(ZipBuilder::Create(file_out, output_length)); in OpenFilesAndProcessJar()
|
/build/tools/atree/ |
D | options.h | 7 using namespace std; variable
|
D | fs.h | 6 using namespace std; variable
|