Searched refs:info_bits (Results 1 – 12 of 12) sorted by relevance
/external/llvm-project/lldb/examples/python/ |
D | diagnose_nsstring.py | 113 info_bits = dumped.GetChildMemberWithName("_cfinfo").GetChildAtIndex( 115 is_mutable = (info_bits & 1) == 1 116 is_inline = (info_bits & 0x60) == 0 117 has_explicit_length = (info_bits & (1 | 4)) != 4 118 is_unicode = (info_bits & 0x10) == 0x10 122 has_null = (info_bits & 8) == 8 125 …(info_bits, "yes" if is_mutable else "no", "yes" if is_inline else "no", "yes" if has_explicit_len…
|
/external/llvm-project/lldb/examples/summaries/cocoa/ |
D | NSNumber.py | 36 def __init__(self, valobj, info_bits, data, params): argument 40 self.info_bits = info_bits 54 if self.info_bits == 0: 57 if self.info_bits == 4: 60 if self.info_bits == 8: 63 if self.info_bits == 12: 66 return 'unexpected value:(info=' + str(self.info_bits) + \ 227 valobj, class_data.info_bits(), class_data.value(), class_data.sys_params)
|
D | CFString.py | 305 return (self.info_bits & 1) == 1 309 return (self.info_bits & 0x60) == 0 316 return (self.info_bits & (1 | 4)) != 4 324 return self.info_bits == 0 328 return (self.info_bits & 0x10) == 0x10 343 self.info_bits = self.read_info_bits() 344 if self.info_bits is None:
|
D | NSDate.py | 71 def __init__(self, valobj, info_bits, data, params): argument 78 self.data = ((data << 8) | (info_bits << 4)) 230 valobj, class_data.info_bits(), class_data.value(), class_data.sys_params)
|
D | objc_runtime.py | 561 def info_bits(self): member in TaggedClass_Data
|
/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | NSString.cpp | 104 uint8_t info_bits = process_sp->ReadUnsignedIntegerFromMemory( in NSStringSummaryProvider() local 109 bool is_mutable = (info_bits & 1) == 1; in NSStringSummaryProvider() 110 bool is_inline = (info_bits & 0x60) == 0; in NSStringSummaryProvider() 111 bool has_explicit_length = (info_bits & (1 | 4)) != 4; in NSStringSummaryProvider() 112 bool is_unicode = (info_bits & 0x10) == 0x10; in NSStringSummaryProvider() 114 bool has_null = (info_bits & 8) == 8; in NSStringSummaryProvider()
|
D | NSIndexPath.cpp | 81 uint64_t info_bits(0), value_bits(0), payload(0); in Update() local 83 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits, &payload)) { in Update()
|
D | Cocoa.cpp | 837 uint64_t info_bits = 0, value_bits = 0; in NSDateSummaryProvider() local 840 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits)) { in NSDateSummaryProvider() 841 date_value_bits = ((value_bits << 8) | (info_bits << 4)); in NSDateSummaryProvider()
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCClassDescriptorV2.h | 38 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 299 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 302 if (info_bits) 303 *info_bits = GetInfoBits();
|
D | AppleObjCRuntimeV1.h | 61 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
|
D | AppleObjCRuntimeV2.cpp | 721 uint64_t info_bits = 0; in DoExecute() local 724 if (descriptor_sp->GetTaggedPointerInfo(&info_bits, &value_bits, in DoExecute() 730 (uint64_t)arg_addr, payload, value_bits, info_bits, in DoExecute()
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ |
D | ObjCLanguageRuntime.h | 90 virtual bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr,
|