HomeSort by relevance Sort by last modified time
    Searched refs:State (Results 51 - 75 of 3236) sorted by null

1 23 4 5 6 7 8 91011>>

  /tools/dexter/slicer/
control_flow_graph.cc 33 SLICER_WEAK_CHECK(state_ == State::Outside);
34 SLICER_CHECK(state_ != State::BlockBody);
36 state_ = State::Outside;
42 case State::Outside:
44 state_ = State::BlockBody;
46 case State::BlockHeader:
47 state_ = State::BlockBody;
49 case State::BlockBody:
80 case State::Outside:
83 case State::BlockBody
    [all...]
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 32 import com.example.android.tictactoe.library.GameView.State;
88 State player = mGameView.getCurrentPlayer();
89 if (player == State.UNKNOWN) {
90 player = State.fromInt(getIntent().getIntExtra(EXTRA_START_PLAYER, 1));
95 if (player == State.PLAYER2) {
98 if (player == State.WIN) {
104 private State selectTurn(State player) {
108 if (player == State.PLAYER1) {
112 } else if (player == State.PLAYER2) {
    [all...]
  /external/skia/src/core/
SkBitmapController.h 23 class State : ::SkNoncopyable {
25 virtual ~State() {}
42 State* requestBitmap(const SkBitmapProvider&, const SkMatrix& inverse, SkFilterQuality,
45 State* requestBitmap(const SkBitmapProvider& bp, const SkMatrix& inv, SkFilterQuality quality) {
50 virtual State* onRequestBitmap(const SkBitmapProvider&, const SkMatrix& inv, SkFilterQuality,
63 State* onRequestBitmap(const SkBitmapProvider&, const SkMatrix& inverse, SkFilterQuality,
  /external/skqp/src/core/
SkBitmapController.h 23 class State : ::SkNoncopyable {
25 virtual ~State() {}
42 State* requestBitmap(const SkBitmapProvider&, const SkMatrix& inverse, SkFilterQuality,
45 State* requestBitmap(const SkBitmapProvider& bp, const SkMatrix& inv, SkFilterQuality quality) {
50 virtual State* onRequestBitmap(const SkBitmapProvider&, const SkMatrix& inv, SkFilterQuality,
63 State* onRequestBitmap(const SkBitmapProvider&, const SkMatrix& inverse, SkFilterQuality,
  /external/swiftshader/third_party/subzero/src/
IceRNG.cpp 33 : State(Seed) {}
37 constexpr unsigned NumBitsGlobalSeed = CHAR_BIT * sizeof(State);
41 State = Seed ^ ((uint64_t)RandomizationPassID
47 State = (16807 * State) % MAX;
48 return State % Max;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeFalsingManagerAdapter.java 33 public void transitionTo(DozeMachine.State oldState, DozeMachine.State newState) {
37 private boolean isAodMode(DozeMachine.State state) {
38 switch (state) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
OperatorInfo.java 26 public enum State {
37 private State mState = State.UNKNOWN;
55 public State
63 State state) {
69 mState = state;
84 this(operatorAlphaLong, operatorAlphaShort, operatorNumeric, State.UNKNOWN);
88 * See state strings defined in ril.h RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
90 private static State rilStateToState(String s)
    [all...]
  /frameworks/minikin/tests/perftests/
FontLanguage.cpp 22 static void BM_Locale_en_US(benchmark::State& state) {
23 while (state.KeepRunning()) {
29 static void BM_Locale_en_Latn_US(benchmark::State& state) {
30 while (state.KeepRunning()) {
36 static void BM_Locale_en_Latn_US_u_em_emoji(benchmark::State& state) {
37 while (state.KeepRunning()) {
  /system/bt/btif/include/
btif_state_machine.h 26 * State machine used by BTIF components.
33 * A class to represent the state in the State Machine.
35 class State {
42 * @param sm the State Machine to use
43 * @param state_id the unique State ID. It should be a non-negative number.
45 State(BtifStateMachine& sm, int state_id) : sm_(sm), state_id_(state_id) {}
47 virtual ~State() = default;
61 * Get the State ID.
63 * @return the State I
    [all...]
  /system/core/logcat/tests/
exec_benchmark.cpp 25 static void logcat_popen_libc(benchmark::State& state, const char* cmd) {
26 while (state.KeepRunning()) {
34 static void BM_logcat_stat_popen_libc(benchmark::State& state) {
35 logcat_popen_libc(state, "logcat -b all -S");
39 static void logcat_popen_liblogcat(benchmark::State& state, const char* cmd) {
40 while (state.KeepRunning()) {
49 static void BM_logcat_stat_popen_liblogcat(benchmark::State& state)
    [all...]
  /bionic/benchmarks/
unistd_benchmark.cpp 23 static void BM_unistd_getpid(benchmark::State& state) {
24 while (state.KeepRunning()) {
30 static void BM_unistd_getpid_syscall(benchmark::State& state) {
31 while (state.KeepRunning()) {
42 static void BM_unistd_gettid(benchmark::State& state) {
43 while (state.KeepRunning()) {
51 void BM_unistd_gettid_syscall(benchmark::State& state)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /external/perfetto/src/tracing/test/
hello_world_benchmark.cc 3 static void BM_StringCreation(benchmark::State& state) {
4 while (state.KeepRunning())
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
State.java 22 public enum State {
40 * The status for work that has completed in a failure state
56 * Returns {@code true} if this State is considered finished.
  /packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/testutils/
ShadowStateMachine.java 19 import com.android.tv.settings.connectivity.util.State;
27 private static State.StateCompleteListener sListener;
30 public State.StateCompleteListener getListener() {
38 public void setListener(State.StateCompleteListener listener) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeMap.h 39 DynamicTypeInfo getDynamicTypeInfo(ProgramStateRef State,
42 /// \brief Set dynamic type information of the region; return the new state.
43 ProgramStateRef setDynamicTypeInfo(ProgramStateRef State, const MemRegion *Reg,
46 /// \brief Set dynamic type information of the region; return the new state.
47 inline ProgramStateRef setDynamicTypeInfo(ProgramStateRef State,
50 return setDynamicTypeInfo(State, Reg,

Completed in 863 milliseconds

1 23 4 5 6 7 8 91011>>