Home
last modified time | relevance | path

Searched refs:IndentedText (Results 1 – 13 of 13) sorted by relevance

/external/dbus-binding-generator/chromeos-dbus-bindings/
Dproxy_generator.h25 class IndentedText; variable
46 IndentedText* text);
51 IndentedText* text);
56 IndentedText* text);
62 IndentedText* text);
64 IndentedText* text);
68 static void AddReleaseObjectProxy(IndentedText* text);
71 static void AddGetObjectPath(IndentedText* text);
74 static void AddGetObjectProxy(IndentedText* text);
79 IndentedText* text);
[all …]
Dindented_text.cc20 IndentedText::IndentedText() : offset_(0) {} in IndentedText() function in chromeos_dbus_bindings::IndentedText
22 void IndentedText::AddBlankLine() { in AddBlankLine()
26 void IndentedText::AddBlock(const IndentedText& block) { in AddBlock()
30 void IndentedText::AddBlockWithOffset(const IndentedText& block, size_t shift) { in AddBlockWithOffset()
36 void IndentedText::AddLine(const std::string& line) { in AddLine()
40 void IndentedText::AddLineWithOffset(const std::string& line, size_t shift) { in AddLineWithOffset()
44 void IndentedText::AddLineAndPushOffsetTo(const std::string& line, in AddLineAndPushOffsetTo()
58 void IndentedText::AddComments(const std::string& doc_string) { in AddComments()
104 string IndentedText::GetContents() const { in GetContents()
113 std::vector<std::string> IndentedText::GetLines() const { in GetLines()
[all …]
Dadaptor_generator.h24 class IndentedText; variable
37 IndentedText *text);
41 IndentedText *text);
46 IndentedText *text);
51 IndentedText *text);
56 IndentedText *text);
60 IndentedText *text);
64 IndentedText *text);
68 IndentedText *text);
72 IndentedText *text);
Dindented_text.h16 class IndentedText {
18 IndentedText();
19 virtual ~IndentedText() = default;
25 void AddBlock(const IndentedText& block);
26 void AddBlockWithOffset(const IndentedText& block, size_t shift);
65 DISALLOW_COPY_AND_ASSIGN(IndentedText);
Dproxy_generator.cc49 IndentedText text; in GenerateProxies()
107 IndentedText text; in GenerateMocks()
189 IndentedText* text) { in GenerateInterfaceProxyInterface()
230 IndentedText* text) { in GenerateInterfaceProxy()
312 IndentedText* text) { in GenerateInterfaceMock()
379 IndentedText* text) { in AddConstructor()
380 IndentedText block; in AddConstructor()
419 IndentedText* text) { in AddDestructor()
420 IndentedText block; in AddDestructor()
427 void ProxyGenerator::AddReleaseObjectProxy(IndentedText* text) { in AddReleaseObjectProxy()
[all …]
Dadaptor_generator.cc29 IndentedText text; in GenerateAdaptors()
62 IndentedText *text) { in GenerateInterfaceAdaptor()
127 IndentedText *text) { in AddConstructor()
136 IndentedText *text) { in AddRegisterWithDBusObject()
153 IndentedText *text) { in RegisterInterface()
238 IndentedText *text) { in AddInterfaceMethods()
239 IndentedText block; in AddInterfaceMethods()
328 IndentedText *text) { in AddSendSignalMethods()
329 IndentedText block; in AddSendSignalMethods()
379 IndentedText *text) { in AddSignalDataMembers()
[all …]
Dname_parser.cc19 void AddOpenNamespace(IndentedText *text, const std::string& name) { in AddOpenNamespace()
23 void AddCloseNamespace(IndentedText *text, const std::string& name) { in AddCloseNamespace()
78 void NameParser::AddOpenNamespaces(IndentedText *text, in AddOpenNamespaces()
88 void NameParser::AddCloseNamespaces(IndentedText *text, in AddCloseNamespaces()
Dname_parser.h16 class IndentedText; variable
47 void AddOpenNamespaces(IndentedText *text, bool add_main_type) const;
51 void AddCloseNamespaces(IndentedText *text, bool add_main_type) const;
Dname_parser_unittest.cc86 IndentedText text; in TEST()
97 IndentedText text; in TEST()
107 IndentedText text; in TEST()
118 IndentedText text; in TEST()
Dindented_text_unittest.cc24 IndentedText text_;
61 IndentedText block0; in TEST_F()
65 IndentedText block1; in TEST_F()
75 IndentedText block; in TEST_F()
Dheader_generator.h22 class IndentedText; variable
62 const IndentedText& text);
Dmethod_name_generator.cc30 IndentedText text; in GenerateMethodNames()
Dheader_generator.cc51 const base::FilePath& output_file, const IndentedText &text) { in WriteTextToFile()