Searched refs:found (Results 1 - 25 of 33) sorted by path

12

/build/core/
H A DMakefile26 Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))
H A Dconfig.mk398 # Disable WITH_STATIC_ANALYZER if tool can't be found
H A Denvsetup.mk210 $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE))
H A Djava.mk232 # automatically found by the java compiling function transform-java-to-classes.jar.
/build/kati/
H A Ddep.cc112 auto found = children_.find(name[0]);
113 if (found != children_.end()) {
114 found->second->Get(name.substr(1), rules);
349 auto found = rules_.find(target); local
350 if (found != rules_.end())
358 auto found = rules_.find(s); local
359 if (found == rules_.end())
363 CHECK(!found->second.rules.empty());
364 *l = found->second.rules.front()->loc;
365 for (const Rule* r : found
434 auto found = rules_.find(o); local
442 auto found = rule_vars_.find(o); local
492 auto found = rule_vars_.find(output); local
536 SuffixRuleMap::const_iterator found = suffix_rules_.find(output_suffix); local
565 auto found = done_.find(output); local
[all...]
H A Dexec.cc54 auto found = done_.find(n->output); local
55 if (found != done_.end()) {
56 if (found->second == kProcessing) {
61 return found->second;
H A Dexpr.cc366 size_t found = sym.str().find_first_of(" ({"); local
367 if (found != string::npos) {
369 sym.str()[found], SPF(s));
429 size_t found = s.find(cp); local
430 if (found != string::npos) {
434 return new SymRef(Intern(s.substr(2, found-2)));
H A Dfunc.cc130 size_t found = str.find(pat, index); local
131 if (found == string::npos)
133 AppendString(StringPiece(str).substr(index, found - index), s);
135 index = found + pat.size();
875 auto found = g_func_info_map->find(name); local
876 if (found == g_func_info_map->end())
878 return found->second;
H A Dmain.cc109 size_t found = l.find('='); local
110 CHECK(found != string::npos);
111 Symbol lhs = Intern(l.substr(0, found));
112 StringPiece rhs = l.substr(found + 1);
258 ERROR("*** No targets specified and no makefile found.");
H A Dninja.cc50 const size_t found = cmd.find(name); local
51 if (found == string::npos || found == 0)
53 return found;
145 const size_t found = cmd->find(rm_f); local
146 if (found == string::npos) {
149 cmd->erase(found, rm_f.size());
H A Dparser.cc232 size_t found = FindTwoOutsideParen(line.substr(sep + 1), '=', ';'); local
233 if (found != string::npos) {
234 found += sep + 1;
235 stmt->term = line[found];
238 stmt->after_term = ParseExpr(TrimLeftSpace(line.substr(found + 1)), opt);
239 stmt->expr = ParseExpr(TrimSpace(line.substr(0, found)));
508 auto found = directive_map->find(directive); local
509 if (found == directive_map->end())
514 (this->*found->second)(rest, directive);
H A Druntest.rb170 output.gsub!(/\/bin\/sh: ([^:]*): command not found/,
171 "\\1: Command not found")
H A Dstrutil.cc166 size_t found = str.find(w); local
167 if (found == string::npos)
169 if (found != 0 && !isSpace(str[found-1]))
171 size_t end = found + w.size();
298 size_t found = s.rfind('/'); local
299 if (found == string::npos)
301 if (found == 0)
303 return s.substr(0, found);
307 size_t found local
314 size_t found = s.rfind('.'); local
322 size_t found = s.rfind('.'); local
[all...]
H A Dsymtab.cc135 auto found = symtab_.find(s); local
136 if (found != symtab_.end()) {
137 return found->second;
H A Dvar.cc122 auto found = find(name); local
123 if (found == end())
125 Var* v = found->second;
/build/kati/testcase/
H A Dfile_func.sh33 \$(info Read not found: \$(if \$(file <notfound),FAIL,PASS))
38 \$(info Read not found: PASS)
H A Dwildcard_with_commas.mk3 # test expectes empty, since no *,* found.
/build/make/core/
H A DMakefile26 Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))
H A Dconfig.mk398 # Disable WITH_STATIC_ANALYZER if tool can't be found
H A Denvsetup.mk210 $(error No config file found for TARGET_DEVICE $(TARGET_DEVICE))
H A Djava.mk232 # automatically found by the java compiling function transform-java-to-classes.jar.
/build/make/tools/fs_config/
H A DAndroid.mk38 # If not specified, check if default one to be found
44 # More information can be found in the README
H A Dfs_config_generator.py10 Further documentation can be found in the README.
106 ValueError: If there is a delimiter charcter found.
125 found (str) The file it was found in, can be None.
141 def __init__(self, identifier, value, found):
146 found (str): The file found in, not required to be specified.
154 self.found = found
164 and self.value == other.value and self.found
[all...]
H A Dtest_fs_config_generator.py51 self.assertEquals(aid.found, 'myfakefile')
58 self.assertEquals(aid.found, 'myfakefile')
/build/make/tools/ijar/
H A Dzip.cc121 // time it is found too small, until it reaches MAX_BUFFER_SIZE. If that is
174 "expected %zd more bytes but found %zd.\n",
330 error("local file header signature for file %s not found\n", filename);
634 bool found = false;
653 // Hooray, we found it!
654 found = true;
658 if (!found) {

Completed in 236 milliseconds

12