Searched refs:is_ptr (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/PCH/
H A Dstruct.c15 return fun->is_ptr? fun->ptr : 0;
26 int *int_ptr_fail = &fun->is_ptr; // expected-error{{address of bit-field requested}}
H A Dstruct.h16 int is_ptr : 1; member in struct:Fun
/external/chromium_org/tools/json_schema_compiler/
H A Dutil_cc_helper.py71 def GetValueTypeString(self, value, is_ptr=False):
73 if is_ptr:
H A Dcc_generator.py207 is_ptr=True))
369 is_ptr = prop.optional or prop.type_.property_type == PropertyType.ANY
375 is_ptr=is_ptr))
478 def _CreateValueFromType(self, code, prop_name, type_, var, is_ptr=False):
497 vardot = '(%s)%s' % (var, '->' if is_ptr else '.')
515 # optional enum arrays, |is_ptr| is set to false and uses the
522 c.Append(code % self._GenerateCreateValueFromType(type_, var, is_ptr))
525 def _GenerateCreateValueFromType(self, type_, var, is_ptr):
530 is_ptr
[all...]
H A Dcpp_type_generator.py65 def GetCppType(self, type_, is_ptr=False, is_in_container=False):
71 Use |is_ptr| if the type is optional. This will wrap the type in a
123 if is_in_container and (is_ptr or not self.IsCopyable(type_)):
125 elif is_ptr:
H A Dh_generator.py162 is_ptr = prop.optional or prop.type_.property_type == PropertyType.ANY
164 self._type_helper.GetCppType(prop.type_, is_ptr=is_ptr),
255 self._type_helper.GetCppType(choice_type, is_ptr=True),
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DPyrexTypes.py150 # is_ptr boolean Is a C pointer type
206 is_ptr = 0 variable in class:PyrexType
271 self.is_extension_type or self.is_ptr)
893 return not src_type.is_ptr or src_type.is_string or src_type.is_pyunicode_ptr
2105 if self.is_ptr:
2112 if self.is_ptr:
2117 if self.is_ptr:
2203 is_ptr = 1 variable in class:CPtrType
2210 if isinstance(other, CType) and other.is_ptr:
2221 return ((other_type.is_ptr an
[all...]
H A DExprNodes.py703 dst_type.is_ptr and dst_type.base_type.is_cfunction):
804 elif type.is_pyobject or type.is_int or type.is_ptr or type.is_float:
1934 if (self.entry.type.is_ptr and isinstance(rhs, ListNode)
2229 if (self.sequence.type.is_array or self.sequence.type.is_ptr) and \
2255 if sequence_type.is_array or sequence_type.is_ptr:
2267 if sequence_type.is_ptr:
2301 elif iter_type.is_ptr:
2324 if sequence_type.is_array or sequence_type.is_ptr:
2487 if iterator_type.is_ptr or iterator_type.is_array:
2787 and base.type and (base.type.is_ptr o
[all...]
H A DBuffer.py74 if entry.type.dtype.is_ptr:
621 elif dtype.is_ptr:
H A DTypeInference.py530 elif result_type.is_ptr:
H A DNodes.py485 if base_type.is_ptr or base_type.is_array or base_type.is_buffer:
4964 elif arg.type.is_ptr and arg.type.base_type.is_cpp_class:
4989 elif arg.type.is_ptr and arg.type.base_type.is_cpp_class:
5680 if (self.iterator.type.is_ptr or self.iterator.type.is_array) and \
H A DSymtab.py2121 if type.is_ptr:
H A DOptimize.py132 if iterator.type.is_ptr or iterator.type.is_array:
502 elif node.target.type.is_ptr and not node.target.type.assignable_from(ptr_type.base_type):
/external/lldb/source/Core/
H A DValueObject.cpp3509 const bool is_ptr = type_flags.Test (ClangASTType::eTypeIsPointer); local
3510 if (is_ptr || is_ref)
3572 (is_ptr || is_ref) ? curr_ptr_depth - 1 : curr_ptr_depth,

Completed in 358 milliseconds