OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:info_bits
(Results
1 - 9
of
9
) sorted by null
/external/lldb/examples/python/
diagnose_nsstring.py
108
info_bits
= dumped.GetChildMemberWithName("_cfinfo").GetChildAtIndex(0 if little_endian else 3).GetValueAsUnsigned(0)
109
is_mutable = (
info_bits
& 1) == 1
110
is_inline = (
info_bits
& 0x60) == 0
111
has_explicit_length = (
info_bits
& (1 | 4)) != 4
112
is_unicode = (
info_bits
& 0x10) == 0x10
114
has_null = (
info_bits
& 8) == 8
117
(
info_bits
, "yes" if is_mutable else "no","yes" if is_inline else "no","yes" if has_explicit_length else "no","yes" if is_unicode else "no","yes" if is_special else "no","yes" if has_null else "no")
/external/lldb/examples/summaries/cocoa/
NSNumber.py
30
def __init__(self, valobj,
info_bits
, data, params):
34
self.
info_bits
=
info_bits
48
if self.
info_bits
== 0:
50
if self.
info_bits
== 4:
52
if self.
info_bits
== 8:
54
if self.
info_bits
== 12:
57
return 'unexpected value:(info=' + str(self.
info_bits
) + ", value = " + str(self.data) + ')'
200
wrapper = NSTaggedNumber_SummaryProvider(valobj,class_data.
info_bits
(),class_data.value(), class_data.sys_params)
CFString.py
276
return (self.
info_bits
& 1) == 1;
280
return (self.
info_bits
& 0x60) == 0;
287
return (self.
info_bits
& (1 | 4)) != 4;
290
# here
info_bits
= 0 and Unicode data at the start of the padding word
292
# instead of reading the
info_bits
295
return self.
info_bits
== 0;
299
return (self.
info_bits
& 0x10) == 0x10;
313
self.
info_bits
= self.read_info_bits();
314
if self.
info_bits
== None:
NSDate.py
62
def __init__(self, valobj,
info_bits
, data, params):
67
# NSDate is not using its
info_bits
for info like NSNumber is
68
# so we need to regroup
info_bits
and data
69
self.data = ((data << 8) | (
info_bits
<< 4))
207
wrapper = NSTaggedDate_SummaryProvider(valobj,class_data.
info_bits
(),class_data.value(), class_data.sys_params)
objc_runtime.py
482
def
info_bits
(self):
member in class:TaggedClass_Data
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV1.h
51
GetTaggedPointerInfo (uint64_t*
info_bits
= NULL,
AppleObjCRuntimeV2.cpp
[
all
...]
/external/lldb/source/DataFormatters/
Cocoa.cpp
518
uint64_t
info_bits
=0,value_bits = 0;
local
519
if (descriptor->GetTaggedPointerInfo(&
info_bits
,&value_bits))
521
date_value_bits = ((value_bits << 8) | (
info_bits
<< 4));
/external/lldb/include/lldb/Target/
ObjCLanguageRuntime.h
201
GetTaggedPointerInfo (uint64_t*
info_bits
= NULL,
Completed in 399 milliseconds