Home
last modified time | relevance | path

Searched refs:id_ (Results 1 – 25 of 177) sorted by relevance

12345678

/external/libcxxabi/test/
Dcatch_ptr.pass.cpp32 int id_; member
33 explicit B(int id) : id_(id) {count++;} in B()
34 B(const B& a) : id_(a.id_) {count++;} in B()
44 int id_; member
45 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
56 int id_; member
57 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2()
58 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2()
68 int id_; member
[all …]
Dcatch_class_03.pass.cpp32 int id_; member
33 explicit B(int id) : id_(id) {count++;} in B()
34 B(const B& a) : id_(a.id_) {count++;} in B()
44 int id_; member
45 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
56 int id_; member
57 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2()
58 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2()
68 int id_; member
[all …]
Dcatch_class_04.pass.cpp32 int id_; member
33 explicit B(int id) : id_(id) {count++;} in B()
34 B(const B& a) : id_(a.id_) {count++;} in B()
44 int id_; member
45 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1()
46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1()
56 int id_; member
57 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2()
58 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2()
68 int id_; member
[all …]
Dcatch_class_02.pass.cpp19 int id_; member
20 explicit B(int id) : id_(id) {count++;} in B()
21 B(const B& a) : id_(a.id_) {count++;} in B()
31 int id_; member
32 explicit A(int id) : B(id-1), id_(id) {count++;} in A()
33 A(const A& a) : B(a.id_-1), id_(a.id_) {count++;} in A()
62 assert(a.id_ == 3); in f2()
81 assert(b.id_ == 2); in main()
Dunwind_03.pass.cpp24 int id_; member
25 A() : id_(++count) {} in A()
26 ~A() {assert(id_ == count--);} in ~A()
38 int id_; member
39 B() : id_(++count) {} in B()
40 ~B() {assert(id_ == count--);} in ~B()
52 int id_; member
53 C() : id_(++count) {} in C()
54 ~C() {assert(id_ == count--);} in ~C()
Dunwind_02.pass.cpp22 int id_; member
23 A() : id_(++count) {} in A()
24 ~A() {assert(id_ == count--);} in ~A()
36 int id_; member
37 B() : id_(++count) {} in B()
38 ~B() {assert(id_ == count--);} in ~B()
50 int id_; member
51 C() : id_(++count) {} in C()
52 ~C() {assert(id_ == count--);} in ~C()
Dunwind_01.pass.cpp21 int id_; member
22 A() : id_(++count) {} in A()
23 ~A() {assert(id_ == count--);} in ~A()
35 int id_; member
36 B() : id_(++count) {} in B()
37 ~B() {assert(id_ == count--);} in ~B()
49 int id_; member
50 C() : id_(++count) {} in C()
51 ~C() {assert(id_ == count--);} in ~C()
Dunwind_04.pass.cpp24 int id_; member
25 A() : id_(++count) {} in A()
26 ~A() {assert(id_ == count--);} in ~A()
38 int id_; member
39 B() : id_(++count) {} in B()
40 ~B() {assert(id_ == count--);} in ~B()
52 int id_; member
53 C() : id_(++count) {} in C()
54 ~C() {assert(id_ == count--);} in ~C()
Dunwind_05.pass.cpp24 int id_; member
25 A() : id_(++count) {} in A()
26 ~A() {assert(id_ == count--);} in ~A()
38 int id_; member
39 B() : id_(++count) {} in B()
40 ~B() {assert(id_ == count--);} in ~B()
52 int id_; member
53 C() : id_(++count) {} in C()
54 ~C() {assert(id_ == count--);} in ~C()
Dcatch_class_01.pass.cpp19 int id_; member
20 explicit A(int id) : id_(id) {count++;} in A()
21 A(const A& a) : id_(a.id_) {count++;} in A()
42 assert(a.id_ == 3); in f2()
57 assert(a.id_ == 3); in main()
/external/webrtc/webrtc/system_wrappers/source/
Dfile_impl.cc33 id_(NULL), in FileWrapperImpl()
44 if (id_ != NULL && managed_file_handle_) { in ~FileWrapperImpl()
45 fclose(id_); in ~FileWrapperImpl()
57 if (id_ != NULL) { in Rewind()
59 return fseek(id_, 0, SEEK_SET); in Rewind()
104 if (id_ != NULL && !managed_file_handle_) in OpenFile()
156 if (id_ != NULL) { in OpenFile()
157 fclose(id_); in OpenFile()
159 id_ = tmp_id; in OpenFile()
176 if (id_ != NULL) { in OpenFromFileHandle()
[all …]
/external/libcxx/test/support/
Dallocators.h23 int id_; variable
25 explicit A1(int id = 0) TEST_NOEXCEPT : id_(id) {} in id_() function
29 int id() const {return id_;} in id()
36 A1(const A1& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;} in A1()
37 A1(A1&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in 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;} in A1()
44 A1(A1<U>&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;} in A1()
57 std::size_t max_size() const {return id_;} in max_size()
[all …]
Dtest_allocator.h51 int id_; // unique identifier, doesn't participate in equality variable
65 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {++count;} in test_allocator()
66 explicit test_allocator(int i, int id = 0) TEST_NOEXCEPT : data_(i), id_(id) in data_()
69 : data_(a.data_), id_(a.id_) {++count;} in test_allocator()
71 : data_(a.data_), id_(a.id_) {++count;} in test_allocator()
73 assert(data_ >= 0); assert(id_ >= 0); in ~test_allocator()
74 --count; data_ = -1; id_ = -1; in ~test_allocator()
111 int get_id() const { return id_; } in get_id()
180 int id_; variable
193 test_allocator() TEST_NOEXCEPT : data_(0), id_(0) {} in test_allocator()
[all …]
/external/libmojo/mojo/public/cpp/bindings/lib/
Dscoped_interface_endpoint_handle.cc17 : id_(other.id_), is_local_(other.is_local_) { in ScopedInterfaceEndpointHandle()
19 other.id_ = kInvalidInterfaceId; in ScopedInterfaceEndpointHandle()
35 if (!IsValidInterfaceId(id_)) in reset()
38 group_controller_->CloseEndpointHandle(id_, is_local_); in reset()
40 id_ = kInvalidInterfaceId; in reset()
47 swap(other.id_, id_); in swap()
53 InterfaceId result = id_; in release()
55 id_ = kInvalidInterfaceId; in release()
66 : id_(id), in ScopedInterfaceEndpointHandle()
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Dconvert_copy.pass.cpp37 int id_; member
39 explicit B(int i) : id_(i) {} in B()
52 int id_; member
54 constexpr A(int i) : id_(i) {} in A()
55 friend constexpr bool operator==(const A& x, const A& y) {return x.id_ == y.id_;} in operator ==()
60 int id_; member
62 constexpr explicit C(int i) : id_(i) {} in C()
63 friend constexpr bool operator==(const C& x, const C& y) {return x.id_ == y.id_;} in operator ==()
108 assert(std::get<2>(t1).id_ == 3); in main()
116 d.id_ = 2; in main()
[all …]
Dconvert_move.pass.cpp35 int id_; member
37 explicit B(int i) : id_(i) {} in B()
72 assert(std::get<2>(t1).id_ == 3); in main()
80 d.id_ = 2; in main()
83 assert(std::get<2>(t1).id_ == 2); in main()
92 assert(std::get<2>(t1)->id_ == 3); in main()
/external/webrtc/webrtc/base/
Dwindow.h59 WindowId() : id_(0) {} in WindowId()
60 WindowId(const WindowT& id) : id_(id) {} // NOLINT in WindowId()
61 const WindowT& id() const { return id_; } in id()
62 bool IsValid() const { return id_ != 0; } in IsValid()
64 return id_ == other.id(); in Equals()
68 WindowT id_;
92 DesktopId() : id_(0), index_(-1) {} in DesktopId()
94 : id_(id), index_(index) { in DesktopId()
96 const DesktopT& id() const { return id_; } in id()
100 return id_ == other.id() && index_ == other.index(); in Equals()
[all …]
Dwindowpicker.h23 WindowDescription() : id_() {} in WindowDescription()
25 : id_(id), title_(title) { in WindowDescription()
27 const WindowId& id() const { return id_; } in id()
28 void set_id(const WindowId& id) { id_ = id; } in set_id()
33 WindowId id_;
39 DesktopDescription() : id_() {} in DesktopDescription()
41 : id_(id), title_(title), primary_(false) { in DesktopDescription()
43 const DesktopId& id() const { return id_; } in id()
44 void set_id(const DesktopId& id) { id_ = id; } in set_id()
52 DesktopId id_;
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/
DA.h17 int id_; variable
19 explicit A(int id) : id_(id) {++count;} in A()
20 A(const A& a) : id_(a.id_) {++count;} in A()
21 ~A() {assert(id_ >= 0); id_ = -1; --count;} in ~A()
23 int id() const {return id_;} in id()
DAB.h17 int id_; variable
19 explicit A(int id) : id_(id) {++count;} in A()
20 A(const A& a) : id_(a.id_) {++count;} in A()
21 virtual ~A() {assert(id_ >= 0); id_ = -1; --count;} in ~A()
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dhandler_tracking.ipp80 h->id_ = state->next_id_++;
87 current_id = current_completion->id_;
92 current_id, h->id_, object_type, object, op_name);
96 : id_(h->id_),
105 if (id_)
112 invoked_ ? '!' : '~', id_);
124 timestamp.seconds, timestamp.microseconds, id_);
137 id_, ec.category().name(), ec.value());
150 id_, ec.category().name(), ec.value(),
164 id_, ec.category().name(), ec.value(), signal_number);
[all …]
/external/libchrome/base/files/
Dfile_tracing.cc35 FileTracing::ScopedTrace::ScopedTrace() : id_(nullptr) {} in ScopedTrace()
38 if (id_ && g_provider) in ~ScopedTrace()
39 g_provider->FileTracingEventEnd(name_, id_); in ~ScopedTrace()
45 id_ = &file->trace_enabler_; in Initialize()
47 g_provider->FileTracingEventBegin(name_, id_, file->tracing_path_, size); in Initialize()
/external/libchrome/base/threading/
Dplatform_thread.h51 : id_(0) { in PlatformThreadRef()
55 : id_(id) { in PlatformThreadRef()
59 return id_ == other.id_;
63 return id_ == 0; in is_null()
66 RefType id_;
/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_impl.cc107 id_(config.id), in AudioCodingModuleImpl()
120 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceAudioCoding, id_, in AudioCodingModuleImpl()
123 WEBRTC_TRACE(webrtc::kTraceMemory, webrtc::kTraceAudioCoding, id_, "Created"); in AudioCodingModuleImpl()
242 WEBRTC_TRACE(webrtc::kTraceStream, webrtc::kTraceAudioCoding, id_, in SendFrequency()
248 WEBRTC_TRACE(webrtc::kTraceStream, webrtc::kTraceAudioCoding, id_, in SendFrequency()
285 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceAudioCoding, id_, in Add10MsDataInternal()
292 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceAudioCoding, id_, in Add10MsDataInternal()
300 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceAudioCoding, id_, in Add10MsDataInternal()
307 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceAudioCoding, id_, in Add10MsDataInternal()
427 WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceAudioCoding, id_, in PreprocessToAddData()
[all …]
/external/jdiff/src/jdiff/
DSingleComment.java15 public String id_ = null; field in SingleComment
26 id_ = id.replaceAll("<", "&lt;").replaceAll(">", "&gt;");; in SingleComment()
32 return id_.compareTo(((SingleComment)o).id_); in compareTo()

12345678