Home
last modified time | relevance | path

Searched refs:was_found (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/lite/tools/benchmark/
Dcommand_line_flags.cc158 bool was_found = false; in Parse() local
161 was_found = flag.Parse(argv[i], &value_parsing_ok); in Parse()
165 if (was_found) { in Parse()
169 if (!was_found) { in Parse()
/external/v8/src/ast/
Dprettyprinter.cc335 bool was_found = false; in VisitCall() local
338 was_found = !found_; in VisitCall()
340 if (was_found) { in VisitCall()
350 if (!was_found) Print("(...)"); in VisitCall()
352 if (was_found) { in VisitCall()
360 bool was_found = false; in VisitCallNew() local
363 was_found = !found_; in VisitCallNew()
365 if (was_found) { in VisitCallNew()
374 Find(node->expression(), was_found); in VisitCallNew()
376 if (was_found) { in VisitCallNew()
[all …]
/external/tensorflow/tensorflow/core/util/
Dcommand_line_flags.cc259 bool was_found = false; in Parse() local
262 was_found = flag.Parse(argv[i], &value_parsing_ok); in Parse()
266 if (was_found) { in Parse()
270 if (!was_found) { in Parse()
/external/v8/src/objects/
Djs-proxy.h75 Handle<Object> receiver, bool* was_found);
/external/v8/src/
Dobjects.cc1033 bool was_found; in GetProperty() local
1036 it->GetName(), it->GetReceiver(), &was_found); in GetProperty()
1037 if (!was_found) it->NotFound(); in GetProperty()
1075 bool* was_found) { in GetProperty() argument
1076 *was_found = true; in GetProperty()
1104 *was_found = it.IsFound(); in GetProperty()