HomeSort by relevance Sort by last modified time
    Searched refs:add_prefix (Results 1 - 8 of 8) sorted by null

  /external/lldb/source/Core/
Stream.cpp 524 Stream::_PutHex8 (uint8_t uvalue, bool add_prefix)
533 if (add_prefix)
557 bool add_prefix = m_flags.Test(eAddPrefix); local
561 for (size_t byte = 0; byte < sizeof(uvalue); ++byte, add_prefix = false)
562 bytes_written += _PutHex8 ((uint8_t)(uvalue >> (byte * 8)), add_prefix);
566 for (size_t byte = sizeof(uvalue)-1; byte < sizeof(uvalue); --byte, add_prefix = false)
567 bytes_written += _PutHex8 ((uint8_t)(uvalue >> (byte * 8)), add_prefix);
578 bool add_prefix = m_flags.Test(eAddPrefix); local
582 for (size_t byte = 0; byte < sizeof(uvalue); ++byte, add_prefix = false)
583 bytes_written += _PutHex8 ((uint8_t)(uvalue >> (byte * 8)), add_prefix);
599 bool add_prefix = m_flags.Test(eAddPrefix); local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store.h 64 SBPrefix add_prefix; member in struct:SBSubPrefix
67 : chunk_id(id), add_chunk_id(add_id), add_prefix(prefix) {}
68 SBSubPrefix() : chunk_id(), add_chunk_id(), add_prefix() {}
71 SBPrefix GetAddPrefix() const { return add_prefix; }
safe_browsing_store_unittest.cc 227 EXPECT_EQ(kHash3.prefix, sub_prefixes[0].add_prefix);
352 EXPECT_EQ(kHash6.prefix, sub_prefixes[0].add_prefix);
  /external/chromium_org/chrome/common/extensions/docs/server2/
compiled_file_system.py 161 def add_prefix(prefix, paths): function in function:CompiledFileSystem._RecursiveList
177 add_prefix(path, first_layer_dirs))
188 dirs += add_prefix(dir_name, new_dirs)
194 files += add_prefix(dir_name[len(path):], new_files)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 67 def handle_tuple(tuple_arg, add_prefix=False):
72 if add_prefix:
83 # Without add_prefix, the emitted code is correct,
85 handle_tuple(arg, add_prefix=(i > 0))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 67 def handle_tuple(tuple_arg, add_prefix=False):
72 if add_prefix:
83 # Without add_prefix, the emitted code is correct,
85 handle_tuple(arg, add_prefix=(i > 0))
  /external/lldb/include/lldb/Core/
Stream.h 605 size_t _PutHex8 (uint8_t uvalue, bool add_prefix);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
gen_x86_insn.py 528 def add_prefix(name, groupname, value, parser=None, **kwargs): function
    [all...]

Completed in 465 milliseconds