Home
last modified time | relevance | path

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

/external/lldb/scripts/Python/
Dpython-wrapper.swig430 bool* was_found = NULL
439 if (was_found)
440 *was_found = false;
445 if (was_found)
446 *was_found = true;
/external/v8/src/ast/
Dprettyprinter.cc318 bool was_found = !found_ && node->position() == position_; in VisitCall() local
319 if (was_found) { in VisitCall()
329 if (!was_found) Print("(...)"); in VisitCall()
331 if (was_found) done_ = true; in VisitCall()
336 bool was_found = !found_ && node->position() == position_; in VisitCallNew() local
337 if (was_found) { in VisitCallNew()
346 Find(node->expression(), was_found); in VisitCallNew()
348 if (was_found) done_ = true; in VisitCallNew()
/external/v8/src/
Dobjects.cc809 bool was_found; in GetProperty() local
812 it->GetName(), it->GetReceiver(), &was_found); in GetProperty()
813 if (!was_found) it->NotFound(); in GetProperty()
845 bool* was_found) { in GetProperty() argument
846 *was_found = true; in GetProperty()
880 *was_found = it.IsFound(); in GetProperty()
Dobjects.h9781 Handle<Object> receiver, bool* was_found);