/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
arcsum.h | 17 // Functions to sum arcs (sum weights) in an fst. 53 // Combines identically labeled arcs, summing weights. For each state 54 // we combine arcs with the same input and output label, summing their 60 vector<A> arcs; local 65 // Sums arcs into arcs array. 66 arcs.clear(); 67 arcs.reserve(fst->NumArcs(s)); 70 arcs.push_back(aiter.Value()); 72 // At each state, first sorts the exiting arcs by input label, output labe [all...] |
rmfinalepsilon.h | 17 // Function to remove of final states that have epsilon only input arcs. 64 vector<A> arcs; local 69 arcs.clear(); 74 // sum up all epsilon arcs 78 arcs.push_back(arc); 81 arcs.push_back(arc); 85 // If some arcs (epsilon arcs) were deleted, delete all 86 // arcs and add back only the non epsilon arcs [all...] |
cache.h | 140 cache_first_state_->arcs.capacity() * sizeof(Arc); 172 state->arcs.push_back(arc); 175 // Marks arcs of state s as cached. 178 vector<Arc> &arcs = state->arcs; local 180 for (unsigned int a = 0; a < arcs.size(); ++a) { 181 const Arc &arc = arcs[a]; 192 cache_size_ += arcs.capacity() * sizeof(Arc); 200 state->arcs.reserve(n); 217 // Are arcs of state s cached 362 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::CacheState [all...] |
vector-fst.h | 17 // Simple concrete, mutable FST whose states and arcs are stored in STL 33 // States and arcs implemented by STL vectors, templated on the 55 size_t NumArcs(StateId s) const { return states_[s]->arcs.size(); } 72 states_[s]->arcs.push_back(arc); 92 vector<Arc> &arcs = states_[s]->arcs; local 94 for (size_t i = 0; i < arcs.size(); ++i) { 95 StateId t = newid[arcs[i].nextstate]; 97 arcs[i].nextstate = t; 99 arcs[narcs] = arcs[i] 168 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::VectorState 291 const vector<A> &arcs = this->GetState(s)->arcs; local [all...] |
arcsort.h | 17 // Functions and classes to sort arcs in an FST. 29 // Sorts the arcs in an FST according to function object 'comp' of 48 vector<Arc> arcs; local 53 arcs.clear(); 57 arcs.push_back(aiter.Value()); 58 sort(arcs.begin(), arcs.end(), comp); 60 for (size_t a = 0; a < arcs.size(); ++a) 61 fst->AddArc(s, arcs[a]); 156 vector<A> &carcs = GetState(s)->arcs; [all...] |
rmepsilon.h | 68 // Compute arcs and final weight for state 's' 71 // Returns arcs of expanded state. 72 vector<Arc> &Arcs() { return arcs_; } 121 // in the arcs vector of the state being expanded. 'e' corresponds 129 vector<Arc> arcs_; // Arcs of state being expanded 252 vector<Arc> &arcs = rmeps_state.Arcs(); local 253 while (!arcs.empty()) { 254 fst->AddArc(state, arcs.back()); 255 arcs.pop_back() 390 vector<A> &arcs = rmeps_state_.Arcs(); local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
data.py | 20 * arcs: a dict mapping filenames to sorted lists of line number pairs: 61 self.arcs = {} 74 self.lines, self.arcs = self._read_file(self.filename) 76 self.lines, self.arcs = {}, {} 99 self.arcs = {} 110 [(f, self.sorted(amap.keys())) for f, amap in self.arcs.items()] 120 arcs = self.arc_data() 121 if arcs: 122 data['arcs'] = arcs [all...] |
collector.py | 42 self.arcs = False 53 if self.arcs and self.cur_file_data: 82 if self.arcs: 90 if self.arcs and self.cur_file_data: 158 collecting data on which statements followed each other (arcs). Use 203 tracer.arcs = self.branch 300 for f, arcs in self.data.items(): 302 for l1, _ in list(arcs.keys()):
|
html.py | 59 self.arcs = self.coverage.data.has_arcs() 135 arcs = self.arcs 157 elif self.arcs and lineno in missing_branch_arcs: 217 arcs = self.arcs
|
parser.py | 210 def arcs(self): member in class:CodeParser 211 """Get information about the arcs available in the code. 224 arcs = expensive(arcs) variable in class:CodeParser 234 for l1, l2 in self.arcs(): 242 # Arcs to excluded lines shouldn't count. 527 """Find the executable arcs in the code. 583 arcs = set() 593 arcs.add((chunk.line, exit_line)) 595 arcs.add((-1, line) [all...] |
xmlreport.py | 23 self.arcs = coverage.data.has_arcs() 120 if self.arcs: 132 if self.arcs:
|
results.py | 69 """Were arcs measured in this result?""" 73 """Returns a sorted list of the arcs in the code.""" 74 arcs = self.parser.arcs() 75 return arcs 78 """Returns a sorted list of the arcs actually executed in the code.""" 85 """Returns a sorted list of the arcs in the code not executed.""" 96 """Returns a sorted list of the executed arcs missing from the code.""" 99 # Exclude arcs here which connect a line to itself. They can occur 120 """Return arcs that weren't executed from branch lines [all...] |
/external/openfst/src/include/fst/ |
rmfinalepsilon.h | 19 // Function to remove of final states that have epsilon only input arcs. 70 vector<A> arcs; local 75 arcs.clear(); 80 // sum up all epsilon arcs 84 arcs.push_back(arc); 87 arcs.push_back(arc); 91 // If some arcs (epsilon arcs) were deleted, delete all 92 // arcs and add back only the non epsilon arcs [all...] |
cache.h | 230 state->arcs.push_back(arc); 237 const Arc *parc = state->arcs.empty() ? 0 : &(state->arcs.back()); 253 state->arcs.push_back(arc); 256 // Marks arcs of state s as cached and does cache book-keeping after all 260 vector<Arc> &arcs = state->arcs; local 262 for (size_t a = 0; a < arcs.size(); ++a) { 263 const Arc &arc = arcs[a]; 275 cache_size_ += arcs.capacity() * sizeof(Arc) 288 const vector<Arc> &arcs = state->arcs; local 625 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::CacheState [all...] |
vector-fst.h | 19 // Simple concrete, mutable FST whose states and arcs are stored in STL 39 // States and arcs implemented by STL vectors, templated on the 61 size_t NumArcs(StateId s) const { return states_[s]->arcs.size(); } 78 states_[s]->arcs.push_back(arc); 98 vector<Arc> &arcs = states_[s]->arcs; local 100 for (size_t i = 0; i < arcs.size(); ++i) { 101 StateId t = newid[arcs[i].nextstate]; 103 arcs[i].nextstate = t; 105 arcs[narcs] = arcs[i] 174 vector<A> arcs; \/\/ Arcs represenation member in struct:fst::VectorState 257 const vector<A> &arcs = GetState(s)->arcs; local [all...] |
rmepsilon.h | 83 // Compute arcs and final weight for state 's' 86 // Returns arcs of expanded state. 87 vector<Arc> &Arcs() { return arcs_; } 138 // in the arcs vector of the state being expanded. 'e' corresponds 146 vector<Arc> arcs_; // Arcs of state being expanded 302 vector<Arc> &arcs = rmeps_state.Arcs(); local 303 fst->ReserveArcs(state, arcs.size()); 304 while (!arcs.empty()) { 305 fst->AddArc(state, arcs.back()) 483 vector<A> &arcs = rmeps_state_.Arcs(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
pgen.py | 41 arcs = [] 42 for label, next in state.arcs.iteritems(): 43 arcs.append((self.make_label(c, label), dfa.index(next))) 45 arcs.append((0, dfa.index(state))) 46 states.append(arcs) 121 for label, next in state.arcs.iteritems(): 185 for label, next in state.arcs: 190 arcs = {} 192 for label, next in nfastate.arcs: 194 addclosure(next, arcs.setdefault(label, {}) [all...] |
parse.py | 121 arcs = states[state] 123 for i, newstate in arcs: 150 if (0, state) in arcs:
|
conv.py | 136 arcs = [] 142 arcs.append((i, j)) 145 allarcs[(n, m)] = arcs 157 arcs = allarcs[n, m] 158 assert k == len(arcs), (lineno, line) 159 state.append(arcs)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
pgen.py | 41 arcs = [] 42 for label, next in state.arcs.iteritems(): 43 arcs.append((self.make_label(c, label), dfa.index(next))) 45 arcs.append((0, dfa.index(state))) 46 states.append(arcs) 121 for label, next in state.arcs.iteritems(): 185 for label, next in state.arcs: 190 arcs = {} 192 for label, next in nfastate.arcs: 194 addclosure(next, arcs.setdefault(label, {}) [all...] |
parse.py | 121 arcs = states[state] 123 for i, newstate in arcs: 150 if (0, state) in arcs:
|
conv.py | 136 arcs = [] 142 arcs.append((i, j)) 145 allarcs[(n, m)] = arcs 157 arcs = allarcs[n, m] 158 assert k == len(arcs), (lineno, line) 159 state.append(arcs)
|
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 1232 public Arc[] arcs; field in class:GridLayout.Axis [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 1121 public Arc[] arcs; field in class:GridLayout.Axis [all...] |
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/ |
android-support-v7-gridlayout.jar | |