/external/chromium_org/tools/json_to_struct/ |
json_to_struct.py | 83 def _GenerateH(basepath, fileroot, head, namespace, schema, description): 88 basepath: The base directory in which files are generated. 89 fileroot: The filename and path, relative to basepath, of the file to 99 with open(os.path.join(basepath, h_filename), 'w') as f: 136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description): 141 basepath: The base directory in which files are generated. 142 fileroot: The filename and path, relative to basepath, of the file to 151 with open(os.path.join(basepath, fileroot + '.cc'), 'w') as f: 202 basepath = os.path.normpath(opts.destbase) variable 204 basepath = ' variable [all...] |
/external/qemu/android/ |
qemulator.h | 48 const char* basepath,
|
qemulator.c | 133 const char* basepath, 139 emulator->layout_file = skin_file_create_from_aconfig(aconfig, basepath);
|
/external/qemu/ |
gen-skin.py | 31 def process_files( basepath, files ): 33 fp = open(basepath + "/" + file, "rb")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/ |
runtktests.py | 66 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None): 68 and are inside packages found in the path starting at basepath. 75 for dirpath, dirnames, filenames in os.walk(basepath): 81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/ |
runtktests.py | 66 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None): 68 and are inside packages found in the path starting at basepath. 75 for dirpath, dirnames, filenames in os.walk(basepath): 81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
|
/external/qemu/android/skin/ |
file.c | 50 const char* basepath ) 61 background->image = skin_image_find_in( basepath, img ); 230 skin_button_create_from( AConfig* node, const char* basepath ) 244 button->image = skin_image_find_in( basepath, img ); 314 skin_part_create_from_v1( AConfig* root, const char* basepath ) 325 skin_background_init_from(part->background, node, basepath); 335 SkinButton* button = skin_button_create_from(node, basepath); 365 skin_part_create_from_v2( AConfig* root, const char* basepath ) 376 skin_background_init_from(part->background, node, basepath); 386 SkinButton* button = skin_button_create_from(node, basepath); [all...] |
file.h | 133 extern SkinFile* skin_file_create_from_aconfig( AConfig* aconfig, const char* basepath );
|
/external/chromium_org/ppapi/generators/ |
idl_outfile.py | 118 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/ |
file.c | 208 const char *basepath = path; local 213 basepath += 2; 215 s = basepath; 218 while (s >= basepath && *s != '\\' && *s != '/') 220 if (s < basepath) { 221 *tail = basepath; 222 if (path == basepath) 229 while ((s-1)>=basepath && *(s-1) == '.' && (*s == '/' || *s == '\\') 230 && !((s-2)>=basepath && *(s-2) == '.')) 233 while (s>basepath && (*s == '/' || *s == '\\') [all...] |
/frameworks/native/cmds/installd/ |
utils.c | 313 int lookup_media_dir(char basepath[PATH_MAX], const char *dir) 318 char* dirpos = basepath + strlen(basepath); 325 CACHE_NOISY(ALOGI("Looking up %s in %s\n", dir, basepath)); 328 if ((dirpos-basepath+strlen(dir)) >= (PATH_MAX-1)) { 329 ALOGW("Path exceeds limit: %s%s", basepath, dir); 335 if (stat(basepath, &s) >= 0) { 336 CACHE_NOISY(ALOGI("Found direct: %s\n", basepath)); 344 d = opendir(basepath); 353 CACHE_NOISY(ALOGI("Found search: %s\n", basepath)); [all...] |
installd.h | 160 int lookup_media_dir(char basepath[PATH_MAX], const char *dir); 166 void add_cache_files(cache_t* cache, const char *basepath, const char *cachedir);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tools.py | 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable 25 scriptsdir = os.path.join(basepath, 'scripts')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tools.py | 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable 25 scriptsdir = os.path.join(basepath, 'scripts')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
EditorWindow.py | 132 basepath = '/usr/share/doc/' # standard location 133 dochome = os.path.join(basepath, pyver, [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
EditorWindow.py | 132 basepath = '/usr/share/doc/' # standard location 133 dochome = os.path.join(basepath, pyver, [all...] |