Home
last modified time | relevance | path

Searched refs:a_path (Results 1 – 7 of 7) sorted by relevance

/external/protobuf/objectivec/DevTools/
Dpddm.py651 for a_path in extra_args:
652 if not os.path.exists(a_path):
653 sys.stderr.write('ERROR: File not found: %s\n' % a_path)
658 a_dir = os.path.dirname(a_path)
664 with open(a_path, 'r') as f:
671 (e.message, a_path))
676 print('Updating for "%s".' % a_path)
677 with open(a_path, 'w') as f:
681 print('Update needed for "%s".' % a_path)
684 print('No update for "%s".' % a_path)
/external/mesa3d/src/compiler/nir/
Dnir_deref.c464 nir_compare_deref_paths(nir_deref_path *a_path, in nir_compare_deref_paths() argument
467 if (!modes_may_alias(b_path->path[0]->modes, a_path->path[0]->modes)) in nir_compare_deref_paths()
470 if (a_path->path[0]->deref_type != b_path->path[0]->deref_type) in nir_compare_deref_paths()
473 if (a_path->path[0]->deref_type == nir_deref_type_var) { in nir_compare_deref_paths()
474 if (a_path->path[0]->var != b_path->path[0]->var) { in nir_compare_deref_paths()
480 if (!(a_path->path[0]->modes & ~temp_var_modes) || in nir_compare_deref_paths()
490 if (deref_path_contains_coherent_decoration(a_path) && in nir_compare_deref_paths()
501 assert(a_path->path[0]->deref_type == nir_deref_type_cast); in nir_compare_deref_paths()
513 if (a_path->path[0] != b_path->path[0]) in nir_compare_deref_paths()
524 nir_deref_instr **a_p = &a_path->path[1]; in nir_compare_deref_paths()
[all …]
Dnir_deref.h65 nir_deref_compare_result nir_compare_deref_paths(nir_deref_path *a_path, nir_deref_path *b_path);
/external/python/cpython2/Lib/
Dfilecmp.py144 a_path = os.path.join(self.left, x)
149 a_stat = os.stat(a_path)
/external/python/cpython3/Lib/
Dfilecmp.py154 a_path = os.path.join(self.left, x)
159 a_stat = os.stat(a_path)
/external/selinux/libsepol/cil/src/
Dcil_post.c201 char *a_path = cil_malloc(strlen(a_filecon->path_str) + 1); in cil_post_filecon_compare() local
202 a_path[0] = '\0'; in cil_post_filecon_compare()
205 strcat(a_path, a_filecon->path_str); in cil_post_filecon_compare()
207 cil_post_fc_fill_data(a_data, a_path); in cil_post_filecon_compare()
229 free(a_path); in cil_post_filecon_compare()
/external/libabigail/src/
Dabg-ir.cc846 translation_unit::set_path(const string& a_path) in set_path() argument
847 {priv_->path_ = a_path;} in set_path()