/external/openfst/src/include/fst/ |
H A D | 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...] |
H A D | 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 288 const vector<Arc> &arcs = state->arcs; local 625 vector<A> arcs; // Arcs represenation member in struct:fst::CacheState [all...] |
H A D | 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[narc 174 vector<A> arcs; // Arcs represenation member in struct:fst::VectorState 257 const vector<A> &arcs = GetState(s)->arcs; local [all...] |
H A D | rmepsilon.h | 83 // Compute arcs and final weight for state 's' 86 // Returns arcs of expanded state. 138 // in the arcs vector of the state being expanded. 'e' corresponds 302 vector<Arc> &arcs = rmeps_state.Arcs(); local 303 fst->ReserveArcs(state, arcs.size()); 304 while (!arcs.empty()) { 305 fst->AddArc(state, arcs.back()); 306 arcs.pop_back(); 342 // where V = # of states visited, E = # of arcs. 483 vector<A> &arcs local [all...] |
H A D | replace-util.h | 110 // Replaces Fsts that have at most 'nstates' states, 'narcs' arcs and 139 size_t narcs; // # of arcs 435 vector<Arc> arcs; local 441 arcs.push_back(arc); 444 for (size_t j = 0; j < arcs.size(); ++j) 445 pfst.AddArc(i, arcs[j]);
|
H A D | replace.h | 305 // with dynamic replacable arcs. 518 } else { // Otherwise compute the number of arcs without expanding. 563 // If epsilon_on_replace is false, all input epsilon arcs 564 // are also input epsilons arcs in the underlying machine. 567 // Otherwise, one need to consider that all non-terminal arcs 624 // return the base arc iterator, if arcs have not been computed yet, 625 // extend/recurse for new arcs. 636 // Extend current state (walk arcs one level deep) 654 // Expand all arcs leaving the state 678 // Expand all arcs leavin [all...] |
H A D | fst.h | 143 int64 numarcs_; // # of arcs 160 // iterate over its states and arcs). 386 static const uint32 kArcNoCache = 0x0010; // No need to cache arcs 435 const A *arcs; // O.w. arcs pointer member in struct:fst::ArcIteratorData 478 return data_.base ? data_.base->Value() : data_.arcs[i_];
|
H A D | const-fst.h | 19 // Simple concrete immutable FST whose states and arcs are each stored 41 // States and arcs each implemented by single arrays, templated on the 103 data->arcs = arcs_ + states_[s].pos; 111 // States implemented by array *states_ below, arcs by (single) *arcs_. 114 Unsigned pos; // Start of state's arcs in *arcs_ 115 Unsigned narcs; // Number of arcs (per state) 132 MappedFile *arcs_region_; // Mapped file for arcs 136 size_t narcs_; // Number of arcs (per FST) 165 // Count # of states and arcs. 339 // before writing to compute number of states and arcs [all...] |
/external/chromium-trace/catapult/third_party/coverage/coverage/ |
H A D | plugin.py | 279 def arcs(self): member in class:FileReporter 280 """Get the executable arcs in this file. 306 def translate_arcs(self, arcs): 307 """Translate recorded arcs into reported arcs. 309 Similar to :meth:`translate_lines`, but for arcs. `arcs` is a set of 314 The default implementation returns `arcs` unchanged. 317 return arcs
|
H A D | data.py | 44 * **arcs**: pairs of source and destination line numbers for transitions 55 Lines, arcs, and file tracer names are stored for each source file. File 61 access the line, arc, or file tracer data with :meth:`lines`, :meth:`arcs`, 96 # * arcs: a dict mapping file names to lists of line number pairs:: 109 # Only one of `lines` or `arcs` will be present: with branch coverage, data 110 # is stored as arcs. Without branch coverage, it is stored as lines. The 111 # line data is easily recovered from the arcs: it is all the first elements 147 return "<{klass} lines={lines} arcs={arcs} tracers={tracers} runs={runs}>".format( 150 arcs 188 def arcs(self, filename): member in class:CoverageData [all...] |
H A D | python.py | 152 def translate_arcs(self, arcs): 153 return self.parser.translate_arcs(arcs) 164 def arcs(self): member in class:PythonFileReporter 165 return self.parser.arcs()
|
H A D | plugin_support.py | 219 def translate_arcs(self, arcs): 220 ret = self.reporter.translate_arcs(arcs) 221 self.debug.write("translate_arcs(%r) --> %r" % (arcs, ret)) 234 def arcs(self): member in class:DebugFileReporterWrapper 235 ret = self.reporter.arcs() 236 self.debug.write("arcs() --> %r" % (ret,))
|
H A D | results.py | 28 self._arc_possibilities = sorted(self.file_reporter.arcs()) 62 """Were arcs measured in this result?""" 66 """Returns a sorted list of the arcs in the code.""" 70 """Returns a sorted list of the arcs actually executed in the code.""" 71 executed = self.data.arcs(self.filename) or [] 76 """Returns a sorted list of the arcs in the code not executed.""" 87 """ The missing branch arcs, formatted nicely. 94 arcs = self.missing_branch_arcs() 96 line_exits = sorted(iitems(arcs)) 105 """Returns a sorted list of the executed arcs missin [all...] |
H A D | parser.py | 188 def translate_arcs(self, arcs): 192 for (a, b) in arcs 229 def arcs(self): member in class:PythonParser 230 """Get information about the arcs available in the code. 253 for l1, l2 in self.arcs(): 554 """Find the executable arcs in the code. 566 # Traverse from the first chunk in each line, and yield arcs where 617 """Get the set of all arcs in this code object and its children. 622 arcs = set() 624 arcs [all...] |
/external/elfutils/config/ |
H A D | eu.am | 52 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
|
/external/autotest/client/site_tests/example_UnitTest/src/ |
H A D | Makefile | 8 OPTIONS = -fprofile-arcs -ftest-coverage -fno-inline -O0
|
/external/zlib/src/contrib/puff/ |
H A D | Makefile | 13 cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o
|
/external/freetype/src/raster/ |
H A D | ftraster.c | 536 TPoint arcs[3 * MaxBezier + 1]; /* The Bezier stack */ member in struct:black_TWorker_ 899 /* Subdivide one conic Bezier into two joint sub-arcs in the Bezier */ 938 /* Subdivide a third-order Bezier arc into two joint sub-arcs in the */ 1160 /* A function type describing the functions used to split Bezier arcs */ 1176 /* splitter :: The function to split Bezier arcs. */ 1309 /* splitter :: The function to split Bezier arcs. */ 1473 ras.arc = ras.arcs; 1544 } while ( ras.arc >= ras.arcs ); 1595 ras.arc = ras.arcs; 1679 } while ( ras.arc >= ras.arcs ); [all...] |
/external/pdfium/third_party/freetype/src/raster/ |
H A D | ftraster.c | 532 TPoint arcs[3 * MaxBezier + 1]; /* The Bezier stack */ member in struct:black_TWorker_ 895 /* Subdivide one conic Bezier into two joint sub-arcs in the Bezier */ 934 /* Subdivide a third-order Bezier arc into two joint sub-arcs in the */ 1156 /* A function type describing the functions used to split Bezier arcs */ 1172 /* splitter :: The function to split Bezier arcs. */ 1305 /* splitter :: The function to split Bezier arcs. */ 1469 ras.arc = ras.arcs; 1540 } while ( ras.arc >= ras.arcs ); 1591 ras.arc = ras.arcs; 1675 } while ( ras.arc >= ras.arcs ); [all...] |
/external/libvpx/libvpx/build/make/ |
H A D | configure.sh | 1311 check_add_cflags -fprofile-arcs -ftest-coverage && 1312 check_add_ldflags -fprofile-arcs -ftest-coverage
|
/external/ImageMagick/www/api/ |
H A D | drawing-wand.php | 1805 <p>DrawPathEllipticArcAbsolute() draws an elliptical arc from the current point to (x, y) using absolute coordinates. The size and orientation of the ellipse are defined by two radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as a whole is rotated relative to the current coordinate system. The center (cx, cy) of the ellipse is calculated automagically to satisfy the constraints imposed by the other parameters. largeArcFlag and sweepFlag contribute to the automatic calculations and help determine how the arc is drawn. If largeArcFlag is true then draw the larger of the available arcs. If sweepFlag is true, then draw the arc matching a clock-wise rotation.</p> 1840 <dd>If non-zero (true) then draw the larger of the available arcs </dd> 1852 <p>DrawPathEllipticArcRelative() draws an elliptical arc from the current point to (x, y) using relative coordinates. The size and orientation of the ellipse are defined by two radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as a whole is rotated relative to the current coordinate system. The center (cx, cy) of the ellipse is calculated automagically to satisfy the constraints imposed by the other parameters. largeArcFlag and sweepFlag contribute to the automatic calculations and help determine how the arc is drawn. If largeArcFlag is true then draw the larger of the available arcs. If sweepFlag is true, then draw the arc matching a clock-wise rotation.</p> 1887 <dd>If non-zero (true) then draw the larger of the available arcs </dd>
|
/external/robolectric/v3/runtime/ |
H A D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |