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

1 2

  /external/lldb/include/lldb/
lldb-private-types.h 27 const char *alt_name; // Alternate name of this register, can be NULL member in struct:lldb_private::__anon29876
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_procs.py 114 alt_name = "gl" + func.static_glx_name(n)
115 table.append((base_offset, "gl" + name, alt_name, alt_name, func.offset))
  /external/chromium_org/tools/vim/
chromium.ycm_extra_conf.py 155 alt_name = filename[:-2] + alt_extension
156 if os.path.exists(alt_name):
157 filename = alt_name
  /external/mesa3d/src/mapi/glapi/gen/
gl_procs.py 114 alt_name = "gl" + func.static_glx_name(n)
115 table.append((base_offset, "gl" + name, alt_name, alt_name, func.offset))
  /external/chromium_org/tools/code_coverage/
croc.py 207 for root, alt_name in self.root_dirs:
212 alt_name, filename)
240 def AddRoot(self, root_path, alt_name='_'):
245 alt_name: If specified, name of root dir. Otherwise, defaults to '_'.
248 ValueError: alt_name was blank.
254 if not alt_name:
255 raise ValueError('AddRoot alt_name must not be blank.')
258 self.root_dirs.append([self.CleanupFilename(root_path), alt_name])
439 path relative to an alt_name for one of the roots
440 (for example, '_/src'). If the alt_name matches more than one root
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDummy.cpp 47 m_pc_reg_info.alt_name = "pc";
DynamicRegisterInfo.cpp 108 reg_info.alt_name = ConstString (reg_info_dict.GetItemForKeyAsString(altname_pystr)).GetCString();
185 reg_info.alt_name = reg_alt_name.AsCString(NULL);
  /external/chromium_org/net/cert/
x509_certificate_win.cc 181 CERT_ALT_NAME_INFO* alt_name = alt_name_info.get(); local
182 if (alt_name) {
183 int num_entries = alt_name->cAltEntry;
187 const CERT_ALT_NAME_ENTRY& entry = alt_name->rgAltEntry[i];
x509_certificate_mac.cc 252 const CE_GeneralNames* alt_name = local
255 for (size_t name = 0; name < alt_name->numNames; ++name) {
256 const CE_GeneralName& name_struct = alt_name->generalName[name];
x509_util_nss.cc 455 SECItem alt_name; local
458 &alt_name);
466 alt_name_list = CERT_DecodeAltNameExtension(arena, &alt_name);
467 SECITEM_FreeItem(&alt_name, PR_FALSE);
  /external/lldb/source/Target/
ABI.cpp 74 if (register_info_array[i].alt_name == unique_name_cstr)
RegisterContext.cpp 75 (reg_info->alt_name != NULL && ::strcasecmp (reg_info->alt_name, reg_name) == 0))
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteRegisterContext.cpp 891 ConstString alt_name; local
949 ConstString alt_name; local
    [all...]
GDBRemoteRegisterContext.h 59 reg_info.alt_name = reg_alt_name.AsCString(NULL);
  /external/lldb/source/Utility/
ARM_DWARF_Registers.cpp 263 case dwarf_sp: reg_info.name = "sp"; reg_info.alt_name = "r13"; reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_SP; break;
264 case dwarf_lr: reg_info.name = "lr"; reg_info.alt_name = "r14"; reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_RA; break;
265 case dwarf_pc: reg_info.name = "pc"; reg_info.alt_name = "r15"; reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_PC; break;
  /external/chromium_org/content/common/
sandbox_win.cc 198 std::wstring alt_name = name.substr(0, 6) + suffix; local
199 alt_name += name.substr(period, name.size());
201 module = ::GetModuleHandleW(alt_name.c_str());
210 policy->AddDllToUnload(alt_name.c_str());
    [all...]
  /external/lldb/source/Core/
ValueObjectRegister.cpp 265 else if (reg_info->alt_name)
266 m_name.SetCString(reg_info->alt_name);
RegisterValue.cpp 57 else if (reg_info->alt_name)
59 s->Printf (fmt, reg_info->alt_name);
68 if (reg_info->alt_name)
70 s->Printf (fmt, reg_info->alt_name);
    [all...]
  /external/lldb/source/Expression/
DWARFExpression.cpp 441 else if (reg_info.alt_name)
443 s->PutCString (reg_info.alt_name);
497 else if (reg_info.alt_name)
499 s->Printf("[%s%+" PRIi64 "]", reg_info.alt_name, reg_offset);
521 else if (reg_info.alt_name)
523 s->PutCString (reg_info.alt_name);
548 else if (reg_info.alt_name)
550 s->Printf("[%s%+" PRIi64 "]", reg_info.alt_name, reg_offset);
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 691 GeneralName alt_name = new GeneralName(tag, name); local
699 subjectAltNames[tag].add(alt_name);
714 GeneralName alt_name = new GeneralName(tag, name); local
722 subjectAltNames[tag].add(alt_name);
    [all...]
  /external/lldb/source/API/
SBFrame.cpp 897 (reg_info->alt_name && strcasecmp (reg_info->alt_name, name) == 0)))
    [all...]
  /external/lldb/source/Plugins/ABI/MacOSX-arm/
ABIMacOSX_arm.cpp 163 if (g_register_infos[i].alt_name)
164 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
    [all...]
  /external/lldb/source/Plugins/ABI/MacOSX-i386/
ABIMacOSX_i386.cpp 218 if (g_register_infos[i].alt_name)
219 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
    [all...]
  /external/lldb/source/Plugins/ABI/SysV-x86_64/
ABISysV_x86_64.cpp 270 if (g_register_infos[i].alt_name)
271 g_register_infos[i].alt_name = ConstString(g_register_infos[i].alt_name).GetCString();
    [all...]
  /external/chromium_org/third_party/icu/source/tools/pkgdata/
pkgdata.cpp 114 const char *name, *alt_name; member in struct:__anon17029
330 if (modes[i].alt_name) {
331 fprintf(stderr, "/ %-9s", modes[i].alt_name);
    [all...]

Completed in 2766 milliseconds

1 2