Home
last modified time | relevance | path

Searched refs:get_one (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/limit-debug-info/
Dmain.cpp24 result::One get_one() { return result::One(124); } in get_one() function
32 int main() { return get_one().member; } in main()
/external/mesa3d/src/util/format/
Du_format_pack.py272 def get_one(type): function
382 src_one = get_one(src_channel)
383 dst_one = get_one(dst_channel)
401 one = get_one(src_channel)
425 dst_one = get_one(dst_channel)
509 value = get_one(dst_channel)
536 value = get_one(dst_channel)
/external/python/pybind11/tests/
Dtest_copy_move.py8 m.lacking_copy_ctor.get_one()
14 m.lacking_move_ctor.get_one()
Dtest_copy_move.cpp17 static const derived& get_one() { return instance_; } in get_one() function
106 .def_static("get_one", &lacking_copy_ctor::get_one, in PYBIND11_NAMESPACE_END()
110 .def_static("get_one", &lacking_move_ctor::get_one, in PYBIND11_NAMESPACE_END()
/external/tensorflow/tensorflow/python/autograph/converters/
Dcall_trees_test.py89 def get_one(): function
93 return get_one().__add__(20)
/external/rust/crates/async-trait/tests/
Dtest.rs490 async fn get_one() -> u8 { in get_one() method