Searched refs:id_ (Results 1 - 25 of 181) sorted by relevance

12345678

/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/
H A DA.h17 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_;}
H A DAB.h17 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;}
/external/libcxxabi/test/
H A Dcatch_ptr.pass.cpp12 object for the various subobjects, all of which have a unique id_ to
32 int id_; member in struct:B
33 explicit B(int id) : id_(id) {count++;}
34 B(const B& a) : id_(a.id_) {count++;}
44 int id_; member in struct:C1
45 explicit C1(int id) : B(id-2), id_(id) {count++;}
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {coun
56 int id_; member in struct:C2
68 int id_; member in struct:A
[all...]
H A Dcatch_class_01.pass.cpp19 int id_; member in struct:A
20 explicit A(int id) : id_(id) {count++;}
21 A(const A& a) : id_(a.id_) {count++;}
42 assert(a.id_ == 3);
57 assert(a.id_ == 3);
H A Dcatch_class_03.pass.cpp12 object for the various subobjects, all of which have a unique id_ to
32 int id_; member in struct:B
33 explicit B(int id) : id_(id) {count++;}
34 B(const B& a) : id_(a.id_) {count++;}
44 int id_; member in struct:C1
45 explicit C1(int id) : B(id-2), id_(id) {count++;}
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {coun
56 int id_; member in struct:C2
68 int id_; member in struct:A
[all...]
H A Dcatch_class_04.pass.cpp12 object for the various subobjects, all of which have a unique id_ to
32 int id_; member in struct:B
33 explicit B(int id) : id_(id) {count++;}
34 B(const B& a) : id_(a.id_) {count++;}
44 int id_; member in struct:C1
45 explicit C1(int id) : B(id-2), id_(id) {count++;}
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {coun
56 int id_; member in struct:C2
68 int id_; member in struct:A
[all...]
H A Dcatch_class_02.pass.cpp19 int id_; member in struct:B
20 explicit B(int id) : id_(id) {count++;}
21 B(const B& a) : id_(a.id_) {count++;}
31 int id_; member in struct:A
32 explicit A(int id) : B(id-1), id_(id) {count++;}
33 A(const A& a) : B(a.id_-1), id_(a.id_) {count++;}
62 assert(a.id_
[all...]
H A Dunwind_01.pass.cpp21 int id_; member in struct:A
22 A() : id_(++count) {}
23 ~A() {assert(id_ == count--);}
35 int id_; member in struct:B
36 B() : id_(++count) {}
37 ~B() {assert(id_ == count--);}
49 int id_; member in struct:C
50 C() : id_(++count) {}
51 ~C() {assert(id_ == count--);}
H A Dunwind_02.pass.cpp22 int id_; member in struct:A
23 A() : id_(++count) {}
24 ~A() {assert(id_ == count--);}
36 int id_; member in struct:B
37 B() : id_(++count) {}
38 ~B() {assert(id_ == count--);}
50 int id_; member in struct:C
51 C() : id_(++count) {}
52 ~C() {assert(id_ == count--);}
H A Dunwind_03.pass.cpp24 int id_; member in struct:A
25 A() : id_(++count) {}
26 ~A() {assert(id_ == count--);}
38 int id_; member in struct:B
39 B() : id_(++count) {}
40 ~B() {assert(id_ == count--);}
52 int id_; member in struct:C
53 C() : id_(++count) {}
54 ~C() {assert(id_ == count--);}
H A Dunwind_04.pass.cpp24 int id_; member in struct:A
25 A() : id_(++count) {}
26 ~A() {assert(id_ == count--);}
38 int id_; member in struct:B
39 B() : id_(++count) {}
40 ~B() {assert(id_ == count--);}
52 int id_; member in struct:C
53 C() : id_(++count) {}
54 ~C() {assert(id_ == count--);}
H A Dunwind_05.pass.cpp24 int id_; member in struct:A
25 A() : id_(++count) {}
26 ~A() {assert(id_ == count--);}
38 int id_; member in struct:B
39 B() : id_(++count) {}
40 ~B() {assert(id_ == count--);}
52 int id_; member in struct:C
53 C() : id_(++count) {}
54 ~C() {assert(id_ == count--);}
/external/jdiff/src/jdiff/
H A DSingleComment.java15 public String id_ = null; field in class:SingleComment
26 id_ = id.replaceAll("<", "&lt;").replaceAll(">", "&gt;");;
32 return id_.compareTo(((SingleComment)o).id_);
H A DDiffOutput.java21 public String id_ = null; field in class:DiffOutput
34 id_ = id;
49 // if (id_.compareTo("package") == 0)
51 return id_.compareTo(oDiffOutput.id_);
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dscoped_interface_endpoint_handle.cc17 : id_(other.id_), is_local_(other.is_local_) {
19 other.id_ = kInvalidInterfaceId;
35 if (!IsValidInterfaceId(id_))
38 group_controller_->CloseEndpointHandle(id_, is_local_);
40 id_ = kInvalidInterfaceId;
47 swap(other.id_, id_);
53 InterfaceId result = id_;
55 id_
[all...]
/external/libcxx/test/std/depr/depr.lib.binders/
H A Dtest_func.h15 int id_; member in class:test_func
21 explicit test_func(int id) : id_(id) {}
23 int id() const {return id_;}
/external/webrtc/webrtc/system_wrappers/source/
H A Dfile_impl.cc33 id_(NULL),
44 if (id_ != NULL && managed_file_handle_) {
45 fclose(id_);
57 if (id_ != NULL) {
59 return fseek(id_, 0, SEEK_SET);
104 if (id_ != NULL && !managed_file_handle_)
156 if (id_ != NULL) {
157 fclose(id_);
159 id_ = tmp_id;
176 if (id_ !
[all...]
/external/webrtc/webrtc/base/
H A Dwindow.h59 WindowId() : id_(0) {}
60 WindowId(const WindowT& id) : id_(id) {} // NOLINT
61 const WindowT& id() const { return id_; }
62 bool IsValid() const { return id_ != 0; }
64 return id_ == other.id();
68 WindowT id_; member in class:rtc::WindowId
92 DesktopId() : id_(0), index_(-1) {}
94 : id_(id), index_(index) {
96 const DesktopT& id() const { return id_; }
100 return id_
105 DesktopT id_; member in class:rtc::DesktopId
[all...]
H A Dwindowpicker.h23 WindowDescription() : id_() {}
25 : id_(id), title_(title) {
27 const WindowId& id() const { return id_; }
28 void set_id(const WindowId& id) { id_ = id; }
33 WindowId id_; member in class:rtc::WindowDescription
39 DesktopDescription() : id_() {}
41 : id_(id), title_(title), primary_(false) {
43 const DesktopId& id() const { return id_; }
44 void set_id(const DesktopId& id) { id_ = id; }
52 DesktopId id_; member in class:rtc::DesktopDescription
[all...]
/external/libchrome/base/files/
H A Dfile_tracing.cc35 FileTracing::ScopedTrace::ScopedTrace() : id_(nullptr) {}
38 if (id_ && g_provider)
39 g_provider->FileTracingEventEnd(name_, id_);
45 id_ = &file->trace_enabler_;
47 g_provider->FileTracingEventBegin(name_, id_, file->tracing_path_, size);
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dmove_pair.pass.cpp26 int id_; member in struct:B
28 explicit B(int i = 0) : id_(i) {}
48 assert(std::get<1>(t1)->id_ == 3);
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dmove_pair.pass.cpp25 int id_; member in struct:B
27 explicit B(int i) : id_(i) {}
46 assert(std::get<1>(t1)->id_ == 3);
/external/libmojo/mojo/public/cpp/bindings/
H A Dscoped_interface_endpoint_handle.h30 bool is_valid() const { return IsValidInterfaceId(id_); }
39 InterfaceId id() const { return id_; }
60 InterfaceId id_; member in class:mojo::ScopedInterfaceEndpointHandle
/external/drm_hwcomposer/
H A Ddrmencoder.cpp28 : id_(e->encoder_id),
35 return id_;
/external/libcxx/test/support/
H A Dallocators.h23 int id_; member in class:A1
25 explicit A1(int id = 0) TEST_NOEXCEPT : id_(id) {} function in class:A1
29 int id() const {return id_;}
36 A1(const A1& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} function in class:A1
37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} function in class:A1
38 A1& operator=(const A1& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
39 A1& operator=(A1&& a) TEST_NOEXCEPT { id_ = a.id(); move_called = true; return *this;}
42 A1(const A1<U>& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} function in class:A1
44 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} function in class:A1
57 std::size_t max_size() const {return id_;}
82 int id_; member in class:A2
84 explicit A2(int id = 0) TEST_NOEXCEPT : id_(id) {} function in class:A2
99 A2(const A2& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} function in class:A2
100 A2(A2&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} function in class:A2
132 int id_; member in class:A3
134 explicit A3(int id = 0) TEST_NOEXCEPT : id_(id) {} function in class:A3
148 A3(const A3& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} function in class:A3
149 A3(A3&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} function in class:A3
[all...]

Completed in 7456 milliseconds

12345678