HomeSort by relevance Sort by last modified time
    Searched full:stateid (Results 26 - 50 of 187) sorted by null

12 3 4 5 6 7 8

  /external/openfst/src/include/fst/
vector-fst.h 46 typedef typename Arc::StateId StateId;
51 for (StateId s = 0; s < states_.size(); ++s)
55 StateId Start() const { return start_; }
57 Weight Final(StateId s) const { return states_[s]->final; }
59 StateId NumStates() const { return states_.size(); }
61 size_t NumArcs(StateId s) const { return states_[s]->arcs.size(); }
63 void SetStart(StateId s) { start_ = s; }
65 void SetFinal(StateId s, Weight w) { states_[s]->final = w; }
67 StateId AddState()
    [all...]
edit-fst.h 40 // except for DeleteStates(const vector<StateId> &); thus, new nodes may also be
73 typedef typename A::StateId StateId;
74 typedef typename unordered_map<StateId, StateId>::const_iterator
76 typedef typename unordered_map<StateId, Weight>::const_iterator
116 StateId NumNewStates() const {
121 StateId EditedStart() const {
125 Weight Final(StateId s, const WrappedFstT *wrapped) const {
137 size_t NumArcs(StateId s, const WrappedFstT *wrapped) const
    [all...]
concat.h 48 typedef typename Arc::StateId StateId;
65 StateId start1 = fst1->Start();
71 StateId numstates1 = fst1->NumStates();
78 StateId s1 = fst1->AddState();
79 StateId s2 = siter2.Value();
91 StateId start2 = fst2.Start();
92 for (StateId s1 = 0; s1 < numstates1; ++s1) {
114 typedef typename Arc::StateId StateId;
    [all...]
cache.h 50 // S *Allocate(StateId s);
51 // void Free(S *state, StateId s);
59 typedef typename S::Arc::StateId StateId;
67 S *Allocate(StateId s) {
77 void Free(S *state, StateId s) {
109 typedef typename Arc::StateId StateId;
163 for (StateId s = 0; s < impl.NumStates(); ++s) {
184 const S *GetState(StateId s) const
    [all...]
rmepsilon.h 52 typedef typename Arc::StateId StateId;
57 StateId state_threshold; // Pruning state threshold.
61 StateId n = kNoStateId)
74 typedef typename Arc::StateId StateId;
84 void Expand(StateId s);
102 StateId nextstate;
106 Element(Label i, Label o, StateId s)
129 typedef unordered_map<Element, pair<StateId, size_t>
    [all...]
union.h 45 typedef typename Arc::StateId StateId;
59 StateId numstates1 = fst1->NumStates();
64 StateId start2 = fst2.Start();
78 StateId s1 = fst1->AddState();
79 StateId s2 = siter.Value();
90 StateId start1 = fst1->Start();
100 StateId nstart1 = fst1->AddState();
138 typedef typename A::StateId StateId;
    [all...]
randgen.h 49 typedef typename A::StateId StateId;
54 size_t operator()(const Fst<A> &fst, StateId s) const {
72 typedef typename A::StateId StateId;
77 size_t operator()(const Fst<A> &fst, StateId s) const {
113 typedef typename A::StateId StateId;
121 size_t operator()(const Fst<A> &fst, StateId s,
141 typedef typename A::StateId StateId
    [all...]
expanded-fst.h 38 typedef typename A::StateId StateId;
40 virtual StateId NumStates() const = 0; // State count
95 typename A::Weight Final(const ExpandedFst<A> &fst, typename A::StateId s) {
100 ssize_t NumArcs(const ExpandedFst<A> &fst, typename A::StateId s) {
105 ssize_t NumInputEpsilons(const ExpandedFst<A> &fst, typename A::StateId s) {
110 ssize_t NumOutputEpsilons(const ExpandedFst<A> &fst, typename A::StateId s) {
129 typedef typename Arc::StateId StateId;
133 virtual StateId NumStates() const { return GetImpl()->NumStates();
    [all...]
complement.h 61 typedef typename A::StateId StateId;
81 StateId Start() const {
85 StateId start = fst_->Start();
93 Weight Final(StateId s) const {
100 size_t NumArcs(StateId s) const {
107 size_t NumInputEpsilons(StateId s) const {
111 size_t NumOutputEpsilons(StateId s) const {
148 typedef typename A::StateId StateId;
    [all...]
determinize.h 116 typedef typename A::StateId StateId;
121 DeterminizeElement(StateId s, Weight w) : state_id(s), weight(w) {}
132 StateId state_id; // Input state Id
149 typedef typename Arc::StateId StateId;
156 void operator()(StateId s, LabelMap *label_map) {}
168 // typedef typename Arc::StateId StateId;
182 // StateId FindState(Subset *subset)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowStateListDrawable.java 25 public void addState(int stateId, int resId) {
26 stateToResource.put(stateId, resId);
29 public int getResourceIdForState(int stateId) {
30 return stateToResource.get(stateId);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
reverse.h 37 typedef typename Arc::StateId StateId;
44 StateId istart = ifst.Start();
45 StateId ostart = ofst->AddState();
51 StateId is = siter.Value();
52 StateId os = is + 1;
69 StateId nos = iarc.nextstate + 1;
cache.h 68 typedef typename Arc::StateId StateId;
90 const S *GetState(StateId s) const {
98 S *GetState(StateId s) {
106 const S *CheckState(StateId s) const {
116 S *ExtendState(StateId s) {
157 void SetStart(StateId s) {
164 void SetFinal(StateId s, Weight w) {
170 void AddArc(StateId s, const Arc &arc) {
176 void SetArcs(StateId s)
    [all...]
concat.h 40 typedef typename Arc::StateId StateId;
44 StateId start1 = fst1->Start();
51 StateId numstates1= fst1->NumStates();
56 StateId s1 = fst1->AddState();
57 StateId s2 = siter2.Value();
68 StateId start2 = fst2.Start();
69 for (StateId s1 = 0; s1 < numstates1; ++s1) {
111 typedef typename A::StateId StateId;
    [all...]
mutable-fst.h 37 typedef typename A::StateId StateId;
41 virtual void SetStart(StateId) = 0; // Set the initial state
42 virtual void SetFinal(StateId, Weight) = 0; // Set a state's final weight
45 virtual StateId AddState() = 0; // Add a state, return its ID
46 virtual void AddArc(StateId, const A &arc) = 0; // Add an arc to state
48 virtual void DeleteStates(const vector<StateId>&) = 0; // Delete some states
50 virtual void DeleteArcs(StateId, size_t n) = 0; // Delete some arcs at state
51 virtual void DeleteArcs(StateId) = 0; // Delete all arcs at state
110 virtual void InitMutableArcIterator(StateId s
    [all...]
union.h 38 typedef typename Arc::StateId StateId;
42 StateId start2 = fst2.Start();
46 StateId numstates1 = fst1->NumStates();
54 StateId s1 = fst1->AddState();
55 StateId s2 = siter.Value();
65 StateId start1 = fst1->Start();
75 StateId nstart1 = fst1->AddState();
113 typedef typename A::StateId StateId;
    [all...]
factor-weight.h 150 typedef typename A::StateId StateId;
156 Element(StateId s, Weight w) : state(s), weight(w) {}
158 StateId state; // Input state Id
177 StateId Start() {
179 StateId s = fst_->Start();
182 StateId start = FindState(Element(fst_->Start(), Weight::One()));
188 Weight Final(StateId s) {
204 size_t NumArcs(StateId s) {
210 size_t NumInputEpsilons(StateId s)
    [all...]
compose.h 102 typedef typename A::StateId StateId;
127 StateId Start() {
129 StateId start = ComputeStart();
137 Weight Final(StateId s) {
145 virtual void Expand(StateId s) = 0;
147 size_t NumArcs(StateId s) {
153 size_t NumInputEpsilons(StateId s) {
159 size_t NumOutputEpsilons(StateId s) {
165 void InitArcIterator(StateId s, ArcIteratorData<A> *data)
    [all...]
synchronize.h 54 typedef typename A::StateId StateId;
61 Element(StateId s, const String *i, const String *o)
64 StateId state; // Input state Id
94 StateId Start() {
96 StateId s = fst_->Start();
100 StateId start = FindState(Element(fst_->Start(), empty, empty));
106 Weight Final(StateId s) {
118 size_t NumArcs(StateId s) {
124 size_t NumInputEpsilons(StateId s)
    [all...]
shortest-distance.h 35 typedef typename Arc::StateId StateId;
39 StateId source; // If kNoStateId, use the Fst's initial state
42 ShortestDistanceOptions(Queue *q, ArcFilter filt, StateId src = kNoStateId,
57 typedef typename Arc::StateId StateId;
75 void ShortestDistance(StateId source);
87 vector<StateId> sources_; // Source state for ith state in 'distance_',
95 StateId source) {
114 while ((StateId)distance_->size() <= source)
    [all...]
expanded-fst.h 31 typedef typename A::StateId StateId;
33 virtual StateId NumStates() const = 0; // State count
82 typename Arc::StateId CountStates(const Fst<Arc> &fst) {
87 typename Arc::StateId nstates = 0;
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_objects_infos_RigidBodyMotionState.cpp 62 (JNIEnv *env, jobject object, jlong stateId, jobject location, jobject rotation) {
63 jmeMotionState* motionState = reinterpret_cast<jmeMotionState*>(stateId);
78 (JNIEnv *env, jobject object, jlong stateId, jobject value) {
79 jmeMotionState* motionState = reinterpret_cast<jmeMotionState*>(stateId);
94 (JNIEnv *env, jobject object, jlong stateId, jobject value) {
95 jmeMotionState* motionState = reinterpret_cast<jmeMotionState*>(stateId);
110 (JNIEnv *env, jobject object, jlong stateId, jobject value) {
111 jmeMotionState* motionState = reinterpret_cast<jmeMotionState*>(stateId);
126 (JNIEnv *env, jobject object, jlong stateId) {
127 jmeMotionState* motionState = reinterpret_cast<jmeMotionState*>(stateId);
    [all...]
  /external/openfst/src/include/fst/script/
rmepsilon.h 68 typedef typename Arc::StateId StateId;
76 AutoQueue<StateId> queue(*fst, distance, EpsilonArcFilter<Arc>());
77 fst::RmEpsilonOptions<Arc, AutoQueue<StateId> > ropts(
84 FifoQueue<StateId> queue;
85 fst::RmEpsilonOptions<Arc, FifoQueue<StateId> > ropts(
92 LifoQueue<StateId> queue;
93 fst::RmEpsilonOptions<Arc, LifoQueue<StateId> > ropts(
100 NaturalShortestFirstQueue<StateId, Weight> queue(*distance);
101 fst::RmEpsilonOptions<Arc, NaturalShortestFirstQueue<StateId,
    [all...]
compile-impl.h 49 typedef typename A::StateId StateId;
80 StateId s = StrToStateId(col[0]);
87 StateId d = s;
163 StateId StrToStateId(const char *s) {
164 StateId n = StrToId(s, ssyms_, "state ID");
170 typename unordered_map<StateId, StateId>::const_iterator it = states_.find(n);
179 StateId StrToILabel(const char *s) const {
183 StateId StrToOLabel(const char *s) const
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyToggle.java 47 public boolean enableToggleState(int stateId, boolean resetIfNotFound) {
49 if (oldStateId == stateId) return false;
52 if (stateId > 0) {
53 mKeyMask |= (KEYMASK_TOGGLE_STATE & stateId);
72 public boolean disableToggleState(int stateId, boolean resetIfNotFound) {
74 if (oldStateId == stateId) {
76 return stateId != 0;
244 int stateId = (mKeyMask & KEYMASK_TOGGLE_STATE);
245 if (0 == stateId) return null;
249 && (state.mIdAndFlags & KEYMASK_TOGGLE_STATE) != stateId) {
    [all...]

Completed in 248 milliseconds

12 3 4 5 6 7 8