HomeSort by relevance Sort by last modified time
    Searched defs:State (Results 76 - 100 of 129) sorted by null

1 2 34 5 6

  /external/chromium/net/http/
http_cache_transaction.h 97 enum State {
140 // Runs the state transition loop.
143 // Each of these methods corresponds to a State value. If there is an
144 // argument, the value corresponds to the return of the previous state or
283 State next_state_;
300 State target_state_;
http_transaction_unittest.h 184 enum State {
290 NOTREACHED() << "define some mock state transitions";
  /external/skia/include/views/
SkView.h 133 enum State {
140 State fState;
SkWidget.h 77 enum State {
82 State getButtonState() const { return fState; }
83 void setButtonState(State);
93 State fState;
256 enum State {
261 State getState() const { return fState; }
262 void setState(State);
269 State fState;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 44 // This is a VectorFstBaseImpl container that holds a State similar to
50 // final weight even if the state is non-final to mark it as
65 typedef S State;
89 // Gets a state from its ID; state must exist.
97 // Gets a state from its ID; state must exist.
105 // Gets a state from its ID; return 0 if it doesn't exist.
115 // Gets a state from its ID; add it if necessary.
118 return cache_first_state_; // Return 1st cached state
165 S *state = ExtendState(s); local
171 S *state = ExtendState(s); local
177 S *state = ExtendState(s); local
199 S *state = ExtendState(s); local
208 const S *state = CheckState(s); local
219 const S *state = CheckState(s); local
229 const S *state = GetState(s); local
234 const S *state = GetState(s); local
239 const S *state = GetState(s); local
244 const S *state = GetState(s); local
250 const S *state = GetState(s); local
285 S* state = VectorFstBaseImpl<S>::GetState(s); local
    [all...]
factor-weight.h 156 Element(StateId s, Weight w) : state(s), weight(w) {}
158 StateId state; // Input state Id member in struct:fst::FactorWeightFstImpl::Element
192 Weight w = e.state == kNoStateId
194 : (Weight) Times(e.weight, fst_->Final(e.state));
229 // Find state corresponding to an element. Create new state
233 while (unfactored_.size() <= (unsigned int)e.state)
235 if (unfactored_[e.state] == kNoStateId) {
236 unfactored_[e.state] = elements_.size()
    [all...]
rmepsilon.h 54 // Computation state of the epsilon-removal algorithm.
68 // Compute arcs and final weight for state 's'
71 // Returns arcs of expanded state.
74 // Returns final weight of expanded state.
116 // Distance from state being expanded in epsilon-closure.
118 // Shortest distance algorithm computation state.
121 // in the arcs vector of the state being expanded. 'e' corresponds
123 // equal to the state being expanded.
127 vector<bool> visited_; // '[i] = true' if state 'i' has been visited
129 vector<Arc> arcs_; // Arcs of state being expande
144 StateId state = eps_queue_.top(); local
247 StateId state = states.back(); local
    [all...]
synchronize.h 62 : state(s), istring(i), ostring(o) {}
64 StateId state; // Input state Id member in struct:fst::SynchronizeFstImpl::Element
109 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
191 // Finds state corresponding to an element. Creates new state
206 // Computes the outgoing transitions from a state, creating new destination
211 if (e.state != kNoStateId)
212 for (ArcIterator< Fst<A> > ait(*fst_, e.state);
    [all...]
determinize.h 103 // Options for finite-state transducer determinization.
133 typedef CacheState<A> State;
218 StateId state_id; // Input state Id
264 // Finds the state corresponding to a subset. Only creates a new state
267 // if it creates a new state).
286 // Computes the outgoing transitions from a state, creating new destination
325 // Adds an arc from state S to the destination state associated
344 // Found duplicate state: sums state weight and deletes dup
    [all...]
map.h 35 // A final weight is mapped to an arc to the superfinal state
37 // The superfinal state will be added only if it is needed.
40 // A final weight is mapped to an arc to the superfinal state
42 // Zero(). The superfinal state is always added (if the input is
65 // e.g. whether to add a superfinal state. They will use the Properties()
72 // for cases that we need to change the state of the user's mapper.
116 // Add a superfinal state if not already done.
198 // Add a superfinal state if not already done.
257 using VectorFstBaseImpl<typename CacheImpl<B>::State>::NumStates;
417 // Maps from output state to input state
    [all...]
replace.h 76 typedef CacheState<A> State;
82 // \brief Tuple of information that uniquely defines a state
92 StateId fst_state; // current state in fst being walked, not to be
176 // one state for each fst
180 // an arc from each state (representing the fst) to the
181 // state representing the fst being replaced
217 // Return or compute start state of replace fst
239 // return final weight of state (kInfWeight means state is not final)
281 // Find/create an Fst state given a StateTuple. Only create a ne
    [all...]
  /external/v8/src/
frames.h 51 enum State {
73 bool is_entry() { return state() == ENTRY; }
74 bool is_try_catch() { return state() == TRY_CATCH; }
75 bool is_try_finally() { return state() == TRY_FINALLY; }
83 inline State state() const;
162 struct State {
182 // Compute the stack frame type for the given state.
183 static Type ComputeType(State* state);
    [all...]
global-handles.cc 178 VMState state(EXTERNAL);
189 enum State {
196 State state_;
201 // Provided data for callback. In DESTROYED state, this is used for
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 31 enum State {
39 State (int value) {this.value = value;}
46 State state; field in class:CallInfo
51 CallInfo (boolean isMT, State state, boolean isMpty, String number) {
53 this.state = state;
66 return new CallInfo (false, State.DIALING, false, number);
71 return new CallInfo (true, State.INCOMING, false, number)
    [all...]
  /frameworks/base/voip/java/android/net/sip/
SipSession.java 35 public static class State {
70 * Converts the state to string.
72 public static String toString(int state) {
73 switch (state) {
99 private State() {
285 * Gets the session state. The value returned must be one of the states in
286 * {@link State}.
288 * @return the session state
295 return State.NOT_DEFINED;
343 * registration. The method is only valid to call when the session state i
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
RecognitionView.java 73 private enum State {LISTENING, WORKING, READY}
74 private State mState = State.READY;
82 if (mState != State.LISTENING) {
146 if (mState == State.WORKING) {
166 mState = State.LISTENING;
181 mState = State.READY;
194 mState = State.WORKING;
313 mState = State.READY;
  /external/chromium/base/third_party/symbolize/
demangle.cc 138 // State needed for demangling.
151 } State;
174 static void InitState(State *state, const char *mangled,
176 state->mangled_cur = mangled;
177 state->mangled_end = mangled + StrLen(mangled);
178 state->out_cur = out;
179 state->out_begin = out;
180 state->out_end = out + out_size;
181 state->prev_name = NULL
1224 State state; local
    [all...]
  /external/chromium/base/
tracked_objects.h 28 // copying. In the "stable" state, which is reached relatively quickly, there
233 // Simple print of internal state.
661 // chooses to try to re-run the browser many times, we maintain global state and
689 enum State {
694 static State state_;
  /external/chromium/net/ftp/
ftp_network_transaction.h 118 // Runs the state transition loop.
121 // Each of these methods corresponds to a State value. Those with an input
122 // argument receive the result from the previous state. If a method returns
124 // next state method as the result arg.
224 enum State {
257 State next_state_;
  /external/chromium/net/socket_stream/
socket_stream.h 174 enum State {
267 State next_state_;
  /external/libnfc-nxp/src/
phFriNfc_SmtCrdFmt.h 319 /**< \internal The state of the operation. */
320 uint8_t State;
322 /**< \internal Stores the card state Ex: Blank/Formatted etc. */
361 * \copydoc page_reg Resets the component instance to the initial state and initializes the
474 * when an I/O operation has finished. The internal state machine decides
479 * The function call scheme is according to \ref grp_interact. No State reset is performed during
485 * the state machine of this function like a regular return value of an internally
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 255 // Link to the next state to form a stack.
259 // Composite object we're processing in this state.
287 class State : public StateBase {
294 explicit State(v8::Handle<T> composite) : StateBase(composite)
299 // Helper to clean up the state stack in case of errors.
308 StateBase* state = *m_stack; local
309 while (state) {
310 StateBase* tmp = state->nextState();
311 delete state;
312 state = tmp
    [all...]
  /frameworks/base/core/java/android/widget/
AppSecurityPermissions.java 57 private enum State {
84 private State mCurrentState;
485 mCurrentState = State.NO_PERMS;
487 mCurrentState = (mNormalMap.size() > 0) ? State.BOTH : State.DANGEROUS_ONLY;
489 mCurrentState = State.NORMAL_ONLY;
  /frameworks/base/include/media/stagefright/
OMXCodec.h 77 enum State {
148 State mState;
248 static bool isIntermediateState(State state);
255 void setState(State newState);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 75 private ToggleAction.State mAirplaneState = ToggleAction.State.Off;
92 // get notified of phone state changes
178 // In ECM mode airplane state cannot be changed
181 mState = buttonOn ? State.TurningOn : State.TurningOff;
243 silentModeOn ? ToggleAction.State.On : ToggleAction.State.Off);
366 * A single press action maintains no state, just responds to a press
408 enum State {
    [all...]

Completed in 1751 milliseconds

1 2 34 5 6