HomeSort by relevance Sort by last modified time
    Searched defs:AppState (Results 1 - 4 of 4) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/app/state/
AppState.java 39 * AppState represents a continously executing code inside the main loop.
40 * An <code>AppState</code> can track when it is attached to the
41 * {@link AppStateManager} or when it is detached. <br/><code>AppState</code>s
42 * are initialized in the render thread, upon a call to {@link AppState#initialize(com.jme3.app.state.AppStateManager, com.jme3.app.Application) }
43 * and are de-initialized upon a call to {@link AppState#cleanup()}.
45 * {@link AppState#isInitialized() } as specified above.<br/>
50 public interface AppState {
53 * Called to initialize the AppState.
67 * Enable or disable the functionality of the <code>AppState</code>.
69 * <code>AppState</code> starts as being enabled by default
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_helper.cc 19 struct AppState {
20 AppState();
21 ~AppState();
23 bool Equals(const AppState& other) const;
29 typedef std::map<std::string, AppState> AppStateMap;
31 AppState::AppState() {}
33 AppState::~AppState() {}
35 bool AppState::IsValid() const
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_controller.h 64 enum AppState {
253 AppState app_state) = 0;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccCardApplicationStatus.java 39 public enum AppState{
102 public AppState app_state;
131 public AppState AppStateFromRILInt(int state) {
132 AppState newState;
135 case 0: newState = AppState.APPSTATE_UNKNOWN; break;
136 case 1: newState = AppState.APPSTATE_DETECTED; break;
137 case 2: newState = AppState.APPSTATE_PIN; break;
138 case 3: newState = AppState.APPSTATE_PUK; break;
139 case 4: newState = AppState.APPSTATE_SUBSCRIPTION_PERSO; break;
140 case 5: newState = AppState.APPSTATE_READY; break
    [all...]

Completed in 517 milliseconds