Home
last modified time | relevance | path

Searched refs:ref_ (Results 1 – 20 of 20) sorted by relevance

/third_party/cef/include/base/
Dcef_weak_ptr.h196 ref_ = internal::WeakReference(); in reset()
203 WeakReference ref_; variable
237 ptr.ref_, static_cast<Derived*>(reinterpret_cast<Base*>(ptr.ptr_))); in AsWeakPtrImpl()
283 return ref_.IsValid() ? reinterpret_cast<T*>(ptr_) : nullptr; in get()
287 CHECK(ref_.IsValid());
291 CHECK(ref_.IsValid());
305 bool MaybeValid() const { return ref_.MaybeValid(); } in MaybeValid()
310 bool WasInvalidated() const { return ptr_ && !ref_.IsValid(); } in WasInvalidated()
/third_party/gn/src/gn/
Dparse_node_value_adapter.h30 if (ref_) in get()
31 return *ref_; in get()
48 const Value* ref_;
Dparse_node_value_adapter.cc10 ParseNodeValueAdapter::ParseNodeValueAdapter() : ref_(nullptr) {} in ParseNodeValueAdapter()
19 ref_ = scope->GetValue(identifier->value().value(), true); in Init()
20 if (!ref_) { in Init()
/third_party/skia/third_party/externals/tint/src/utils/
Dscoped_assignment.h36 ScopedAssignment(T& var, T val) : ref_(var) { in ScopedAssignment()
43 ~ScopedAssignment() { ref_ = old_value_; } in ~ScopedAssignment()
49 T& ref_; variable
/third_party/gn/src/base/
Dvalue_iterators.h40 reference* operator->() { return &ref_; }
43 reference ref_;
84 const reference* operator->() const { return &ref_; }
87 const reference ref_;
Dvalue_iterators.cc14 dict_iterator::pointer::pointer(const reference& ref) : ref_(ref) {} in pointer()
69 const_dict_iterator::pointer::pointer(const reference& ref) : ref_(ref) {} in pointer()
/third_party/gn/src/base/memory/
Dweak_ptr.h154 ref_ = internal::WeakReference(); in reset()
161 WeakReference ref_; variable
195 ptr.ref_, static_cast<Derived*>(reinterpret_cast<Base*>(ptr.ptr_))); in AsWeakPtrImpl()
242 return ref_.is_valid() ? reinterpret_cast<T*>(ptr_) : nullptr; in get()
Dweak_ptr.cc62 : ref_(ref), ptr_(ptr) { in WeakPtrBase()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
DvktTextureShadowTests.cpp263 FilterCase (int tex_, const float ref_, const tcu::Vec2& minCoord_, const tcu::Vec2& maxCoord_) in FilterCase()
267 , ref (ref_) in FilterCase()
488 …FilterCase (const int tex_, const float ref_, const tcu::Vec2& bottomLeft_, const tcu::Vec2& topRi… in FilterCase()
492 , ref (ref_) in FilterCase()
724 FilterCase (const int tex_, float ref_, const tcu::Vec3& minCoord_, const tcu::Vec3& maxCoord_) in FilterCase()
728 , ref (ref_) in FilterCase()
956 FilterCase (int tex_, const float ref_, const float& minCoord_, const float& maxCoord_) in FilterCase()
960 , ref (ref_) in FilterCase()
1175 FilterCase (const int tex_, float ref_, const tcu::Vec2& minCoord_, const tcu::Vec2& maxCoord_) in FilterCase()
1179 , ref (ref_) in FilterCase()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
DvktTextureShadowTests.cpp263 FilterCase (int tex_, const float ref_, const tcu::Vec2& minCoord_, const tcu::Vec2& maxCoord_) in FilterCase()
267 , ref (ref_) in FilterCase()
488 …FilterCase (const int tex_, const float ref_, const tcu::Vec2& bottomLeft_, const tcu::Vec2& topRi… in FilterCase()
492 , ref (ref_) in FilterCase()
724 FilterCase (const int tex_, float ref_, const tcu::Vec3& minCoord_, const tcu::Vec3& maxCoord_) in FilterCase()
728 , ref (ref_) in FilterCase()
956 FilterCase (int tex_, const float ref_, const float& minCoord_, const float& maxCoord_) in FilterCase()
960 , ref (ref_) in FilterCase()
1175 FilterCase (const int tex_, float ref_, const tcu::Vec2& minCoord_, const tcu::Vec2& maxCoord_) in FilterCase()
1179 , ref (ref_) in FilterCase()
[all …]
/third_party/cef/libcef_dll/base/
Dcef_weak_ptr.cc87 : ref_(ref), ptr_(ptr) { in WeakPtrBase()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fTextureShadowTests.cpp190 …FilterCase (const glu::Texture2D* tex_, const float ref_, const tcu::Vec2& minCoord_, const tcu::V… in FilterCase()
194 , ref (ref_) in FilterCase()
441 …FilterCase (const glu::TextureCube* tex_, const float ref_, const tcu::Vec2& bottomLeft_, const tc… in FilterCase()
445 , ref (ref_) in FilterCase()
734 …FilterCase (const glu::Texture2DArray* tex_, float ref_, const tcu::Vec3& minCoord_, const tcu::Ve… in FilterCase()
738 , ref (ref_) in FilterCase()
/third_party/googletest/googlemock/include/gmock/
Dgmock-actions.h752 explicit ReturnRefAction(T& ref) : ref_(ref) {} // NOLINT
764 return Action<F>(new Impl<F>(ref_));
775 explicit Impl(T& ref) : ref_(ref) {} // NOLINT
777 Result Perform(const ArgumentTuple&) override { return ref_; }
780 T& ref_;
783 T& ref_;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dkeywords.rs134 pub static mut ref_: ::std::os::raw::c_int; variable
/third_party/node/src/
Dnode_file.h339 v8::Global<v8::Value> ref_{};
Dnode_file.cc311 Local<Value> val = ref_.Get(isolate); in file_handle()
322 ref_.Reset(env->isolate(), ref); in CloseReq()
328 ref_.Reset(); in ~CloseReq()
333 tracker->TrackField("ref", ref_); in MemoryInfo()
/third_party/vk-gl-cts/framework/common/
DtcuTexture.cpp1881 … (const tcu::Vec4& color, Sampler::CompareMode compare, int chanNdx, float ref_, bool isFixedPoint) in execCompare() argument
1885 const float ref = (clampValues) ? (de::clamp(ref_, 0.0f, 1.0f)) : (ref_); in execCompare()
/third_party/rust/crates/libc/src/
Dpsp.rs3571 pub fn sceGuStencilFunc(func: StencilFunc, ref_: i32, mask: i32); in sceGuStencilFunc()
/third_party/libxml2/
DNEWS854 …Bug 760861: REGRESSION (bf9c1dad): Missing results for test/schemas/regexp-char-ref_[01].xsd <http…
/third_party/node/tools/
Dlint-md.mjs12264 state.dump = '*ref_' + duplicateIndex;
12273 state.dump = '&ref_' + duplicateIndex + state.dump;
12278 state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;
12289 state.dump = '&ref_' + duplicateIndex + state.dump;
12294 state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;