HomeSort by relevance Sort by last modified time
    Searched refs:id_ (Results 1 - 25 of 474) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/
A.h 17 int id_; member in class:A
19 explicit A(int id) : id_(id) {++count;}
20 A(const A& a) : id_(a.id_) {++count;}
21 ~A() {assert(id_ >= 0); id_ = -1; --count;}
23 int id() const {return id_;}
AB.h 17 int id_; member in class:A
19 explicit A(int id) : id_(id) {++count;}
20 A(const A& a) : id_(a.id_) {++count;}
21 virtual ~A() {assert(id_ >= 0); id_ = -1; --count;}
  /art/compiler/utils/
managed_register.h 37 ManagedRegister(const ManagedRegister& other) : id_(other.id_) { }
40 id_ = other.id_;
50 return id_ == other.id_;
54 return id_ == kNoRegister;
64 ManagedRegister() : id_(kNoRegister) { }
65 explicit ManagedRegister(int reg_id) : id_(reg_id) { }
67 int id_; member in class:art::ManagedRegister
    [all...]
  /external/chromium_org/extensions/common/matcher/
string_pattern.cc 11 : pattern_(pattern), id_(id) {}
16 if (id_ != rhs.id_) return id_ < rhs.id_;
  /external/chromium_org/ppapi/shared_impl/
scoped_pp_resource.cc 13 ScopedPPResource::ScopedPPResource() : id_(0) {
16 ScopedPPResource::ScopedPPResource(PP_Resource resource) : id_(resource) {
21 : id_(resource) {
25 : id_(resource ? resource->GetReference() : 0) {
30 : id_(other.id_) {
39 if (id_ == resource)
42 id_ = resource;
49 if (id_ == resource.id_)
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
catch_ptr.cpp 12 object for the various subobjects, all of which have a unique id_ to
23 int id_; member in struct:B
24 explicit B(int id) : id_(id) {count++;}
25 B(const B& a) : id_(a.id_) {count++;}
35 int id_; member in struct:C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;
47 int id_; member in struct:C2
59 int id_; member in struct:A
    [all...]
catch_class_01.cpp 17 int id_; member in struct:A
18 explicit A(int id) : id_(id) {count++;}
19 A(const A& a) : id_(a.id_) {count++;}
40 assert(a.id_ == 3);
55 assert(a.id_ == 3);
catch_class_03.cpp 12 object for the various subobjects, all of which have a unique id_ to
23 int id_; member in struct:B
24 explicit B(int id) : id_(id) {count++;}
25 B(const B& a) : id_(a.id_) {count++;}
35 int id_; member in struct:C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;
47 int id_; member in struct:C2
59 int id_; member in struct:A
    [all...]
catch_class_04.cpp 12 object for the various subobjects, all of which have a unique id_ to
23 int id_; member in struct:B
24 explicit B(int id) : id_(id) {count++;}
25 B(const B& a) : id_(a.id_) {count++;}
35 int id_; member in struct:C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;
47 int id_; member in struct:C2
59 int id_; member in struct:A
    [all...]
catch_class_02.cpp 17 int id_; member in struct:B
18 explicit B(int id) : id_(id) {count++;}
19 B(const B& a) : id_(a.id_) {count++;}
29 int id_; member in struct:A
30 explicit A(int id) : B(id-1), id_(id) {count++;}
31 A(const A& a) : B(a.id_-1), id_(a.id_) {count++;}
60 assert(a.id_ == 3)
    [all...]
unwind_01.cpp 15 int id_; member in struct:A
16 A() : id_(++count) {}
17 ~A() {assert(id_ == count--);}
29 int id_; member in struct:B
30 B() : id_(++count) {}
31 ~B() {assert(id_ == count--);}
43 int id_; member in struct:C
44 C() : id_(++count) {}
45 ~C() {assert(id_ == count--);}
unwind_02.cpp 15 int id_; member in struct:A
16 A() : id_(++count) {}
17 ~A() {assert(id_ == count--);}
29 int id_; member in struct:B
30 B() : id_(++count) {}
31 ~B() {assert(id_ == count--);}
43 int id_; member in struct:C
44 C() : id_(++count) {}
45 ~C() {assert(id_ == count--);}
unwind_03.cpp 17 int id_; member in struct:A
18 A() : id_(++count) {}
19 ~A() {assert(id_ == count--);}
31 int id_; member in struct:B
32 B() : id_(++count) {}
33 ~B() {assert(id_ == count--);}
45 int id_; member in struct:C
46 C() : id_(++count) {}
47 ~C() {assert(id_ == count--);}
unwind_04.cpp 17 int id_; member in struct:A
18 A() : id_(++count) {}
19 ~A() {assert(id_ == count--);}
31 int id_; member in struct:B
32 B() : id_(++count) {}
33 ~B() {assert(id_ == count--);}
45 int id_; member in struct:C
46 C() : id_(++count) {}
47 ~C() {assert(id_ == count--);}
  /external/chromium/chrome/browser/sessions/
session_id.cc 10 id_ = next_id++;
session_id.h 26 id_type id() const { return id_; }
33 explicit SessionID(id_type id) : id_(id) {}
36 void set_id(id_type id) { id_ = id; }
38 id_type id_; member in class:SessionID
  /external/chromium_org/chrome/browser/notifications/
notification_test_util.cc 8 : id_(id) {
14 return id_;
  /external/jdiff/src/jdiff/
SingleComment.java 15 public String id_ = null; field in class:SingleComment
26 id_ = id.replaceAll("<", "&lt;").replaceAll(">", "&gt;");;
32 return id_.compareTo(((SingleComment)o).id_);
  /external/chromium_org/chrome/browser/sessions/
session_id.h 40 void set_id(id_type id) { id_ = id; }
41 id_type id() const { return id_; }
44 id_type id_; member in class:SessionID
  /external/chromium_org/content/browser/loader/
resource_message_delegate.cc 14 : id_(ResourceRequestInfoImpl::ForRequest(request)->GetGlobalRequestID()) {
16 rdh->RegisterResourceMessageDelegate(id_, this);
21 rdh->UnregisterResourceMessageDelegate(id_, this);
  /external/chromium_org/third_party/libjingle/source/talk/base/
windowpicker.h 17 WindowDescription() : id_() {}
19 : id_(id), title_(title) {
21 const WindowId& id() const { return id_; }
22 void set_id(const WindowId& id) { id_ = id; }
27 WindowId id_; member in class:talk_base::WindowDescription
33 DesktopDescription() : id_() {}
35 : id_(id), title_(title), primary_(false) {
37 const DesktopId& id() const { return id_; }
38 void set_id(const DesktopId& id) { id_ = id; }
46 DesktopId id_; member in class:talk_base::DesktopDescription
    [all...]
  /external/chromium_org/media/base/
bitstream_buffer.h 18 : id_(id),
23 int32 id() const { return id_; }
28 int32 id_; member in class:media::BitstreamBuffer
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/
test_func.h 15 int id_; member in class:test_func
21 explicit test_func(int id) : id_(id) {}
23 int id() const {return id_;}
  /art/compiler/sea_ir/ir/
sea_node.h 42 explicit SeaNode():id_(GetNewId()), string_id_() {
43 string_id_ = art::StringPrintf("%d", id_);
57 return id_;
67 const int id_; member in class:sea_ir::SeaNode
  /external/chromium_org/remoting/host/
desktop_session.cc 17 id_(id) {

Completed in 1660 milliseconds

1 2 3 4 5 6 7 8 91011>>