OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DynamicImageRef
(Results
1 - 2
of
2
) sorted by null
/external/google-breakpad/src/client/mac/handler/
dynamic_images.h
201
//
DynamicImageRef
is just a simple wrapper for a pointer to
206
class
DynamicImageRef
{
208
explicit
DynamicImageRef
(DynamicImage *inP) : p(inP) {}
210
DynamicImageRef
(const
DynamicImageRef
&inRef) : p(inRef.p) {}
212
bool operator<(const
DynamicImageRef
&inRef) const {
213
return (*const_cast<
DynamicImageRef
*>(this)->p)
214
< (*const_cast<
DynamicImageRef
&>(inRef).p);
217
bool operator==(const
DynamicImageRef
&inInfo) const {
218
return (*const_cast<
DynamicImageRef
*>(this)->p).GetLoadAddress() =
[
all
...]
dynamic_images.cc
499
images.image_list_.push_back(
DynamicImageRef
(new_image));
512
vector<
DynamicImageRef
>::iterator it = unique(images.image_list_.begin(),
Completed in 45 milliseconds