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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/media/base/
text_renderer.h 105 void Read(TextTrackState* state, DemuxerStream* text_stream);
119 // Simple state tracking variable.
120 enum State {
129 State state_;
  /external/chromium_org/media/cast/transport/pacing/
paced_sender.h 91 enum State {
92 // In an unblocked state, we can send more packets.
96 // In this state, we are waiting for a callback from the udp transport.
102 // state and PostDelayTask a call to ourselves to wake up when we can
135 State state_;
  /external/chromium_org/media/cdm/ppapi/
cdm_file_io_impl.h 47 enum State {
125 State state_;
  /external/chromium_org/media/filters/
decrypting_audio_decoder.h 55 // For a detailed state diagram please see this link: http://goo.gl/8jAok
56 // TODO(xhwang): Add a ASCII state diagram in this file after this class
59 enum State {
98 State state_;
118 // (in other words, this variable can only be set in state kPendingDecode).
decrypting_video_decoder.h 45 // For a detailed state diagram please see this link: http://goo.gl/8jAok
46 // TODO(xhwang): Add a ASCII state diagram in this file after this class
48 enum State {
85 State state_;
103 // (in other words, this variable can only be set in state kPendingDecode).
  /external/chromium_org/media/formats/mp4/
mp4_stream_parser.h 42 enum State {
67 void ChangeState(State new_state);
93 State state_;
104 // These two parameters are only valid in the |kEmittingSegments| state.
  /external/chromium_org/net/filter/
gzip_header.h 56 enum State {
85 int state_; // our current State in the parsing FSM: an int so we can ++
  /external/chromium_org/net/http/
disk_cache_based_quic_server_info.h 42 enum State {
81 // DoWaitForDataReadyDone is the terminal state of the read operation.
84 // DoSetDone is the terminal state of the write operation.
90 State state_;
http_auth_handler_negotiate.h 124 enum State {
161 State next_state_;
http_proxy_client_socket.h 91 enum State {
132 State next_state_;
  /external/chromium_org/net/quic/
quic_http_stream.h 77 enum State {
106 State next_state_;
  /external/chromium_org/net/socket/
socks5_client_socket.h 74 enum State {
123 State next_state_;
socks_client_socket_pool.h 72 enum State {
82 // Runs the state transition loop.
99 State next_state_;
ssl_client_socket_nss.h 119 enum State {
156 // vetor representing a particular verification state, this method associates
191 State next_handshake_state_;
193 // The NSS SSL state machine. This is owned by |core_|.
ssl_server_socket_openssl.h 71 enum State {
142 State next_handshake_state_;
  /external/chromium_org/net/spdy/
spdy_proxy_client_socket.h 103 enum State {
133 State next_state_;
  /external/chromium_org/net/test/embedded_test_server/
http_request.h 62 // Parser state.
63 enum State {
82 // STATE_ACCEPTED state. After calling it, the parser is ready to parse
105 State state_;
  /external/chromium_org/net/tools/dump_cache/
simple_cache_dumper.h 37 enum State {
76 State state_;
url_to_filename_encoder.cc 172 enum State {
179 State state = kStart; local
184 switch (state) {
187 state = kEscape;
197 state = kFirstDigit;
199 state = kTruncate;
202 state = kEscapeDot; // Look for at most one more dot.
207 state = kStart;
217 state = kStart
    [all...]
  /external/chromium_org/net/url_request/
view_cache_helper.h 54 enum State {
82 // Runs the state transition loop.
85 // Each of these methods corresponds to a State value. If there is an
86 // argument, the value corresponds to the return of the previous state or
115 State next_state_;
  /external/chromium_org/net/websockets/
websocket_job.h 39 // This is state of WebSocket, not SocketStream.
40 enum State {
52 State state() const { return state_; } function in class:net::WebSocketJob
124 State state_;
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
SwipePinchDetector.java 17 /** Current state of the gesture. */
18 private enum State {
23 private State mState = State.UNKNOWN;
43 mState = State.UNKNOWN;
56 return mState == State.SWIPE;
61 return mState == State.PINCH;
69 * revert back to the original UNKNOWN state.
90 // If the gesture is known, there is no need for further processing - the state should
92 if (mState != State.UNKNOWN)
    [all...]
  /external/chromium_org/remoting/host/setup/
daemon_controller.h 29 enum State {
30 // Placeholder state for platforms on which the daemon process is not
50 // The state cannot be determined. This could indicate that the plugin
52 // user for which to query state on a multi-user system.
116 // Return the "installed/running" state of the daemon process. This method
118 virtual State GetState() = 0;
165 // Return the "installed/running" state of the daemon process.
171 State GetState();
207 // GetState until the state is STATE_STOPPED.
  /external/chromium_org/remoting/protocol/
connection_to_host.h 56 enum State {
69 // Called when state of the connection changes.
70 virtual void OnConnectionState(State state, ErrorCode error) = 0;
72 // Called when ready state of the connection changes. When |ready|
100 // |event_callback| will be notified of changes in the state of the connection
120 SignalStrategy::State state) OVERRIDE;
131 virtual void OnSessionStateChange(Session::State state) OVERRIDE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryParser.h 80 typedef void (MediaQueryParser::*State)(MediaQueryTokenType, const MediaQueryToken&);
82 void setStateAndRestrict(State, MediaQuery::Restrictor);
85 State m_state;
91 const static State ReadRestrictor;
92 const static State ReadMediaType;
93 const static State ReadAnd;
94 const static State ReadFeatureStart;
95 const static State ReadFeature;
96 const static State ReadFeatureColon;
97 const static State ReadFeatureValue
    [all...]

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 91011>>