OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lhs_ptr
(Results
1 - 2
of
2
) sorted by null
/external/lldb/source/API/
SBDeclaration.cpp
142
lldb_private::Declaration *
lhs_ptr
= m_opaque_ap.get();
local
145
if (
lhs_ptr
&& rhs_ptr)
146
return lldb_private::Declaration::Compare (*
lhs_ptr
, *rhs_ptr) == 0;
148
return
lhs_ptr
== rhs_ptr;
154
lldb_private::Declaration *
lhs_ptr
= m_opaque_ap.get();
local
157
if (
lhs_ptr
&& rhs_ptr)
158
return lldb_private::Declaration::Compare (*
lhs_ptr
, *rhs_ptr) != 0;
160
return
lhs_ptr
!= rhs_ptr;
SBLineEntry.cpp
186
lldb_private::LineEntry *
lhs_ptr
= m_opaque_ap.get();
local
189
if (
lhs_ptr
&& rhs_ptr)
190
return lldb_private::LineEntry::Compare (*
lhs_ptr
, *rhs_ptr) == 0;
192
return
lhs_ptr
== rhs_ptr;
198
lldb_private::LineEntry *
lhs_ptr
= m_opaque_ap.get();
local
201
if (
lhs_ptr
&& rhs_ptr)
202
return lldb_private::LineEntry::Compare (*
lhs_ptr
, *rhs_ptr) != 0;
204
return
lhs_ptr
!= rhs_ptr;
Completed in 5301 milliseconds