Searched refs:old_prefix (Results 1 – 6 of 6) sorted by relevance
/external/protobuf/src/google/protobuf/compiler/ |
D | importer.cc | 321 const string& old_prefix, in ApplyMapping() argument 324 if (old_prefix.empty()) { in ApplyMapping() 339 } else if (HasPrefixString(filename, old_prefix)) { in ApplyMapping() 341 if (filename.size() == old_prefix.size()) { in ApplyMapping() 350 if (filename[old_prefix.size()] == '/') { in ApplyMapping() 351 after_prefix_start = old_prefix.size() + 1; in ApplyMapping() 352 } else if (filename[old_prefix.size() - 1] == '/') { in ApplyMapping() 355 after_prefix_start = old_prefix.size(); in ApplyMapping()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | scan_ops_gpu.h | 102 T old_prefix = running_total_; in operator() local 103 running_total_ = op_(old_prefix, block_aggregate); in operator() 104 return old_prefix; in operator()
|
/external/fonttools/Lib/fontTools/feaLib/ |
D | ast.py | 982 def __init__(self, old_prefix, old_suffix, glyphs, replacements, argument 985 self.old_prefix, self.old_suffix = old_prefix, old_suffix 990 prefix = [p.glyphSet() for p in self.old_prefix] 1001 if len(self.old_prefix) or len(self.old_suffix): 1002 if len(self.old_prefix): 1003 res += " ".join(asFea(g) for g in self.old_prefix) + " "
|
D | parser.py | 693 old_prefix, old, lookups, values, old_suffix, hasMarks = \ 731 old_prefix, old[0], old_suffix, new[0], location=location) 752 old_prefix, old_suffix, 764 old_prefix, tuple(old[0].glyphSet())[0], old_suffix, 775 old_prefix, old, old_suffix, 805 old_prefix, old_suffix, old, new, location=location) 816 old_prefix, old, old_suffix, lookups, location=location)
|
D | builder.py | 898 def add_reverse_chain_single_subst(self, location, old_prefix, argument 901 lookup.substitutions.append((old_prefix, old_suffix, mapping))
|
/external/fonttools/Tests/feaLib/ |
D | parser_test.py | 1126 self.assertEqual(glyphstr(rsub.old_prefix), "a [B b]") 1135 self.assertEqual(glyphstr(rsub.old_prefix), 1148 self.assertEqual(glyphstr(rsub.old_prefix), "A B") 1162 self.assertEqual(glyphstr(rsub.old_prefix), "BACK TRACK")
|