Skip to content

Commit ad12d0f

Browse files
committed
Update stub info
1 parent d5291e7 commit ad12d0f

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

app/src/main/java/com/mcal/disassembler/vtable/VtableDumper.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
public class VtableDumper {
1616
@Nullable
1717
public static DisassemblerVtable dump(String path, String classn) {
18-
for (DisassemblerVtable ztv : Dumper.exploed)
19-
if (ztv.getName().contains(classn))
18+
for (DisassemblerVtable ztv : Dumper.exploed) {
19+
if (ztv.getName().contains(classn)) {
2020
return ztv;
21+
}
22+
}
2123

2224
Dump d = new Dump(path);
2325

@@ -79,9 +81,11 @@ public static DisassemblerVtable dump(String path, String classn) {
7981

8082
@Nullable
8183
private static DisassemblerSymbol getSymbol(String name) {
82-
for (DisassemblerSymbol symbol : Dumper.symbols)
83-
if (symbol.getName().equals(name))
84+
for (DisassemblerSymbol symbol : Dumper.symbols) {
85+
if (symbol.getName().equals(name)) {
8486
return symbol;
87+
}
88+
}
8589
return null;
8690
}
8791
}

app/src/main/res/layout/activity_demangler.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
android:inputType="textNoSuggestions"
4646
android:lines="1"
4747
android:singleLine="true"
48-
android:textCursorDrawable="@drawable/cursor" />
48+
android:textCursorDrawable="@drawable/cursor"
49+
tools:text="_ZN11AppPlatform21_clipboardCopyHandlerERKN17ApplicationSignal13ClipboardCopyE" />
4950

5051
</com.google.android.material.textfield.TextInputLayout>
5152

@@ -73,11 +74,11 @@
7374
android:inputType="textNoSuggestions"
7475
android:lines="1"
7576
android:singleLine="true"
76-
android:textCursorDrawable="@drawable/cursor" />
77+
android:textCursorDrawable="@drawable/cursor"
78+
tools:text="AppPlatform::_clipboardCopyHandler(ApplicationSignal::ClipboardCopy const&amp;)" />
7779

7880
</com.google.android.material.textfield.TextInputLayout>
7981

8082
</LinearLayout>
8183

8284
</LinearLayout>
83-

app/src/main/res/layout/floating_menu.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@
8989
android:id="@+id/result_container"
9090
android:layout_width="match_parent"
9191
android:layout_height="match_parent"
92+
android:layout_marginStart="-8dp"
93+
android:layout_marginEnd="-8dp"
9294
android:gravity="center"
9395
android:orientation="vertical">
9496

app/src/main/res/layout/item_symbols.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
android:layout_height="wrap_content"
4040
android:layout_marginStart="5dp"
4141
android:textStyle="bold"
42-
tools:text="Xal::Platform::AccountMigratorCommon::NotifySuccessfulSignin(Xal::RunContext&amp;&amp;)" />
42+
tools:text="AppPlatform::_clipboardCopyHandler(ApplicationSignal::ClipboardCopy const&amp;)" />
4343

4444
<TextView
4545
android:id="@+id/symbolslistitemTextViewbottom"
4646
android:layout_width="match_parent"
4747
android:layout_height="wrap_content"
4848
android:layout_marginStart="5dp"
49-
tools:text="Xal::Platform::AccountMigratorCommon::NotifySuccessfulSignin(Xal::RunContext&amp;&amp;)" />
49+
tools:text="_ZN11AppPlatform21_clipboardCopyHandlerERKN17ApplicationSignal13ClipboardCopyE" />
5050

5151
</LinearLayout>
5252

0 commit comments

Comments
 (0)