Home
last modified time | relevance | path

Searched refs:lword (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/docs/tools/
H A Ddump_format_style.py49 lword = word.lower()
50 if len(lword) >= 2 and lword[-1] == 'y' and lword[-2] not in 'aeiou':
52 elif lword.endswith(('s', 'sh', 'ch', 'x', 'z')):
54 elif lword.endswith('fe'):
56 elif lword.endswith('f') and not lword.endswith('ff'):
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMemory.cpp1092 uint32_t lword = (uint32_t)value; in DoExecute() local
1093 buffer.CopyData(&lword, 4); in DoExecute()