Searched refs:lookup (Results 1 – 4 of 4) sorted by relevance
/build/kati/ |
D | string_piece.cc | 131 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_of() local 132 BuildLookupTable(s, lookup); in find_first_of() 134 if (lookup[static_cast<unsigned char>(ptr_[i])]) { in find_first_of() 153 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_not_of() local 154 BuildLookupTable(s, lookup); in find_first_not_of() 156 if (!lookup[static_cast<unsigned char>(ptr_[i])]) { in find_first_not_of() 183 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_of() local 184 BuildLookupTable(s, lookup); in find_last_of() 186 if (lookup[static_cast<unsigned char>(ptr_[i])]) in find_last_of() 207 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_not_of() local [all …]
|
D | dep.go | 102 func (rt *ruleTrie) lookup(name string) []*rule { func 116 rules = append(rules, rt.children[name[0]].lookup(name[1:])...) 200 irules := db.implicitRules.lookup(output)
|
D | parser.go | 771 func (mc *makefileCacheT) lookup(filename string) (makefile, [sha1.Size]byte, bool, error) { func 788 mk, hash, ok, err := makefileCache.lookup(filename)
|
/build/tools/ |
D | java-layers.py | 97 def lookup(self, pkg): member in Dependencies 223 dep = deps.lookup(pkg)
|