Home
last modified time | relevance | path

Searched refs:param_ (Results 1 – 16 of 16) sorted by relevance

/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dinterface_macros.tmpl85 , {{param.kind|cpp_wrapper_param_type}} param_{{param.name}}
94 , param_{{param.name}}_(param_{{param.name}}.PassInterface())
96 , param_{{param.name}}_(std::move(param_{{param.name}}))
109 {{declare_params("param_", parameters)}}
119 , std::move(param_{{param.name}})
125 {{build_serialized_message(message_name, "param_%s", params_struct,
142 {{param.kind|get_name_for_kind}}Ptr(std::move(param_{{param.name}}_))
144 std::move(param_{{param.name}}_)
157 {{param.kind|get_name_for_kind}}Ptr(std::move(param_{{param.name}}_))
159 std::move(param_{{param.name}}_)
[all …]
Dinterface_definition.tmpl124 {{interface_macros.declare_sync_method_params("param_", method)}}) {
135 , std::move(param_{{param.name}})
141 message_name, "param_%s", params_struct, params_description, "kFlags",
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DEchoMessages.cs1002 param_ = other.param_ != null ? other.param_.Clone() : null; in EchoRequest()
1024 private global::Grpc.Testing.RequestParams param_; field in Grpc.Testing.EchoRequest
1027 get { return param_; }
1029 param_ = value;
1055 if (param_ != null) hash ^= Param.GetHashCode(); in GetHashCode()
1073 if (param_ != null) { in WriteTo()
1088 if (param_ != null) { in CalculateSize()
1105 if (other.param_ != null) { in MergeFrom()
1106 if (param_ == null) { in MergeFrom()
1107 param_ = new global::Grpc.Testing.RequestParams(); in MergeFrom()
[all …]
/external/webrtc/talk/media/base/
Dcodec.h48 param_(param) { in FeedbackParam()
52 param_(kParamValueEmpty) { in FeedbackParam()
57 const std::string& param() const { return param_; } in param()
61 std::string param_; // e.g. "", "rpsi", "fir" variable
/external/deqp/framework/opengl/
DgluStrUtil.hpp70 TextureParameterValueStr (deUint32 param_, int value_) : param(param_), value(value_) {} in TextureParameterValueStr() argument
DgluCallLogWrapper.cpp83 FboParamPtrFmt (deUint32 param_, const int* value_) : param(param_), value(value_) {} in FboParamPtrFmt() argument
/external/googletest/googletest/include/gtest/internal/
Dgtest-port.h1377 param_(param),
1397 func_(param_);
1402 const T param_; // User-supplied parameter to the thread function.
1575 param_(param) {
1579 func_(param_);
1584 const T param_;
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-port.h1735 param_(param),
1756 func_(param_);
1761 const T param_; // User-supplied parameter to the thread function.
1934 param_(param) {
1938 func_(param_);
1943 const T param_;
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1611 param_(param),
1632 func_(param_);
1637 const T param_; // User-supplied parameter to the thread function.
1810 param_(param) {
1814 func_(param_);
1819 const T param_;
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-port.h1602 param_(param),
1623 func_(param_);
1628 const T param_; // User-supplied parameter to the thread function.
1801 param_(param) {
1805 func_(param_);
1810 const T param_;
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-port.h1615 param_(param),
1636 func_(param_);
1641 const T param_; // User-supplied parameter to the thread function.
1814 param_(param) {
1818 func_(param_);
1823 const T param_;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1162 param_(param),
1183 func_(param_);
1188 const T param_; // User-supplied parameter to the thread function.
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1154 param_(param),
1175 func_(param_);
1180 const T param_; // User-supplied parameter to the thread function.
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
Dgtest-port.h1189 param_(param),
1210 func_(param_);
1215 const T param_; // User-supplied parameter to the thread function.
/external/epid-sdk/ext/gtest/
Dgtest.h2884 param_(param),
2905 func_(param_);
2910 const T param_; // User-supplied parameter to the thread function.
3087 param_(param) {
3091 func_(param_);
3096 const T param_;
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp193 CaseParameter (const char* case_, const string& param_) : name(case_), param(param_) {} in CaseParameter()