OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_ptr
(Results
1 - 7
of
7
) sorted by null
/external/clang/test/PCH/
struct.h
16
int
is_ptr
: 1;
member in struct:Fun
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}}
/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
210
is_ptr
=True))
372
is_ptr
= prop.optional or prop.type_.property_type == PropertyType.ANY
378
is_ptr
=
is_ptr
))
481
def _CreateValueFromType(self, code, prop_name, type_, var,
is_ptr
=False):
500
vardot = '(%s)%s' % (var, '->' if
is_ptr
else '.')
518
# optional enum arrays, |
is_ptr
| is set to false and uses the
525
c.Append(code % self._GenerateCreateValueFromType(type_, var,
is_ptr
))
528
def _GenerateCreateValueFromType(self, type_, var,
is_ptr
):
533
is_ptr
: Whether |type_| is optional
[
all
...]
cpp_type_generator.py
83
def GetCppType(self, type_,
is_ptr
=False, is_in_container=False):
89
Use |
is_ptr
| if the type is optional. This will wrap the type in a
138
if is_in_container and (
is_ptr
or not self.IsCopyable(type_)):
140
elif
is_ptr
:
h_generator.py
167
is_ptr
= prop.optional or prop.type_.property_type == PropertyType.ANY
169
self._type_helper.GetCppType(prop.type_,
is_ptr
=
is_ptr
),
260
self._type_helper.GetCppType(choice_type,
is_ptr
=True),
/external/lldb/source/Core/
ValueObject.cpp
3509
const bool
is_ptr
= type_flags.Test (ClangASTType::eTypeIsPointer);
local
[
all
...]
Completed in 430 milliseconds