Searched refs:startLocal (Results 1 - 12 of 12) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
H A DStartLocalMethodItem.java42 @Nonnull private final StartLocal startLocal; field in class:StartLocalMethodItem
46 @Nonnull StartLocal startLocal) {
48 this.startLocal = startLocal;
55 registerFormatter.writeTo(writer, startLocal.getRegister());
57 String name = startLocal.getName();
58 String type = startLocal.getType();
59 String signature = startLocal.getSignature();
45 StartLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter, @Nonnull StartLocal startLocal) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableStartLocal.java63 public static ImmutableStartLocal of(@Nonnull StartLocal startLocal) { argument
64 if (startLocal instanceof ImmutableStartLocal) {
65 return (ImmutableStartLocal)startLocal;
68 startLocal.getCodeAddress(),
69 startLocal.getRegister(),
70 startLocal.getName(),
71 startLocal.getType(),
72 startLocal.getSignature());
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
H A DAndroidProxy.java62 public InetSocketAddress startLocal() { method in class:AndroidProxy
63 return startLocal(0);
66 public InetSocketAddress startLocal(int port) { method in class:AndroidProxy
67 mAddress = mJsonRpcServer.startLocal(port);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DDebugInfo.java195 ImmutableStartLocal startLocal =
198 locals[register] = startLocal;
200 return startLocal;
207 ImmutableStartLocal startLocal =
210 locals[register] = startLocal;
212 return startLocal;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DClassPool.java176 StartLocal startLocal = (StartLocal)debugItem;
177 dexPool.stringSection.internNullable(startLocal.getName());
178 dexPool.typeSection.internNullable(startLocal.getType());
179 dexPool.stringSection.internNullable(startLocal.getSignature());
458 StartLocal startLocal = (StartLocal)debugItem;
459 writer.writeStartLocal(startLocal.getCodeAddress(),
460 startLocal.getRegister(),
461 startLocal.getName(),
462 startLocal.getType(),
463 startLocal
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderClassPool.java387 StartLocal startLocal = (StartLocal)debugItem;
388 writer.writeStartLocal(startLocal.getCodeAddress(),
389 startLocal.getRegister(),
390 checkStringReference(startLocal.getNameReference()),
391 checkTypeReference(startLocal.getTypeReference()),
392 checkStringReference(startLocal.getSignatureReference()));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMutableMethodImplementation.java1046 StartLocal startLocal = (StartLocal)debugItem;
1047 return new BuilderStartLocal(startLocal.getRegister(), startLocal.getNameReference(),
1048 startLocal.getTypeReference(), startLocal.getSignatureReference());
/external/sl4a/Utils/src/com/googlecode/android_scripting/
H A DSimpleServer.java197 public InetSocketAddress startLocal(int port) { method in class:SimpleServer
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
H A DScriptingLayerService.java237 return (androidProxy.startLocal(usePort) != null);
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 318 milliseconds