HomeSort by relevance Sort by last modified time
    Searched defs:State (Results 1 - 25 of 724) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/UI/Common/
UpdatePair.h 13 NUpdateArchive::NPairState::EEnum State;
  /external/chromium_org/chrome/browser/resources/cryptotoken/
singlesigner.js 55 /** @private {SingleGnubbySigner.State} */
56 this.state_ = SingleGnubbySigner.State.INIT;
80 SingleGnubbySigner.State = {
81 /** Initial state. */
106 if (this.state_ == SingleGnubbySigner.State.INIT) {
107 this.state_ = SingleGnubbySigner.State.OPENING;
120 this.state_ = SingleGnubbySigner.State.CLOSING;
130 this.state_ = SingleGnubbySigner.State.CLOSED;
158 case SingleGnubbySigner.State.INIT:
161 case SingleGnubbySigner.State.OPENING
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TaintTesterChecker.cpp 46 ProgramStateRef State = C.getState();
47 if (!State)
50 if (State->isTainted(E, C.getLocationContext())) {
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.js 9 * Class that keeps track of current burn process state.
10 * @param {Object} strings Localized state strings.
13 function State(strings) {
15 this.changeState(State.StatesEnum.DEVICE_NONE);
19 * State Enum object.
21 State.StatesEnum = {
57 State.prototype = {
59 * Sets the state strings.
60 * @param {Object} strings Localized state strings.
63 State.StatesEnum.DEVICE_NONE.statusText
    [all...]
  /external/chromium_org/base/i18n/
streaming_utf8_validator.h 23 // The validator exposes 3 states. It starts in state VALID_ENDPOINT. As it
26 // state changes permanently to INVALID.
27 enum State {
41 State AddBytes(const char* data, size_t size);
43 // Return the object to a freshly-constructed state so that it can be re-used.
51 // The current state of the validator. Value 0 is the initial/valid state.
52 // The state is stored as an offset into |kUtf8ValidatorTables|. The special
53 // state |kUtf8InvalidState| is invalid.
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_bar.h 12 enum State {
24 // Used when the state changes to indicate if the transition should be
  /external/chromium_org/components/password_manager/core/common/
password_manager_ui.h 14 // The current state of the password manager's UI.
15 enum State {
28 // to be visible, in the management state.
32 // The icon needs to be visible, in the blacklisted state.
36 // Returns true if |state| represents a pending password.
37 bool IsPendingState(State state);
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl_android.h 46 enum State {
59 State state_;
  /external/chromium_org/media/audio/
audio_input_ipc.h 15 // Contains IPC notifications for the state of the server side
16 // (AudioInputController) audio state changes and when an AudioInputController
21 enum State {
41 // Called when state of an audio stream has changed.
42 virtual void OnStateChanged(State state) = 0;
audio_output_ipc.h 15 // Contains IPC notifications for the state of the server side
16 // (AudioOutputController) audio state changes and when an AudioOutputController
21 // sends information about the current playback state and error to the
23 enum State {
30 // Called when state of an audio stream has changed.
31 virtual void OnStateChanged(State state) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameLoaderStateMachine.h 36 // Encapsulates a state machine for FrameLoader. Note that this is different from FrameState,
37 // which stores the state of the current load that FrameLoader is executing.
43 // Once a load has been committed, the state may
46 enum State {
57 void advanceTo(State);
60 State m_state;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.h 48 enum State { Initial, Pending, Done };
49 State m_state;
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 23 ProgramStateRef State = getState();
25 SVal L = State->getSVal(Callee, Pred->getLocationContext());
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
State.java 7 final class State
9 int state; field in class:State
12 State(@SuppressWarnings("hiding") int state, @SuppressWarnings("hiding") ArrayList nodes)
14 this.state = state;
  /external/libunwind/doc/
libunwind-ia64.tex 40 \section{Machine-State}
42 The machine-state (set of registers) that is accessible through
87 the remaining machine-state corresponds to the register-values that
186 the previous frame-state register.
  /external/markdown/markdown/
blockparser.py 4 class State(list):
5 """ Track the current and nested state of the parser.
7 This utility class is used to track the state of the BlockParser and
9 a list. Each time a state is set, that state is appended to the end of the
10 list. Each time a state is reset, that state is removed from the end of
13 Therefore, each time a state is set for a nested block, that state must be
14 reset when we back out of that level of nesting or the state could b
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
panoramiXext.h 41 int State; /* PanroamiXOff, PanoramiXOn */
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
suggest_apps_dialog.js 43 * @param {Object} state Static state of suggest app dialog.
47 function SuggestAppsDialog(parentNode, state) {
78 state.overrideCwsContainerUrlForTest || CWS_WIDGET_URL;
80 state.overrideCwsContainerOriginForTest || CWS_WIDGET_ORIGIN;
85 this.state_ = SuggestAppsDialog.State.UNINITIALIZED;
100 SuggestAppsDialog.State = {
101 UNINITIALIZED: 'SuggestAppsDialog.State.UNINITIALIZED',
102 INITIALIZING: 'SuggestAppsDialog.State.INITIALIZING',
104 'SuggestAppsDialog.State.INITIALIZE_FAILED_CLOSING'
    [all...]
  /external/chromium_org/remoting/webapp/
host_setup_dialog.js 11 * @param {Array.<remoting.HostSetupFlow.State>} sequence Sequence of
24 remoting.HostSetupFlow.State = {
50 /** @return {remoting.HostSetupFlow.State} Current state of the flow. */
56 if (this.state_ == remoting.HostSetupFlow.State.NONE) {
64 this.state_ = remoting.HostSetupFlow.State.NONE;
74 this.state_ = remoting.HostSetupFlow.State.NONE;
76 // Current step failed, so switch to corresponding error state.
77 if (this.state_ == remoting.HostSetupFlow.State.STARTING_HOST) {
79 this.state_ = remoting.HostSetupFlow.State.REGISTRATION_FAILED
    [all...]
host_session.js 30 remoting.HostSession.State = {
43 * @param {string} stateString The string representation of the host state.
44 * @return {remoting.HostSession.State} The HostSession.State enum value
47 remoting.HostSession.State.fromString = function(stateString) {
48 if (!remoting.HostSession.State.hasOwnProperty(stateString)) {
49 console.error('Unexpected HostSession.State string: ', stateString);
50 return remoting.HostSession.State.UNKNOWN;
52 return remoting.HostSession.State[stateString];
61 * @param {function(remoting.HostSession.State):void} onStateChange
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_flash_message_loop_impl.cc 15 class PPB_Flash_MessageLoop_Impl::State
16 : public base::RefCounted<PPB_Flash_MessageLoop_Impl::State> {
18 State() : result_(PP_OK), run_called_(false), quit_called_(false) {}
35 friend class base::RefCounted<State>;
36 virtual ~State() {}
45 : Resource(ppapi::OBJECT_IS_IMPL, instance), state_(new State()) {}
86 scoped_refptr<State> state_protector(state_);
  /external/chromium_org/net/quic/crypto/
quic_server_info.cc 21 QuicServerInfo::State::State() {}
23 QuicServerInfo::State::~State() {}
25 void QuicServerInfo::State::Clear() {
39 const QuicServerInfo::State& QuicServerInfo::state() const { function in class:net::QuicServerInfo
43 QuicServerInfo::State* QuicServerInfo::mutable_state() {
48 State* state = mutable_state() local
59 State* state = mutable_state(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
State.java 30 /** A generic state machine state. */
31 public abstract class State {
36 /** An accept state is an end of rule state for lexers and
  /external/ceres-solver/internal/ceres/
line_search_minimizer.h 48 struct State {
49 State(int num_parameters,
  /external/chromium_org/ash/accelerators/
exit_warning_handler.h 30 // State Transition Diagrams:
59 enum State {
74 State state_;

Completed in 346 milliseconds

1 2 3 4 5 6 7 8 91011>>