HomeSort by relevance Sort by last modified time
    Searched refs:is_ptr (Results 1 - 14 of 14) sorted by null

  /external/clang/test/PCH/
struct.c 15 return fun->is_ptr? fun->ptr : 0;
26 int *int_ptr_fail = &fun->is_ptr; // expected-error{{address of bit-field requested}}
struct.h 16 int is_ptr : 1; member in struct:Fun
  /external/chromium_org/tools/json_schema_compiler/
util_cc_helper.py 71 def GetValueTypeString(self, value, is_ptr=False):
73 if is_ptr:
cc_generator.py 207 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: Whether |type_| is optional
    [all...]
cpp_type_generator.py 65 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_generator.py 162 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/
PyrexTypes.py 150 # 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
2203 is_ptr = 1 variable in class:CPtrType
    [all...]
ExprNodes.py 703 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:
    [all...]
Buffer.py 74 if entry.type.dtype.is_ptr:
621 elif dtype.is_ptr:
TypeInference.py 530 elif result_type.is_ptr:
Nodes.py 485 if base_type.is_ptr or base_type.is_array or base_type.is_buffer:
    [all...]
Symtab.py     [all...]
Optimize.py 132 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):
    [all...]
  /external/lldb/source/Core/
ValueObject.cpp 3509 const bool is_ptr = type_flags.Test (ClangASTType::eTypeIsPointer); local
    [all...]

Completed in 303 milliseconds