Home
last modified time | relevance | path

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

/third_party/node/tools/
Dgyp_node.py20 a_path = node_root if sys.platform == 'win32' else os.path.abspath(node_root)
21 args.append(os.path.join(a_path, 'node.gyp'))
22 common_fn = os.path.join(a_path, 'common.gypi')
23 options_fn = os.path.join(a_path, 'config.gypi')
24 options_fips_fn = os.path.join(a_path, 'config_fips.gypi')
/third_party/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)
/third_party/mesa3d/src/compiler/nir/
Dnir_deref.c456 compare_deref_paths(nir_deref_path *a_path, nir_deref_path *b_path, in compare_deref_paths() argument
466 nir_deref_instr **a = a_path->path; in compare_deref_paths()
587 nir_compare_deref_paths(nir_deref_path *a_path, in nir_compare_deref_paths() argument
590 if (!modes_may_alias(b_path->path[0]->modes, a_path->path[0]->modes)) in nir_compare_deref_paths()
593 if (a_path->path[0]->deref_type != b_path->path[0]->deref_type) in nir_compare_deref_paths()
597 if (a_path->path[0]->deref_type == nir_deref_type_var) { in nir_compare_deref_paths()
598 const nir_variable *a_var = a_path->path[0]->var; in nir_compare_deref_paths()
613 binding_compare = compare_deref_paths(a_path, b_path, &path_idx, in nir_compare_deref_paths()
661 assert(a_path->path[0]->deref_type == nir_deref_type_cast); in nir_compare_deref_paths()
673 if (a_path->path[0] != b_path->path[0]) in nir_compare_deref_paths()
[all …]
Dnir_deref.h72 nir_deref_compare_result nir_compare_deref_paths(nir_deref_path *a_path, nir_deref_path *b_path);
/third_party/python/Lib/
Dfilecmp.py157 a_path = os.path.join(self.left, x)
162 a_stat = os.stat(a_path)
/third_party/selinux/libsepol/cil/src/
Dcil_post.c215 char *a_path = cil_malloc(strlen(a_filecon->path_str) + 1); in cil_post_filecon_compare() local
217 a_path[0] = '\0'; in cil_post_filecon_compare()
219 strcat(a_path, a_filecon->path_str); in cil_post_filecon_compare()
221 cil_post_fc_fill_data(a_data, a_path); in cil_post_filecon_compare()
243 free(a_path); in cil_post_filecon_compare()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxcodeproj_file.py1828 for a_path in paths:
1829 self._AddPathToDict(pbxbuildfile, a_path)
/third_party/node/tools/gyp/pylib/gyp/
Dxcodeproj_file.py1939 for a_path in paths:
1940 self._AddPathToDict(pbxbuildfile, a_path)
/third_party/libabigail/src/
Dabg-ir.cc1241 translation_unit::set_path(const string& a_path) in set_path() argument
1242 {priv_->path_ = a_path;} in set_path()