Home
last modified time | relevance | path

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

/art/tools/
Dgenerate-operator-out.py132 rest = m.group(2).strip()
133 m_literal = re.compile(r'= (0x[0-9a-f]+|-?[0-9]+|\'.\')').search(rest)
135 rest = rest[(len(m_literal.group(0))):]
139 if rest.startswith('= k'):
143 if rest.startswith(','):
144 rest = rest[1:]
145 rest = rest.strip()
148 if len(rest):
Dcpplint.py812 project, rest = os.path.split(googlename)
813 return (project,) + os.path.splitext(rest)
/art/runtime/arch/
Dstub_test.cc1250 int32_t rest = length - new_offset - 1; in TEST_F() local
1251 int32_t new_length = 1 + (rest > 0 ? r.next() % rest : 0); in TEST_F()