Searched refs:template_dict (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/native_client_sdk/src/build_tools/ |
D | easy_template.py | 53 def RunTemplate(srcfile, dstfile, template_dict, statement_re=None, argument 58 template_dict = copy.copy(template_dict) 59 template_dict['__outfile__'] = dstfile 60 exec script in template_dict 63 def RunTemplateFile(srcpath, dstpath, template_dict, statement_re=None, argument 67 RunTemplate(srcfile, dstfile, template_dict, statement_re, expr_re) 84 def RunTemplateString(src, template_dict, statement_re=None, expr_re=None): argument 87 RunTemplate(srcstr, dststr, template_dict, statement_re, expr_re)
|
D | generate_index.py | 28 template_dict = { 'section_map': sec_map } 29 return easy_template.RunTemplateString(template, template_dict)
|
D | generate_make.py | 229 template_dict = { 237 RunTemplateFileIfChanged(template, make_path, template_dict) 259 template_dict = { 263 RunTemplateFileIfChanged(in_path, out_path, template_dict)
|
D | build_app.py | 161 template_dict = { 173 template_dict)
|
/external/chromium/chrome/browser/policy/ |
D | asynchronous_policy_loader_unittest.cc | 58 DictionaryValue* template_dict(new DictionaryValue()); in TEST_F() local 59 EXPECT_CALL(*delegate_, Load()).WillOnce(Return(template_dict)); in TEST_F() 64 EXPECT_TRUE(loaded_dict->Equals(template_dict)); in TEST_F()
|
/external/chromium_org/native_client_sdk/src/build_tools/tests/ |
D | easy_template_test.py | 19 def _RunTest(self, template, expected, template_dict): argument 22 easy_template.RunTemplate(src, dst, template_dict)
|