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.cpp235 Printer* r_txt_printer) { in ProcessStyleable() argument
338 if (r_txt_printer != nullptr) { in ProcessStyleable()
339 r_txt_printer->Print("int[] styleable ").Print(array_field_name).Print(" {"); in ProcessStyleable()
347 if (r_txt_printer != nullptr) { in ProcessStyleable()
349 r_txt_printer->Print(","); in ProcessStyleable()
351 r_txt_printer->Print(" ").Print(id.to_string()); in ProcessStyleable()
355 if (r_txt_printer != nullptr) { in ProcessStyleable()
356 r_txt_printer->Println(" }"); in ProcessStyleable()
417 if (r_txt_printer != nullptr) { in ProcessStyleable()
418 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.cpp234 Printer r_txt_printer(&fout_text); in CompileTable() local
243 r_txt_printer.Print("default "); in CompileTable()
246 r_txt_printer.Print("public "); in CompileTable()
249 r_txt_printer.Print("private "); in CompileTable()
253 r_txt_printer.Print("int "); in CompileTable()
254 r_txt_printer.Print(to_string(type->type)); in CompileTable()
255 r_txt_printer.Print(" "); in CompileTable()
256 r_txt_printer.Println(entry->name); in CompileTable()
258 r_txt_printer.Print("int[] styleable "); in CompileTable()
259 r_txt_printer.Println(entry->name); in CompileTable()
[all …]