HomeSort by relevance Sort by last modified time
    Searched refs:MangleForJni (Results 1 - 7 of 7) sorted by null

  /art/compiler/driver/
dex_compilation_unit.cc 61 symbol_ += MangleForJni(PrettyMethod(dex_method_idx_, *dex_file_));
  /art/runtime/
utils_test.cc 206 TEST_F(UtilsTest, MangleForJni) {
208 EXPECT_EQ("hello_00024world", MangleForJni("hello$world"));
209 EXPECT_EQ("hello_000a9world", MangleForJni("hello\xc2\xa9world"));
210 EXPECT_EQ("hello_1world", MangleForJni("hello_world"));
211 EXPECT_EQ("Ljava_lang_String_2", MangleForJni("Ljava/lang/String;"));
212 EXPECT_EQ("_3C", MangleForJni("[C"));
utils.cc 597 std::string MangleForJni(const std::string& s) {
669 short_name += MangleForJni(class_name);
671 short_name += MangleForJni(method_name);
684 long_name += MangleForJni(signature);
    [all...]
utils.h 379 std::string MangleForJni(const std::string& s);
  /art/compiler/sea_ir/
frontend.cc 49 std::string symbol = "dex_" + MangleForJni(PrettyMethod(method_idx, dex_file));
  /art/compiler/jni/portable/
jni_compiler.cc 74 MangleForJni(PrettyMethod(method_idx, *dex_file)).c_str()));
  /art/compiler/sea_ir/code_gen/
code_gen.cc 199 symbol += art::MangleForJni(PrettyMethod(invoke->GetCalledMethodIndex(), dex_file_));

Completed in 176 milliseconds