Home
last modified time | relevance | path

Searched refs:thisLocal (Results 1 – 2 of 2) sorted by relevance

/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java197 private final Local<?> thisLocal; field in Code
213 thisLocal = null; in Code()
215 thisLocal = Local.get(this, method.declaringType); in Code()
216 parameters.add(thisLocal); in Code()
244 if (thisLocal != null) { in getParameter()
255 if (thisLocal == null) { in getThis()
258 return coerce(thisLocal, type); in getThis()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1878 Local<?> thisLocal = code.getThis(GENERATED); in testSynchronizedFlagImpactsDeclarationOnly() local
1881 code.invokeVirtual(wait, null, thisLocal, timeout); in testSynchronizedFlagImpactsDeclarationOnly()
1910 Local<?> thisLocal = code.getThis(GENERATED); in testMonitorEnterMonitorExit() local
1912 code.monitorEnter(thisLocal); in testMonitorEnterMonitorExit()
1914 code.invokeVirtual(wait, null, thisLocal, timeout); in testMonitorEnterMonitorExit()
1915 code.monitorExit(thisLocal); in testMonitorEnterMonitorExit()