Home
last modified time | relevance | path

Searched refs:scopeStart (Results 1 – 3 of 3) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DLocalVariableImpl.java34 private final Location scopeStart; field in LocalVariableImpl
41 int slot, Location scopeStart, Location scopeEnd, in LocalVariableImpl() argument
47 this.scopeStart = scopeStart; in LocalVariableImpl()
63 (scopeStart != null) && in equals()
64 (scopeStart.equals(other.scopeStart)) && in equals()
75 return ((scopeStart.hashCode() << 4) + slot()); in hashCode()
81 int rc = scopeStart.compareTo(other.scopeStart); in compareTo()
134 return ((scopeStart.compareTo(frame.location()) <= 0) in isVisible()
140 MethodImpl method = (MethodImpl)scopeStart.method(); in isArgument()
170 return (scopeStart.compareTo(otherImpl.scopeStart) > 0); in hides()
[all …]
DConcreteMethodImpl.java466 Location scopeStart = new LocationImpl(virtualMachine(), in getVariables1_4() local
473 si.slot, scopeStart, scopeEnd, in getVariables1_4()
513 Location scopeStart = new LocationImpl(virtualMachine(), in getVariables1() local
520 si.slot, scopeStart, scopeEnd, in getVariables1()
/external/libunwind_llvm/src/
DUnwind-EHABI.cpp109 uintptr_t scopeStart = ucbp->pr_cache.fnstart + offset; in ProcessDescriptors() local
110 uintptr_t scopeEnd = scopeStart + length; in ProcessDescriptors()
112 bool isInScope = (scopeStart <= pc) && (pc < scopeEnd); in ProcessDescriptors()