HomeSort by relevance Sort by last modified time
    Searched refs:arcs (Results 1 - 25 of 50) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gprof/
cg_arcs.h 50 extern Arc **arcs;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
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="None" if self._arcs is None else "{{{0}}}".format(len(self._arcs))
188 def arcs(self, filename): member in class:CoverageData
    [all...]
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
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()
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,))
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 missing from the code.""
    [all...]
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():
261 # Arcs to excluded lines shouldn't count.
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(
    [all...]
  /external/elfutils/config/
eu.am 52 COMPILE.os = $(filter-out -fprofile-arcs -ftest-coverage, $(COMPILE))
  /external/autotest/client/site_tests/example_UnitTest/src/
Makefile 8 OPTIONS = -fprofile-arcs -ftest-coverage -fno-inline -O0
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /frameworks/base/core/java/android/widget/
GridLayout.java 1222 public Arc[] arcs; field in class:GridLayout.Axis
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 1117 public Arc[] arcs; field in class:GridLayout.Axis
    [all...]
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 

Completed in 2030 milliseconds

1 2