Lines Matching refs:test_resources
56 ResourcePoolT test_resources; in BuildTestResources() local
57 test_resources.locale.emplace_back(new LanguageTagT); in BuildTestResources()
58 test_resources.locale.back()->language = "en"; in BuildTestResources()
59 test_resources.locale.emplace_back(new LanguageTagT); in BuildTestResources()
60 test_resources.locale.back()->language = "de"; in BuildTestResources()
63 test_resources.resource_entry.emplace_back(new ResourceEntryT); in BuildTestResources()
64 test_resources.resource_entry.back()->name = "add_calendar_event"; in BuildTestResources()
67 test_resources.resource_entry.back()->resource.emplace_back(new ResourceT); in BuildTestResources()
68 test_resources.resource_entry.back()->resource.back()->content = "Schedule"; in BuildTestResources()
69 test_resources.resource_entry.back()->resource.back()->locale.push_back(0); in BuildTestResources()
72 test_resources.resource_entry.emplace_back(new ResourceEntryT); in BuildTestResources()
73 test_resources.resource_entry.back()->name = "add_calendar_event_desc"; in BuildTestResources()
76 test_resources.resource_entry.back()->resource.emplace_back(new ResourceT); in BuildTestResources()
77 test_resources.resource_entry.back()->resource.back()->content = in BuildTestResources()
79 test_resources.resource_entry.back()->resource.back()->locale.push_back(0); in BuildTestResources()
82 test_resources.resource_entry.emplace_back(new ResourceEntryT); in BuildTestResources()
83 test_resources.resource_entry.back()->name = "map"; in BuildTestResources()
86 test_resources.resource_entry.back()->resource.emplace_back(new ResourceT); in BuildTestResources()
87 test_resources.resource_entry.back()->resource.back()->content = "Map"; in BuildTestResources()
88 test_resources.resource_entry.back()->resource.back()->locale.push_back(0); in BuildTestResources()
91 test_resources.resource_entry.back()->resource.emplace_back(new ResourceT); in BuildTestResources()
92 test_resources.resource_entry.back()->resource.back()->content = "Karte"; in BuildTestResources()
93 test_resources.resource_entry.back()->resource.back()->locale.push_back(1); in BuildTestResources()
96 test_resources.resource_entry.emplace_back(new ResourceEntryT); in BuildTestResources()
97 test_resources.resource_entry.back()->name = "map_desc"; in BuildTestResources()
100 test_resources.resource_entry.back()->resource.emplace_back(new ResourceT); in BuildTestResources()
101 test_resources.resource_entry.back()->resource.back()->content = in BuildTestResources()
103 test_resources.resource_entry.back()->resource.back()->locale.push_back(0); in BuildTestResources()
106 test_resources.resource_entry.back()->resource.emplace_back(new ResourceT); in BuildTestResources()
107 test_resources.resource_entry.back()->resource.back()->content = in BuildTestResources()
109 test_resources.resource_entry.back()->resource.back()->locale.push_back(1); in BuildTestResources()
112 builder.Finish(ResourcePool::Pack(builder, &test_resources)); in BuildTestResources()