HomeSort by relevance Sort by last modified time
    Searched refs:simulator (Results 76 - 100 of 107) sorted by null

1 2 34 5

  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorSimCallManager.java 17 package com.android.dialer.simulator.impl;
41 * Utility to use the simulator connection service to add phone calls. To ensure that the added
42 * calls are routed through the simulator we register ourselves as a SIM call manager using
56 /** Call type of a simulator call. */
167 return new PhoneAccount.Builder(getSimCallManagerHandle(context), "Simulator SIM call manager")
169 .setShortDescription("Simulator SIM call manager")
176 return new PhoneAccount.Builder(getVideoProviderHandle(context), "Simulator video provider")
181 .setShortDescription("Simulator video provider")
  /external/v8/
Android.v8.mk 470 src/arm/simulator-arm.cc \
499 src/arm64/simulator-arm64.cc \
539 src/mips/simulator-mips.cc \
564 src/mips64/simulator-mips64.cc \
585 src/ia32/simulator-ia32.cc \
615 src/x64/simulator-x64.cc
  /prebuilts/go/darwin-x86/src/cmd/go/internal/run/
run.go 34 cross-compiled programs when a simulator or other execution method is
  /prebuilts/go/linux-x86/src/cmd/go/internal/run/
run.go 34 cross-compiled programs when a simulator or other execution method is
  /external/compiler-rt/make/platform/
clang_darwin.mk 142 IOSSIM_DEPLOYMENT_ARGS := -mios-simulator-version-min=1.0
153 SANITIZER_IOSSIM_DEPLOYMENT_ARGS := -mios-simulator-version-min=7.0 \
  /packages/apps/Dialer/java/com/android/dialer/app/
DialtactsActivity.java 134 import com.android.dialer.simulator.Simulator;
135 import com.android.dialer.simulator.SimulatorComponent;
1763 Simulator simulator = SimulatorComponent.get(context).getSimulator(); local
    [all...]
  /external/vixl/src/aarch64/
simulator-aarch64.h 37 #include "simulator-constants-aarch64.h"
790 class Simulator : public DecoderVisitor {
792 explicit Simulator(Decoder* decoder, FILE* stream = stdout);
793 ~Simulator();
797 // Run the simulator.
807 // int32_t res = simulator.RunFrom<int32_t, int32_t>(GenerateCode(),
819 static R Wrapper(Simulator* simulator,
828 (simulator->WriteCPURegister(abi.GetNextParameterGenericOperand<P>()
832 simulator->RunFrom(code)
    [all...]
  /external/lisa/libs/utils/
env.py 627 simulator = self.conf['gem5']['simulator']
630 args = simulator.get('args', [])
664 gem5_bin = simulator['bin'],
    [all...]
  /external/vixl/test/aarch64/
test-simulator-aarch64.cc 33 #include "aarch64/test-simulator-inputs-aarch64.h"
34 #include "aarch64/test-simulator-traces-aarch64.h"
38 #include "aarch64/simulator-aarch64.h"
43 // ==== Simulator Tests ====
45 // These simulator tests check instruction behaviour against a trace taken from
53 // test-simulator-traces-aarch64.h.
63 Simulator* simulator = \
64 Test::run_debugger() ? new Debugger(&decoder) : new Simulator(&decoder); \
65 simulator->SetColouredTrace(Test::coloured_trace());
    [all...]
test-trace-aarch64.cc 40 #include "aarch64/simulator-aarch64.h"
44 // Trace tests can only work with the simulator.
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 12 #include "src/arm/simulator-arm.h"
21 // Only build the simulator if not compiling for real ARM hardware.
26 base::LazyInstance<Simulator::GlobalMonitor>::type Simulator::global_monitor_ =
35 // The ArmDebugger class is used by the simulator while debugging simulated ARM
39 explicit ArmDebugger(Simulator* sim) : sim_(sim) { }
49 Simulator* sim_;
73 PrintF("Simulator hit stop %u\n", code);
75 PrintF("Simulator hit\n");
314 cur = reinterpret_cast<int32_t*>(sim_->get_register(Simulator::sp))
    [all...]
  /art/cmdline/
cmdline_parser_test.cc 249 "class,compiler,gc,heap,jdwp,jni,monitor,profiler,signals,simulator,startup,"
262 log_verbosity.simulator = true;
cmdline_types.h 571 } else if (verbose_options[j] == "simulator") {
572 log_verbosity.simulator = true;
  /external/vixl/tools/
generate_tests.py 59 running in the simulator just yet.
89 `-> test/aarch32/test-simulator-cond-rd-rn-immediate-a32.cc
227 "type": "simulator",
229 // List of test cases for "simulator" tests, see below for
365 "type": "simulator",
367 // List of test cases for "simulator" tests, see below for
374 Above, we've decided to generate three tests: a "simulator" test and two
380 - "test/aarch32/test-simulator-{configuration name}-a32.cc"
383 recognized by the generator and, at the moment, can be one of "simulator",
384 "assembler", "macro-assembler" and "assembler-negative". Simulator tests wil
    [all...]
  /external/v8/tools/gcmole/
gcmole.lua 293 simulator = ''})
  /prebuilts/go/darwin-x86/src/cmd/go/internal/work/
build.go 516 // simulator, it is typically go_GOOS_GOARCH_exec, with
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
build.go 516 // simulator, it is typically go_GOOS_GOARCH_exec, with
  /external/v8/src/
isolate.h 95 class Simulator;
291 // the same pointer. When running on a simulator with a separate JS
338 Simulator* simulator_;
466 FIELD_ACCESSOR(Simulator*, simulator)
480 Simulator* simulator_;
    [all...]
  /art/openjdkjvmti/
OpenjdkJvmTi.cc     [all...]
  /prebuilts/go/darwin-x86/test/
run.go 81 // Disable parallelism if printing or if using a simulator.
  /prebuilts/go/linux-x86/test/
run.go 81 // Disable parallelism if printing or if using a simulator.
  /external/v8/src/arm64/
simulator-arm64.cc 12 #include "src/arm64/simulator-arm64.h"
60 void Simulator::TraceSim(const char* format, ...) {
70 const Instruction* Simulator::kEndOfSimAddress = NULL;
98 void Simulator::Initialize(Isolate* isolate) {
105 // Get the active Simulator for the current thread.
106 Simulator* Simulator::current(Isolate* isolate) {
111 Simulator* sim = isolate_data->simulator();
114 sim = new Simulator(new Decoder<DispatchingDecoderVisitor>(), isolate)
    [all...]
  /external/v8/src/ppc/
simulator-ppc.cc 17 #include "src/ppc/simulator-ppc.h"
22 // Only build the simulator if not compiling for real PPC hardware.
34 // The PPCDebugger class is used by the simulator while debugging simulated
38 explicit PPCDebugger(Simulator* sim) : sim_(sim) {}
47 Simulator* sim_;
78 PrintF("Simulator hit stop %u: %s\n", code, msg);
80 PrintF("Simulator hit %s\n", msg);
375 cur = reinterpret_cast<intptr_t*>(sim_->get_register(Simulator::sp));
600 PrintF(" When hitting a stop, the Simulator will\n");
603 Simulator::kNumOfWatchedStops)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
alldocs.go 717 // cross-compiled programs when a simulator or other execution method is
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
alldocs.go 717 // cross-compiled programs when a simulator or other execution method is
    [all...]

Completed in 617 milliseconds

1 2 34 5