Home
last modified time | relevance | path

Searched refs:IsFound (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/v8/src/
Dproperty.h157 DCHECK(IsFound()); in representation()
163 DCHECK(!(details_.type() == CALLBACKS && !IsFound())); in IsPropertyCallbacks()
168 DCHECK(IsFound()); in IsReadOnly()
173 DCHECK(!(details_.type() == FIELD && !IsFound())); in IsField()
178 DCHECK(!(details_.type() == CONSTANT && !IsFound())); in IsConstant()
183 bool IsFound() const { return lookup_type_ != NOT_FOUND; } in IsFound() function
188 return IsFound() && !IsTransition(); in IsProperty()
Dlookup.h78 bool IsFound() const { return state_ != NOT_FOUND; } in IsFound() function
95 DCHECK(IsFound()); in GetHolder()
Dproperty.cc24 if (!r.IsFound()) return os << "Not Found\n"; in operator <<()
Dlookup.cc27 if (IsFound()) return; in Next()
36 } while (!IsFound()); in Next()
84 DCHECK(IsFound() || holder_map_->is_dictionary_map()); in ReloadPropertyInformation()
Dbootstrapper.cc792 DCHECK(it.IsFound()); in CreateNewGlobals()
2503 if (it.IsFound()) continue; in TransferNamedProperties()
2531 if (it.IsFound()) continue; in TransferNamedProperties()
Dast.cc594 DCHECK(it->IsFound() && it->GetHolder<JSObject>().is_identical_to(global)); in ComputeGlobalTarget()
Dobjects.cc110 for (; it->IsFound(); it->Next()) { in GetProperty()
149 for (; it->IsFound(); it->Next()) { in GetDataProperty()
575 for (; it->IsFound(); it->Next()) { in FindAllCanReadHolder()
614 for (; it->IsFound(); it->Next()) { in FindAllCanWriteHolder()
2816 for (; it->IsFound(); it->Next()) { in SetProperty()
3786 DCHECK(!it.IsFound()); in AddProperty()
3807 for (; it.IsFound(); it.Next()) { in SetOwnPropertyIgnoreAttributes()
3986 for (; it->IsFound(); it->Next()) { in GetPropertyAttributes()
4923 for (; it.IsFound(); it.Next()) { in DeleteProperty()
6138 preexists = it.IsFound(); in DefineAccessor()
[all …]
Dhydrogen.h2484 bool IsFound() const { return lookup_.IsFound(); } in IsFound() function
Dhydrogen.cc5816 if (it.IsFound() && it.IsReadOnly() && !it.IsConfigurable()) { in BuildLoadNamedField()
5927 if (!IsFound()) { in IsCompatible()
5928 return (!info->IsFound() || info->has_holder()) && in IsCompatible()
6077 if (IsFound()) return LoadResult(map); in LookupInPrototypes()
6093 if (IsFound()) return IsLoad() || !IsReadOnly(); in CanAccessMonomorphic()
6199 if (!info->IsFound()) { in BuildMonomorphicAccess()
10730 if (it.IsFound() && value->IsJSFunction()) { in VisitCompareOperation()
Druntime.cc2220 if (it.IsFound()) { in DeclareGlobals()
2355 if (it.IsFound()) { in RUNTIME_FUNCTION()
5091 if (it.IsFound() && it.state() == LookupIterator::ACCESS_CHECK) { in RUNTIME_FUNCTION()
5345 RUNTIME_ASSERT(!it.IsFound()); in RUNTIME_FUNCTION()
5377 duplicate = it.IsFound(); in RUNTIME_FUNCTION()
10934 for (; it->IsFound(); it->Next()) { in DebugGetProperty()
11015 if (!it.IsFound()) return isolate->heap()->undefined_value(); in RUNTIME_FUNCTION()
Dfactory.cc2194 DCHECK(it.IsFound()); in CreateApiFunction()
Dapi.cc3659 if (it->IsFound()) return Utils::ToLocal(result); in GetPropertyByLookup()
/external/chromium_org/v8/src/ic/
Dic.cc220 for (; it->IsFound(); it->Next()) { in LookupForRead()
294 if (!it.IsFound()) return false; in TryRemoveInvalidPrototypeDependentStub()
616 if (it.IsFound() || !IsUndeclaredGlobal(object)) { in Load()
624 if (it.IsFound()) { in Load()
872 } else if (!lookup->IsFound()) { in UpdateCaches()
1228 for (; it->IsFound(); it->Next()) { in LookupForWrite()
2620 if (it.IsFound()) return *result; in RUNTIME_FUNCTION()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7973 bool IsFound; member
7975 SCEVSearch(const SCEV *N): Node(N), IsFound(false) {} in SCEVSearch()
7978 IsFound |= (S == Node); in follow()
7979 return !IsFound; in follow()
7981 bool isDone() const { return IsFound; } in isDone()
7988 return Search.IsFound; in hasOperand()