Home
last modified time | relevance | path

Searched refs:obj_ (Results 1 – 25 of 35) sorted by relevance

12

/third_party/boost/boost/thread/
Dexternally_locked.hpp53 obj_(obj), mtx_(&mtx) in externally_locked()
62 obj_(move(obj)), mtx_(&mtx) in externally_locked()
71 : obj_(), mtx_(&mtx) in externally_locked()
79 : obj_(rhs.obj_), mtx_(rhs.mtx_) in externally_locked()
86 : obj_(move(rhs.obj_)), mtx_(rhs.mtx_) in externally_locked()
93 obj_=rhs.obj_; in operator =()
101 obj_=move(BOOST_THREAD_RV(rhs).obj_); in operator =()
108 swap(obj_, rhs.obj_); in swap()
122 return obj_; in get()
128 return obj_; in get()
[all …]
/third_party/flutter/engine/flutter/fml/platform/android/
Dscoped_java_ref.cc30 JavaRef<jobject>::JavaRef() : obj_(NULL) {} in JavaRef()
32 JavaRef<jobject>::JavaRef(JNIEnv* env, jobject obj) : obj_(obj) { in JavaRef()
48 if (obj_) in SetNewLocalRef()
49 env->DeleteLocalRef(obj_); in SetNewLocalRef()
50 obj_ = obj; in SetNewLocalRef()
62 if (obj_) in SetNewGlobalRef()
63 env->DeleteGlobalRef(obj_); in SetNewGlobalRef()
64 obj_ = obj; in SetNewGlobalRef()
68 if (obj_) { in ResetLocalRef()
70 env->DeleteLocalRef(obj_); in ResetLocalRef()
[all …]
Djni_weak_ref.cc13 JavaObjectWeakGlobalRef::JavaObjectWeakGlobalRef() : obj_(NULL) {} in JavaObjectWeakGlobalRef()
17 : obj_(NULL) { in JavaObjectWeakGlobalRef()
22 : obj_(env->NewWeakGlobalRef(obj)) { in JavaObjectWeakGlobalRef()
23 FML_DCHECK(obj_); in JavaObjectWeakGlobalRef()
35 if (obj_) { in reset()
36 AttachCurrentThread()->DeleteWeakGlobalRef(obj_); in reset()
37 obj_ = NULL; in reset()
42 return GetRealObject(env, obj_); in get()
61 if (obj_) in Assign()
62 env->DeleteWeakGlobalRef(obj_); in Assign()
[all …]
Djni_weak_ref.h33 bool is_empty() const { return obj_ == NULL; } in is_empty()
40 jweak obj_; variable
Dscoped_java_ref.h43 jobject obj() const { return obj_; } in obj()
45 bool is_null() const { return obj_ == NULL; } in is_null()
66 jobject obj_;
/third_party/abseil-cpp/absl/types/
Dany.h214 : obj_(other.has_value() ? other.obj_->Clone() in any()
232 any(T&& value) : obj_(new Obj<VT>(in_place, std::forward<T>(value))) {} in any()
241 : obj_(new Obj<VT>(in_place, std::forward<Args>(args)...)) {} in any()
255 : obj_(new Obj<VT>(in_place, ilist, std::forward<Args>(args)...)) {} in any()
304 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
328 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
336 void reset() noexcept { obj_ = nullptr; } in reset()
341 void swap(any& other) noexcept { obj_.swap(other.obj_); } in swap()
349 bool has_value() const noexcept { return obj_ != nullptr; } in has_value()
356 return obj_->Type(); in type()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Dany.h214 : obj_(other.has_value() ? other.obj_->Clone() in any()
232 any(T&& value) : obj_(new Obj<VT>(in_place, std::forward<T>(value))) {} in any()
241 : obj_(new Obj<VT>(in_place, std::forward<Args>(args)...)) {} in any()
255 : obj_(new Obj<VT>(in_place, ilist, std::forward<Args>(args)...)) {} in any()
304 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
328 obj_ = std::unique_ptr<ObjInterface>(object_ptr); in emplace()
336 void reset() noexcept { obj_ = nullptr; } in reset()
341 void swap(any& other) noexcept { obj_.swap(other.obj_); } in swap()
349 bool has_value() const noexcept { return obj_ != nullptr; } in has_value()
356 return obj_->Type(); in type()
[all …]
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/
Dresolve.h43 : Named(module), module_(module), obj_(obj), module_obj_(module_obj) {} in Named()
47 py::object obj() { return obj_; } in obj()
58 py::object obj_; variable
105 …apper(const py::object &obj, const std::string &name = "Python object") : Named(name), obj_(obj) {} in Named()
108 py::object obj() { return obj_; } in obj()
112 py::object obj_;
Dparse.h316 : obj_(obj), target_type_(PARSE_TARGET_UNKNOW), function_line_offset_(-1) {} in ParseFunctionAst()
356 py::object obj() { return obj_; } in obj()
368 py::object obj_;
/third_party/boost/boost/contract/detail/condition/
Dcond_inv.hpp100 , obj_(obj) in cond_inv()
118 C* object() { return obj_; } in object()
154 check_const_inv() { boost::contract::access::const_invariant(obj_); } in check_const_inv()
164 check_cv_inv() { boost::contract::access::cv_invariant(obj_); } in check_cv_inv()
225 C* obj_; member in boost::contract::detail::cond_inv
/third_party/boost/boost/multi_index/detail/
Dscope_guard.hpp305 obj_scope_guard_impl0(Obj& obj,MemFun mem_fun):obj_(obj),mem_fun_(mem_fun){} in obj_scope_guard_impl0()
307 void execute(){(obj_.*mem_fun_)();} in execute()
310 Obj& obj_; member in boost::multi_index::detail::obj_scope_guard_impl0
339 obj_(obj),mem_fun_(mem_fun),p1_(p1){} in obj_scope_guard_impl1()
341 void execute(){(obj_.*mem_fun_)(p1_);} in execute()
344 Obj& obj_; member in boost::multi_index::detail::obj_scope_guard_impl1
375 obj_(obj),mem_fun_(mem_fun),p1_(p1),p2_(p2) in obj_scope_guard_impl2()
378 void execute(){(obj_.*mem_fun_)(p1_,p2_);} in execute()
381 Obj& obj_; member in boost::multi_index::detail::obj_scope_guard_impl2
413 obj_(obj),mem_fun_(mem_fun),p1_(p1),p2_(p2),p3_(p3) in obj_scope_guard_impl3()
[all …]
/third_party/mindspore/tests/ut/cpp/pipeline/parse/
Dparser_primitive_test.cc72 …py::object obj_ = python_adapter::CallPyFn("gtest_input.pipeline.parse.parse_primitive", "test_pri… in TEST_F()
73 Parser::InitParserEnvironment(obj_); in TEST_F()
74 FuncGraphPtr func_graph = ParsePythonCode(obj_); in TEST_F()
/third_party/boost/boost/signals2/detail/
Dscope_guard.hpp85 obj_(obj),mem_fun_(mem_fun),p1_(p1),p2_(p2) in obj_scope_guard_impl2()
88 void execute(){(obj_.*mem_fun_)(p1_,p2_);} in execute()
91 Obj& obj_; member in boost::signals2::detail::obj_scope_guard_impl2
/third_party/boost/libs/local_function/example/
Dimpl_tparam_tricks.cpp16 : obj_(obj), call_(call) {} in casting_func()
18 inline void operator()(const int& num) { call_(obj_, num); } in operator ()()
20 void* obj_; member
/third_party/boost/boost/phoenix/operator/detail/cpp03/
Dmem_fun_ptr_gen.hpp30 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
31 : obj(obj_) in mem_fun_ptr_gen()
/third_party/harfbuzz/src/
Dhb-debug.hh276 const void *obj_, in hb_auto_trace_t()
280 : plevel (plevel_), what (what_), obj (obj_), returned (false) in hb_auto_trace_t()
328 const void *obj_, in hb_auto_trace_t()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-debug.hh276 const void *obj_, in hb_auto_trace_t()
280 : plevel (plevel_), what (what_), obj (obj_), returned (false) in hb_auto_trace_t()
328 const void *obj_, in hb_auto_trace_t()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-debug.hh277 const void *obj_, in hb_auto_trace_t()
281 : plevel (plevel_), what (what_), obj (obj_), returned (false) in hb_auto_trace_t()
328 const void *obj_, in hb_auto_trace_t()
/third_party/libxml2/result/
Ddia2.sax228 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
38 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
128 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
138 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
226 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
236 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
Ddia1.sax228 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
38 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
128 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
138 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
226 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
236 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
/third_party/libxml2/result/noent/
Ddia2.sax228 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
38 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
128 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
138 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
226 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
236 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
Ddia1.sax228 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
38 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
128 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
138 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
226 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
236 SAX.startElementNs(attribute, dia, 'http://www.lysator.liu.se/~alla/dia/', 0, 1, 0, name='obj_...',…
/third_party/boost/boost/spirit/home/classic/phoenix/
Dbinders.hpp2705 bound_member_action(CT & obj_, mem_func_ptr_t fptr_) in bound_member_action()
2706 : obj(impl::as_ptr<CT>::get(obj_)), fptr(fptr_) {} in bound_member_action()
2786 bound_member_action(CT & obj_, mem_func_ptr_t fptr_) in bound_member_action()
2787 : obj(impl::as_ptr<CT>::get(obj_)), fptr(fptr_) {} in bound_member_action()
2859 bound_member_action(CT & obj_, mem_func_ptr_t fptr_) in bound_member_action()
2860 : obj(impl::as_ptr<CT>::get(obj_)), fptr(fptr_) {} in bound_member_action()
2929 bound_member_action(CT & obj_, mem_func_ptr_t fptr_) in bound_member_action()
2930 : obj(impl::as_ptr<CT>::get(obj_)), fptr(fptr_) {} in bound_member_action()
3000 bound_member_action(CT & obj_, mem_func_ptr_t fptr_) in bound_member_action()
3001 : obj(impl::as_ptr<CT>::get(obj_)), fptr(fptr_) {} in bound_member_action()
[all …]
/third_party/boost/boost/phoenix/operator/detail/cpp03/preprocessed/
Dmem_fun_ptr_gen_10.hpp12 mem_fun_ptr_gen(Object const& obj_, MemPtr ptr_) in mem_fun_ptr_gen()
13 : obj(obj_) in mem_fun_ptr_gen()
/third_party/boost/libs/thread/doc/
Dexternal_locking.qbk198 explicit strict_lock(lockable_type& obj) : obj_(obj) {
205 ~strict_lock() { obj_.unlock(); } // unlocks on destruction
209 return l == &obj_;
212 lockable_type& obj_;
335 bool owns_lock(Lockable* mtx) const { return mtx==&obj_; }
394 : obj_(obj)
399 : obj_()
408 return obj_;
411 obj_ = obj;
415 T obj_;
[all …]

12