Home
last modified time | relevance | path

Searched refs:function_ (Results 1 – 25 of 165) sorted by relevance

1234567

/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dir_loader.cpp136 if (function_ != nullptr) { in AddInstruction()
140 function_ = MakeUnique<Function>(std::move(spv_inst)); in AddInstruction()
142 if (function_ == nullptr) { in AddInstruction()
151 function_->SetFunctionEnd(std::move(spv_inst)); in AddInstruction()
152 module_->AddFunction(std::move(function_)); in AddInstruction()
153 function_ = nullptr; in AddInstruction()
155 if (function_ == nullptr) { in AddInstruction()
165 if (function_ == nullptr) { in AddInstruction()
176 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
182 if (function_ == nullptr) { // Outside function definition in AddInstruction()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dir_loader.cpp136 if (function_ != nullptr) { in AddInstruction()
140 function_ = MakeUnique<Function>(std::move(spv_inst)); in AddInstruction()
142 if (function_ == nullptr) { in AddInstruction()
151 function_->SetFunctionEnd(std::move(spv_inst)); in AddInstruction()
152 module_->AddFunction(std::move(function_)); in AddInstruction()
153 function_ = nullptr; in AddInstruction()
155 if (function_ == nullptr) { in AddInstruction()
165 if (function_ == nullptr) { in AddInstruction()
176 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
182 if (function_ == nullptr) { // Outside function definition in AddInstruction()
[all …]
/external/angle/third_party/spirv-tools/src/source/opt/
Dir_loader.cpp136 if (function_ != nullptr) { in AddInstruction()
140 function_ = MakeUnique<Function>(std::move(spv_inst)); in AddInstruction()
142 if (function_ == nullptr) { in AddInstruction()
151 function_->SetFunctionEnd(std::move(spv_inst)); in AddInstruction()
152 module_->AddFunction(std::move(function_)); in AddInstruction()
153 function_ = nullptr; in AddInstruction()
155 if (function_ == nullptr) { in AddInstruction()
165 if (function_ == nullptr) { in AddInstruction()
176 function_->AddBasicBlock(std::move(block_)); in AddInstruction()
182 if (function_ == nullptr) { // Outside function definition in AddInstruction()
[all …]
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/
Dexecutor_function.hpp84 : function_(BOOST_ASIO_MOVE_CAST(F)(f)), in impl()
90 Function function_; member
110 Function function(BOOST_ASIO_MOVE_CAST(Function)(i->function_)); in complete()
152 : function_(f)
157 F function_;
164 static_cast<impl<F>*>(i)->function_();
179 function_(&f) in executor_function_view()
185 complete_(function_); in operator ()()
197 void* function_; member in boost::asio::detail::executor_function_view
/external/pytorch/torch/csrc/jit/api/
Dmethod.h48 return toGraphFunction(*function_).graph(); in graph()
52 return function_->name(); in name()
56 return function_->num_inputs(); in num_inputs()
60 return toGraphFunction(*function_).get_executor(); in get_executor()
64 return *function_; in function()
75 Function* function_; member
/external/pytorch/torch/csrc/api/include/torch/data/transforms/
Dlambda.h23 : function_(std::move(function)) {} in BatchLambda()
27 return function_(std::move(input_batch)); in apply_batch()
31 FunctionType function_;
43 explicit Lambda(FunctionType function) : function_(std::move(function)) {} in Lambda()
47 return function_(std::move(input)); in apply()
51 FunctionType function_;
/external/cronet/stable/third_party/protobuf/src/google/protobuf/stubs/
Dcallback.h127 : function_(function), self_deleting_(self_deleting) {} in FunctionClosure0()
132 function_(); in Run()
137 FunctionType function_;
169 : function_(function), self_deleting_(self_deleting), in FunctionClosure1()
175 function_(arg1_); in Run()
180 FunctionType function_;
216 : function_(function), self_deleting_(self_deleting), in FunctionClosure2()
222 function_(arg1_, arg2_); in Run()
227 FunctionType function_;
264 : function_(function), self_deleting_(self_deleting) {} in FunctionResultCallback_0_0()
[all …]
/external/cronet/tot/third_party/protobuf/src/google/protobuf/stubs/
Dcallback.h127 : function_(function), self_deleting_(self_deleting) {} in FunctionClosure0()
132 function_(); in Run()
137 FunctionType function_;
169 : function_(function), self_deleting_(self_deleting), in FunctionClosure1()
175 function_(arg1_); in Run()
180 FunctionType function_;
216 : function_(function), self_deleting_(self_deleting), in FunctionClosure2()
222 function_(arg1_, arg2_); in Run()
227 FunctionType function_;
264 : function_(function), self_deleting_(self_deleting) {} in FunctionResultCallback_0_0()
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dcallback.h127 : function_(function), self_deleting_(self_deleting) {} in FunctionClosure0()
132 function_(); in Run()
137 FunctionType function_;
169 : function_(function), self_deleting_(self_deleting), in FunctionClosure1()
175 function_(arg1_); in Run()
180 FunctionType function_;
216 : function_(function), self_deleting_(self_deleting), in FunctionClosure2()
222 function_(arg1_, arg2_); in Run()
227 FunctionType function_;
264 : function_(function), self_deleting_(self_deleting) {} in FunctionResultCallback_0_0()
[all …]
/external/google-cloud-java/java-service-control/proto-google-cloud-service-control-v1/src/main/java/com/google/api/servicecontrol/v1/
DLogEntrySourceLocation.java43 function_ = ""; in LogEntrySourceLocation()
147 private volatile java.lang.Object function_ = ""; field in LogEntrySourceLocation
166 java.lang.Object ref = function_; in getFunction()
172 function_ = s; in getFunction()
194 java.lang.Object ref = function_; in getFunctionBytes()
198 function_ = b; in getFunctionBytes()
225 if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(function_)) { in writeTo()
226 com.google.protobuf.GeneratedMessageV3.writeString(output, 3, function_); in writeTo()
243 if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(function_)) { in getSerializedSize()
244 size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, function_); in getSerializedSize()
[all …]
/external/pytorch/torch/csrc/jit/mobile/
Dmethod.h21 return function_->name(); in name()
25 return function_->get_debug_handle(pc); in get_debug_handle()
29 return *function_; in function()
38 Function* function_; member
/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
DNetworkEndpointGroupCloudFunction.java42 function_ = ""; in NetworkEndpointGroupCloudFunction()
76 private volatile java.lang.Object function_ = ""; field in NetworkEndpointGroupCloudFunction
105 java.lang.Object ref = function_; in getFunction()
111 function_ = s; in getFunction()
128 java.lang.Object ref = function_; in getFunctionBytes()
132 function_ = b; in getFunctionBytes()
223 com.google.protobuf.GeneratedMessageV3.writeString(output, 307196888, function_); in writeTo()
238 size += com.google.protobuf.GeneratedMessageV3.computeStringSize(307196888, function_); in getSerializedSize()
423 function_ = ""; in clear()
465 result.function_ = function_; in buildPartial0()
[all …]
/external/google-cloud-java/java-functions/proto-google-cloud-functions-v2/src/main/java/com/google/cloud/functions/v2/
DUpdateFunctionRequest.java69 private com.google.cloud.functions.v2.Function function_; field in UpdateFunctionRequest
85 return function_ != null; in hasFunction()
102 return function_ == null in getFunction()
104 : function_; in getFunction()
119 return function_ == null in getFunctionOrBuilder()
121 : function_; in getFunctionOrBuilder()
190 if (function_ != null) { in writeTo()
205 if (function_ != null) { in getSerializedSize()
393 function_ = null; in clear()
440 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
DCreateFunctionRequest.java129 private com.google.cloud.functions.v2.Function function_; field in CreateFunctionRequest
145 return function_ != null; in hasFunction()
162 return function_ == null in getFunction()
164 : function_; in getFunction()
179 return function_ == null in getFunctionOrBuilder()
181 : function_; in getFunctionOrBuilder()
258 if (function_ != null) { in writeTo()
276 if (function_ != null) { in getSerializedSize()
463 function_ = null; in clear()
509 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
/external/google-cloud-java/java-functions/proto-google-cloud-functions-v1/src/main/java/com/google/cloud/functions/v1/
DCreateFunctionRequest.java128 private com.google.cloud.functions.v1.CloudFunction function_; field in CreateFunctionRequest
144 return function_ != null; in hasFunction()
161 return function_ == null in getFunction()
163 : function_; in getFunction()
178 return function_ == null in getFunctionOrBuilder()
180 : function_; in getFunctionOrBuilder()
200 if (function_ != null) { in writeTo()
215 if (function_ != null) { in getSerializedSize()
396 function_ = null; in clear()
441 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
DUpdateFunctionRequest.java69 private com.google.cloud.functions.v1.CloudFunction function_; field in UpdateFunctionRequest
85 return function_ != null; in hasFunction()
102 return function_ == null in getFunction()
104 : function_; in getFunction()
119 return function_ == null in getFunctionOrBuilder()
121 : function_; in getFunctionOrBuilder()
184 if (function_ != null) { in writeTo()
199 if (function_ != null) { in getSerializedSize()
387 function_ = null; in clear()
434 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
/external/google-cloud-java/java-functions/proto-google-cloud-functions-v2beta/src/main/java/com/google/cloud/functions/v2beta/
DUpdateFunctionRequest.java69 private com.google.cloud.functions.v2beta.Function function_; field in UpdateFunctionRequest
85 return function_ != null; in hasFunction()
102 return function_ == null in getFunction()
104 : function_; in getFunction()
119 return function_ == null in getFunctionOrBuilder()
121 : function_; in getFunctionOrBuilder()
190 if (function_ != null) { in writeTo()
205 if (function_ != null) { in getSerializedSize()
394 function_ = null; in clear()
441 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
DCreateFunctionRequest.java129 private com.google.cloud.functions.v2beta.Function function_; field in CreateFunctionRequest
145 return function_ != null; in hasFunction()
162 return function_ == null in getFunction()
164 : function_; in getFunction()
179 return function_ == null in getFunctionOrBuilder()
181 : function_; in getFunctionOrBuilder()
258 if (function_ != null) { in writeTo()
276 if (function_ != null) { in getSerializedSize()
464 function_ = null; in clear()
510 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
/external/google-cloud-java/java-functions/proto-google-cloud-functions-v2alpha/src/main/java/com/google/cloud/functions/v2alpha/
DUpdateFunctionRequest.java69 private com.google.cloud.functions.v2alpha.Function function_; field in UpdateFunctionRequest
85 return function_ != null; in hasFunction()
102 return function_ == null in getFunction()
104 : function_; in getFunction()
119 return function_ == null in getFunctionOrBuilder()
121 : function_; in getFunctionOrBuilder()
190 if (function_ != null) { in writeTo()
205 if (function_ != null) { in getSerializedSize()
394 function_ = null; in clear()
441 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
DCreateFunctionRequest.java129 private com.google.cloud.functions.v2alpha.Function function_; field in CreateFunctionRequest
145 return function_ != null; in hasFunction()
162 return function_ == null in getFunction()
164 : function_; in getFunction()
179 return function_ == null in getFunctionOrBuilder()
181 : function_; in getFunctionOrBuilder()
258 if (function_ != null) { in writeTo()
276 if (function_ != null) { in getSerializedSize()
464 function_ = null; in clear()
510 result.function_ = functionBuilder_ == null ? function_ : functionBuilder_.build(); in buildPartial0()
[all …]
/external/angle/third_party/spirv-tools/src/source/reduce/
Dmerge_blocks_reduction_opportunity.cpp28 function_ = function; in MergeBlocksReductionOpportunity()
66 for (auto bi = function_->begin(); bi != function_->end(); ++bi) { in Apply()
68 opt::blockmergeutil::MergeWithSuccessor(context_, function_, bi); in Apply()
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dmerge_blocks_reduction_opportunity.cpp28 function_ = function; in MergeBlocksReductionOpportunity()
66 for (auto bi = function_->begin(); bi != function_->end(); ++bi) { in Apply()
68 opt::blockmergeutil::MergeWithSuccessor(context_, function_, bi); in Apply()
/external/pigweed/pw_rpc/raw/
Dmethod.cc29 .function_.asynchronous_unary( in AsynchronousUnaryInvoker()
38 .function_.server_streaming( in ServerStreamingInvoker()
47 .function_.stream_request(context.service(), reader); in ClientStreamingInvoker()
55 .function_.stream_request(context.service(), reader_writer); in BidirectionalStreamingInvoker()
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dmerge_blocks_reduction_opportunity.cpp28 function_ = function; in MergeBlocksReductionOpportunity()
66 for (auto bi = function_->begin(); bi != function_->end(); ++bi) { in Apply()
68 opt::blockmergeutil::MergeWithSuccessor(context_, function_, bi); in Apply()
/external/sdv/vsomeip/third_party/boost/assert/include/boost/assert/
Dsource_location.hpp23 char const * function_; member
29 …BOOST_CONSTEXPR source_location() BOOST_NOEXCEPT: file_( "(unknown)" ), function_( "(unknown)" ), … in source_location()
33 …unction, boost::uint_least32_t col = 0 ) BOOST_NOEXCEPT: file_( file ), function_( function ), lin… in source_location()
44 return function_; in function_name()

1234567