Home
last modified time | relevance | path

Searched refs:sub_name (Results 1 – 10 of 10) sorted by relevance

/external/grpc-grpc/examples/ruby/pubsub/
Dpubsub_demo.rb132 topic_name, sub_name = test_topic_name, test_sub_name
134 @sub.create_subscription(Subscription.new(name: sub_name,
142 batch = @sub.pull_batch(PullBatchRequest.new(subscription: sub_name,
146 @sub.acknowledge(AcknowledgeRequest.new(subscription: sub_name,
149 del_req = DeleteSubscriptionRequest.new(subscription: sub_name)
168 unless @args.sub_name.nil?
169 return "/subscriptions/#{@args.project_id}/#{@args.sub_name}"
/external/llvm-project/lldb/source/Interpreter/
DOptionValueProperties.cpp118 llvm::StringRef sub_name; in GetSubValue() local
123 sub_name = name.drop_front(key_len); in GetSubValue()
128 if (sub_name.empty() || !value_sp) in GetSubValue()
131 switch (sub_name[0]) { in GetSubValue()
135 value_sp->GetSubValue(exe_ctx, sub_name.drop_front(), will_modify, error); in GetSubValue()
137 if (Properties::IsSettingExperimental(sub_name.drop_front())) { in GetSubValue()
140 if (sub_name[experimental_len + 1] == '.') in GetSubValue()
142 exe_ctx, sub_name.drop_front(experimental_len + 2), will_modify, error); in GetSubValue()
153 return value_sp->GetSubValue(exe_ctx, sub_name, will_modify, error); in GetSubValue()
564 llvm::StringRef sub_name; in GetPropertyAtPath() local
[all …]
DOptionValueDictionary.cpp239 llvm::StringRef sub_name; in GetSubValue() local
240 std::tie(key, sub_name) = temp.split(']'); in GetSubValue()
258 if (sub_name.empty()) in GetSubValue()
260 return value_sp->GetSubValue(exe_ctx, sub_name, will_modify, error); in GetSubValue()
/external/llvm-project/polly/lib/External/isl/interface/
Dgenerator.cc185 const string &sub_name) in add_subclass() argument
189 classes[sub_name].name = name; in add_subclass()
190 classes[sub_name].superclass_name = super_name; in add_subclass()
191 classes[sub_name].subclass_name = sub_name; in add_subclass()
192 classes[sub_name].type = decl; in add_subclass()
193 classes[sub_name].fn_to_str = find_by_name(name + "_to_str", false); in add_subclass()
194 classes[sub_name].fn_copy = find_by_name(name + "_copy", true); in add_subclass()
195 classes[sub_name].fn_free = find_by_name(name + "_free", true); in add_subclass()
Dgenerator.h142 const string &sub_name);
/external/protobuf/python/google/protobuf/
Ddescriptor_pool.py435 top_name, _, sub_name = symbol.rpartition('.')
438 assert (sub_name in message.extensions_by_name or
439 sub_name in message.fields_by_name or
440 sub_name in message.enum_values_by_name)
/external/tensorflow/tensorflow/python/framework/
Dauto_control_deps_test.py195 def get_op(op_type, sub_name): argument
198 if op.type == op_type and sub_name in op.name
386 def get_op(op_type, sub_name): argument
389 if op.type == op_type and sub_name in op.name
/external/rust/crates/structopt-derive/src/
Dlib.rs681 let sub_name = attrs.cased_name(); in gen_from_subcommand() localVariable
697 (#sub_name, Some(#matches)) => { in gen_from_subcommand()
/external/rust/crates/bindgen/src/ir/
Dcontext.rs1685 let sub_name = Some(template_decl_cursor.spelling()); in instantiate_template() localVariable
1695 sub_name, in instantiate_template()
/external/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp2013 char *sub_name; in do_hir() local
2014sub_name = ralloc_asprintf(ctx, "%s_%s", _mesa_shader_stage_to_subroutine_prefix(state->stage), th… in do_hir()
2015 var = state->symbols->get_variable(sub_name); in do_hir()
2016 ralloc_free(sub_name); in do_hir()