Home
last modified time | relevance | path

Searched refs:type_str (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/examples/darwin/heap_find/
H A Dheap.py365 type_str = 'free'
367 type_str = 'malloc'
369 type_str = 'free'
371 type_str = 'generic'
373 type_str = 'stack'
377 type_str = 'segment'
379 type_str = 'vm_region'
381 type_str = hex(type_flags)
382 return type_str
442 type_str = 'stack'
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dcpp.cc687 std::string type_str; in generate_callback_args() local
702 type_str += type.getAsString(); in generate_callback_args()
708 type_str += ", "; in generate_callback_args()
711 return type_str; in generate_callback_args()
728 std::string type_str; in generate_callback_type() local
733 type_str = "std::function<"; in generate_callback_type()
734 type_str += rettype_str; in generate_callback_type()
735 type_str += "("; in generate_callback_type()
737 type_str += ")>"; in generate_callback_type()
739 return type_str; in generate_callback_type()
[all …]
H A Dpython.cc560 string type_str; in print_argument_check() local
561 type_str = generator::extract_type(type); in print_argument_check()
562 type_str = type2python(type_str); in print_argument_check()
563 printf("args[%d].__class__ is %s", i, type_str.c_str()); in print_argument_check()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMemory.cpp399 std::string type_str(view_as_type_cstr); in DoExecute() local
408 if (type_str[idx + keyword_len] == ' ' || in DoExecute()
409 type_str[idx + keyword_len] == '\t') { in DoExecute()
410 type_str.erase(idx, keyword_len + 1); in DoExecute()
417 bool done = type_str.empty(); in DoExecute()
419 idx = type_str.find_first_not_of(" \t"); in DoExecute()
421 type_str.erase(0, idx); in DoExecute()
424 if (type_str.empty()) in DoExecute()
427 switch (type_str[type_str.size() - 1]) { in DoExecute()
433 type_str.erase(type_str.size() - 1); in DoExecute()
[all …]
/llvm-project-15.0.7/lldb/examples/python/
H A Dmach_o.py1622 type_str = ''
1624 type_str = 'N_UNDF'
1626 type_str = 'N_ABS '
1628 type_str = 'N_SECT'
1630 type_str = 'N_PBUD'
1632 type_str = 'N_INDR'
1634 type_str = "??? (%#2.2x)" % type
1636 type_str += ' | PEXT'
1638 type_str += ' | EXT '
1639 return type_str
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DType.h402 TypeAndOrName(const char *type_str);
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp10311 std::string type_str; in tryToVectorizeList() local
10312 llvm::raw_string_ostream rso(type_str); in tryToVectorizeList()