Home
last modified time | relevance | path

Searched refs:m_from (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Tools/scripts/
Dpdeps.py61 m_from = re.compile('^[ \t]*import[ \t]+([^#]+)') variable
81 elif m_from.match(line) >= 0:
82 (a, b), (a1, b1) = m_from.regs[:2]
/external/python/cpython3/Tools/scripts/
Dpdeps.py61 m_from = re.compile('^[ \t]*import[ \t]+([^#]+)') variable
79 m_found = m_import.match(line) or m_from.match(line)
/external/bcc/tests/cc/
Dcatch.hpp2349 BetweenGenerator( T from, T to ) : m_from( from ), m_to( to ){} in BetweenGenerator()
2352 return m_from+static_cast<int>( index ); in getValue()
2356 return static_cast<std::size_t>( 1+m_to-m_from ); in size()
2361 T m_from; member in Catch::BetweenGenerator