Home
last modified time | relevance | path

Searched refs:r_txt_printer (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/java/
DJavaClassGenerator.cpp241 Printer* r_txt_printer) { in ProcessStyleable() argument
346 if (r_txt_printer != nullptr) { in ProcessStyleable()
347 r_txt_printer->Print("int[] styleable ").Print(array_field_name).Print(" {"); in ProcessStyleable()
370 if (r_txt_printer != nullptr) { in ProcessStyleable()
372 r_txt_printer->Print(","); in ProcessStyleable()
374 r_txt_printer->Print(" ").Print(r_txt_contents); in ProcessStyleable()
378 if (r_txt_printer != nullptr) { in ProcessStyleable()
379 r_txt_printer->Println(" }"); in ProcessStyleable()
440 if (r_txt_printer != nullptr) { in ProcessStyleable()
441 r_txt_printer->Println( in ProcessStyleable()
[all …]
DJavaClassGenerator.h97 text::Printer* r_txt_printer);
103 MethodDefinition* out_rewrite_method, text::Printer* r_txt_printer);
112 text::Printer* r_txt_printer);
/frameworks/base/tools/aapt2/cmd/
DCompile.cpp229 Printer r_txt_printer(&fout_text); in CompileTable() local
238 r_txt_printer.Print("default "); in CompileTable()
241 r_txt_printer.Print("public "); in CompileTable()
244 r_txt_printer.Print("private "); in CompileTable()
248 r_txt_printer.Print("int "); in CompileTable()
249 r_txt_printer.Print(to_string(type->type)); in CompileTable()
250 r_txt_printer.Print(" "); in CompileTable()
251 r_txt_printer.Println(entry->name); in CompileTable()
253 r_txt_printer.Print("int[] styleable "); in CompileTable()
254 r_txt_printer.Println(entry->name); in CompileTable()
[all …]