Home
last modified time | relevance | path

Searched refs:basepath (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/tools/json_to_struct/
Djson_to_struct.py83 def _GenerateH(basepath, fileroot, head, namespace, schema, description): argument
99 with open(os.path.join(basepath, h_filename), 'w') as f:
136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description): argument
151 with open(os.path.join(basepath, fileroot + '.cc'), 'w') as f:
202 basepath = os.path.normpath(opts.destbase) variable
204 basepath = '' variable
210 _GenerateH(basepath, output_root, head, opts.namespace, schema, description)
211 _GenerateCC(basepath, output_root, head, opts.namespace, schema, description)
/external/qemu/android/skin/
Dfile.c50 const char* basepath ) in skin_background_init_from() argument
61 background->image = skin_image_find_in( basepath, img ); in skin_background_init_from()
230 skin_button_create_from( AConfig* node, const char* basepath ) in skin_button_create_from() argument
244 button->image = skin_image_find_in( basepath, img ); in skin_button_create_from()
314 skin_part_create_from_v1( AConfig* root, const char* basepath ) in skin_part_create_from_v1() argument
325 skin_background_init_from(part->background, node, basepath); in skin_part_create_from_v1()
335 SkinButton* button = skin_button_create_from(node, basepath); in skin_part_create_from_v1()
365 skin_part_create_from_v2( AConfig* root, const char* basepath ) in skin_part_create_from_v2() argument
376 skin_background_init_from(part->background, node, basepath); in skin_part_create_from_v2()
386 SkinButton* button = skin_button_create_from(node, basepath); in skin_part_create_from_v2()
[all …]
Dfile.h136 extern SkinFile* skin_file_create_from_aconfig( AConfig* aconfig, const char* basepath );
/external/chromium_org/ppapi/generators/
Didl_outfile.py118 basepath, leafname = os.path.split(filename)
119 if basepath and not os.path.isdir(basepath) and self.create_dir:
120 InfoOut.Log('Creating directory: %s\n' % basepath)
121 os.makedirs(basepath)
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dfile.c208 const char *basepath = path; in yasm__splitpath_win() local
213 basepath += 2; in yasm__splitpath_win()
215 s = basepath; in yasm__splitpath_win()
218 while (s >= basepath && *s != '\\' && *s != '/') in yasm__splitpath_win()
220 if (s < basepath) { in yasm__splitpath_win()
221 *tail = basepath; in yasm__splitpath_win()
222 if (path == basepath) in yasm__splitpath_win()
229 while ((s-1)>=basepath && *(s-1) == '.' && (*s == '/' || *s == '\\') in yasm__splitpath_win()
230 && !((s-2)>=basepath && *(s-2) == '.')) in yasm__splitpath_win()
233 while (s>basepath && (*s == '/' || *s == '\\')) in yasm__splitpath_win()
/external/qemu/
Dgen-skin.py31 def process_files( basepath, files ): argument
33 fp = open(basepath + "/" + file, "rb")
/external/chromium_org/chrome/common/extensions/docs/server2/
Dfile_system.py194 basepath = root
211 yield root[len(basepath):].rstrip('/'), dirs, files
/external/qemu/android/
Dqemulator.h51 const char* basepath,
Dqemulator.c134 const char* basepath, in qemulator_init() argument
140 emulator->layout_file = skin_file_create_from_aconfig(aconfig, basepath); in qemulator_init()