Searched defs:edits (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/tools/clang/scripts/
H A Drun_tool.py26 should output edits to stdout in the following format:
34 Any generated edits are applied once the clang tool has finished running
66 """Extracts generated list of edits from the tool's stdout.
76 A dictionary mapping filenames to the associated edits.
81 edits = collections.defaultdict(list)
89 edits[path].append(Edit(edit_type, int(offset), int(length), replacement))
92 return edits
110 If status is True, then the generated edits are stored with the key "edits"
124 'edits'
146 def edits(self): member in class:_CompilerDispatcher
[all...]
/external/chromium_org/media/formats/mp4/
H A Dtrack_run_iterator.cc229 const std::vector<EditListEntry>& edits = trak->edit.list.edits; local
230 if (!edits.empty()) {
231 if (edits.size() > 1)
234 if (edits[0].media_time < 0) {
237 edit_list_offset = -edits[0].media_time;
H A Dbox_definitions.h139 std::vector<EditListEntry> edits; member in struct:media::mp4::EditList
/external/openfst/src/include/fst/
H A Dedit-fst.h37 // relatively small number of edits (read: mutations), then this implementation
38 // will copy the edited node to an internal MutableFst and perform any edits in
340 // next read in MutabelFstT machine that stores edits
351 MutableFstT *edits = MutableFstT::Read(strm, edits_opts); local
352 if (!edits) {
355 data->edits_ = *edits;
356 delete edits;
371 // number of edits (read: mutations), then this implementation will copy the
372 // edited node to an internal MutableFst and perform any edits in situ on that
614 // mutating methods specifically related to the types of edits provide
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc3437 std::string EditsToString(const std::vector<EditType>& edits) { argument
3439 for (size_t i = 0; i < edits.size(); ++i) {
3441 out.append(1, kEdits[edits[i]]);
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc1167 const std::vector<EditType> edits = CalculateOptimalEdits(left, right); local
1171 while (edit_i < edits.size()) {
1173 while (edit_i < edits.size() && edits[edit_i] == kMatch) {
1186 // Iterate the edits until we found enough suffix for the hunk or the input
1189 for (; edit_i < edits.size(); ++edit_i) {
1192 std::vector<EditType>::const_iterator it = edits.begin() + edit_i;
1193 while (it != edits.end() && *it == kMatch) ++it;
1194 if (it == edits.end() || (it - edits
[all...]

Completed in 1825 milliseconds