/aosp12/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
H A D | VCardParserTests.java | 98 interpreter.addExpectedOrder(Order.START) in testSimple() 103 parser.addInterpreter(interpreter); in testSimple() 105 interpreter.verify(); in testSimple() 131 parser.addInterpreter(interpreter); in testNest() 133 interpreter.verify(); in testNest() 163 parser.addInterpreter(interpreter); in testIosMultiline() 165 interpreter.verify(); in testIosMultiline() 211 parser.addInterpreter(interpreter); in testParseOne() 214 interpreter.verify(); in testParseOne() 234 parser.addInterpreter(interpreter); in testParseOne() [all …]
|
/aosp12/art/runtime/ |
H A D | Android.bp | 141 "interpreter/interpreter.cc", 142 "interpreter/interpreter_cache.cc", 143 "interpreter/interpreter_common.cc", 149 "interpreter/lock_count_data.cc", 150 "interpreter/shadow_frame.cc", 151 "interpreter/unstarted_runtime.cc", 757 "interpreter/safe_math_test.cc", 897 srcs: ["interpreter/mterp/arm/*.S"], 921 srcs: ["interpreter/mterp/x86/*.S"], 962 "interpreter/mterp/arm64ng/*.S", [all …]
|
H A D | oat_quick_method_header.cc | 93 if (!interpreter::IsNterpSupported()) { in GetNterpMethodHeader() 96 uintptr_t nterp_entrypoint = reinterpret_cast<uintptr_t>(interpreter::GetNterpEntryPoint()); in GetNterpMethodHeader() 107 return interpreter::IsNterpSupported() ? (this == NterpMethodHeader) : false; in IsNterpMethodHeader()
|
H A D | common_dex_operations.h | 46 namespace interpreter { 70 interpreter::ArtInterpreterToInterpreterBridge(self, accessor, callee_frame, result); in PerformCall() 72 interpreter::ArtInterpreterToCompiledCodeBridge( in PerformCall() 76 interpreter::UnstartedRuntime::Invoke(self, accessor, callee_frame, result, first_dest_reg); in PerformCall()
|
/aosp12/frameworks/opt/vcard/java/com/android/vcard/ |
H A D | VCardParserImpl_V21.java | 225 interpreter.onEntryStarted(); in parseOneVCard() 229 interpreter.onEntryEnded(); in parseOneVCard() 350 interpreter.onEntryStarted(); in handleNest() 354 interpreter.onEntryEnded(); in handleNest() 607 interpreter.onPropertyCreated(property); 735 interpreter.onPropertyCreated(property); 998 mInterpreterList.add(interpreter); 1011 interpreter.onVCardStarted(); 1028 interpreter.onVCardEnded(); 1042 interpreter.onVCardStarted(); [all …]
|
H A D | VCardParser.java | 31 public abstract void addInterpreter(VCardInterpreter interpreter); in addInterpreter() argument 81 public void parse(InputStream is, VCardInterpreter interpreter) in parse() argument 83 addInterpreter(interpreter); in parse()
|
H A D | VCardParser_V30.java | 81 public void addInterpreter(VCardInterpreter interpreter) { in addInterpreter() argument 82 mVCardParserImpl.addInterpreter(interpreter); in addInterpreter()
|
H A D | VCardParser_V40.java | 69 public void addInterpreter(VCardInterpreter interpreter) { in addInterpreter() argument 70 mVCardParserImpl.addInterpreter(interpreter); in addInterpreter()
|
H A D | VCardParser_V21.java | 102 public void addInterpreter(VCardInterpreter interpreter) { in addInterpreter() argument 103 mVCardParserImpl.addInterpreter(interpreter); in addInterpreter()
|
/aosp12/system/chre/apps/tflm_demo/src/ |
H A D | model.cc | 51 tflite::MicroInterpreter interpreter( in run() local 53 interpreter.AllocateTensors(); in run() 55 TfLiteTensor *input = interpreter.input(0); in run() 56 TfLiteTensor *output = interpreter.output(0); in run() 58 TfLiteStatus invoke_status = interpreter.Invoke(); in run()
|
/aosp12/art/tools/cpp-define-generator/ |
H A D | globals.def | 25 #include "interpreter/mterp/mterp.h" 26 #include "interpreter/mterp/nterp.h" 65 art::interpreter::kMterpHandlerSize) 67 art::WhichPowerOf2(art::interpreter::kMterpHandlerSize)) 85 art::interpreter::kNterpHotnessMask) 87 art::POPCOUNT(art::interpreter::kNterpHotnessMask))
|
/aosp12/art/ |
H A D | Android.mk | 202 .PHONY: test-art-host-interpreter 203 test-art-host-interpreter: test-art-host-run-test-interpreter 225 .PHONY: test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX) 226 test-art-host-interpreter$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(ART_PHO… 248 .PHONY: test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX) 249 test-art-host-interpreter$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-interpreter$(2ND… 285 .PHONY: test-art-target-interpreter 286 test-art-target-interpreter: test-art-target-run-test-interpreter 308 .PHONY: test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX) 309 test-art-target-interpreter$(ART_PHONY_TEST_TARGET_SUFFIX): test-art-target-run-test-interpreter$(A… [all …]
|
/aosp12/art/tools/tracefast-plugin/ |
H A D | Android.bp | 52 name: "tracefast-interpreter-defaults", 64 name: "libtracefast-interpreter", 65 defaults: ["tracefast-interpreter-defaults"], 76 "tracefast-interpreter-defaults",
|
/aosp12/art/test/652-deopt-intrinsic/ |
H A D | info.txt | 1 Regression test for the interpreter/JIT, where the interpreter used to not
|
/aosp12/build/make/tools/rbcrun/ |
H A D | README.md | 1 # Roboleaf configuration files interpreter 31 The runner allows Starlark scripts to use the following features that Bazel's Starlark interpreter … 36 The Roboleaf configuration interpreter supports the format that Bazel uses 57 A `struct` containing the variable set by the interpreter's command line. That is, running
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
H A D | VCardRequest.java | 176 final VCardInterpreter interpreter, in readOneVCardFile() argument 186 vCardParser.addInterpreter(interpreter); in readOneVCardFile() 196 if (interpreter instanceof CustomVCardEntryConstructor) { in readOneVCardFile() 198 ((CustomVCardEntryConstructor) interpreter).clear(); in readOneVCardFile() 205 vCardParser.addInterpreter(interpreter); in readOneVCardFile()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/vcard/ |
H A D | ImportProcessor.java | 217 final VCardInterpreter interpreter, in readOneVCard() argument 224 if (i > 0 && (interpreter instanceof VCardEntryConstructor)) { in readOneVCard() 226 ((VCardEntryConstructor) interpreter).clear(); in readOneVCard() 243 mVCardParser.parse(is, interpreter); in readOneVCard()
|
/aosp12/build/soong/python/ |
H A D | builder.go | 83 launcherPath android.OptionalPath, interpreter, main, binName string, argument 106 "interp": strings.Replace(interpreter, "/", `\/`, -1),
|
/aosp12/art/runtime/interpreter/mterp/ |
H A D | README.txt | 16 The best way to become familiar with the interpreter is to look at the 69 The mterp fast interpreter achieves much of its performance advantage 70 over the C++ interpreter through its efficient mechanism of
|
/aosp12/art/runtime/interpreter/ |
H A D | interpreter_switch_impl1.cc | 23 namespace interpreter { namespace
|
H A D | interpreter_switch_impl3.cc | 23 namespace interpreter { namespace
|
H A D | interpreter_switch_impl0.cc | 23 namespace interpreter { namespace
|
H A D | interpreter_switch_impl2.cc | 23 namespace interpreter { namespace
|
/aosp12/art/test/575-checker-string-init-alias/smali/ |
H A D | TestCase.smali | 34 # Check that we're being executed by the interpreter. 61 # Check that we're being executed by the interpreter.
|
/aosp12/art/test/597-deopt-invoke-stub/ |
H A D | info.txt | 1 Test deoptimizing when returning from a quick-to-interpreter bridge.
|