HomeSort by relevance Sort by last modified time
    Searched full:arg_name (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /test/vts/compilation_tools/vtsc/test/golden/PROFILER/
types.profiler.cpp 14 void profile____android__hardware__nfc__V1_0__NfcEvent(VariableSpecificationMessage* arg_name,
16 arg_name->set_type(TYPE_ENUM);
17 arg_name->mutable_scalar_value()->set_uint32_t(static_cast<uint32_t>(arg_val_name));
18 arg_name->set_scalar_type("uint32_t");
21 void profile____android__hardware__nfc__V1_0__NfcStatus(VariableSpecificationMessage* arg_name,
23 arg_name->set_type(TYPE_ENUM);
24 arg_name->mutable_scalar_value()->set_uint32_t(static_cast<uint32_t>(arg_val_name));
25 arg_name->set_scalar_type("uint32_t");
types.vts.h 19 void profile____android__hardware__nfc__V1_0__NfcEvent(VariableSpecificationMessage* arg_name,
21 void profile____android__hardware__nfc__V1_0__NfcStatus(VariableSpecificationMessage* arg_name,
TestMsgQ.vts.h 20 void profile____android__hardware__tests__msgq__V1_0__ITestMsgQ__EventFlagBits(VariableSpecificationMessage* arg_name,
Bar.vts.h 32 void profile____android__hardware__tests__bar__V1_0__IBar__SomethingRelated(VariableSpecificationMessage* arg_name,
  /test/vts/compilation_tools/vtsc/code_gen/profiler/
HalHidlProfilerCodeGen.h 33 const VariableSpecificationMessage& val, const std::string& arg_name,
37 const VariableSpecificationMessage& val, const std::string& arg_name,
41 const VariableSpecificationMessage& val, const std::string& arg_name,
45 const VariableSpecificationMessage& val, const std::string& arg_name,
49 const VariableSpecificationMessage& val, const std::string& arg_name,
53 const VariableSpecificationMessage& val, const std::string& arg_name,
57 const VariableSpecificationMessage& val, const std::string& arg_name,
61 const VariableSpecificationMessage& val, const std::string& arg_name,
65 const VariableSpecificationMessage& val, const std::string& arg_name,
69 const VariableSpecificationMessage& val, const std::string& arg_name,
    [all...]
ProfilerCodeGenBase.cpp 144 const VariableSpecificationMessage& val, const std::string& arg_name,
149 GenerateProfilerForScalarVariable(out, val, arg_name, arg_value);
154 GenerateProfilerForStringVariable(out, val, arg_name, arg_value);
159 GenerateProfilerForEnumVariable(out, val, arg_name, arg_value);
164 GenerateProfilerForVectorVariable(out, val, arg_name, arg_value);
169 GenerateProfilerForArrayVariable(out, val, arg_name, arg_value);
174 GenerateProfilerForStructVariable(out, val, arg_name, arg_value);
178 GenerateProfilerForUnionVariable(out, val, arg_name, arg_value);
183 GenerateProfilerForHidlCallbackVariable(out, val, arg_name, arg_value);
188 GenerateProfilerForHidlInterfaceVariable(out, val, arg_name, arg_value)
    [all...]
HalHidlProfilerCodeGen.cpp 27 const std::string& arg_name, const std::string& arg_value) {
28 out << arg_name << "->set_type(TYPE_SCALAR);\n"; local
29 out << arg_name << "->mutable_scalar_value()->set_" << val.scalar_type()
35 const std::string& arg_name, const std::string& arg_value) {
36 out << arg_name << "->set_type(TYPE_STRING);\n"; local
37 out << arg_name << "->mutable_string_value()->set_message"
39 out << arg_name << "->mutable_string_value()->set_length"
45 const std::string& arg_name, const std::string& arg_value) {
46 out << arg_name << "->set_type(TYPE_ENUM);\n"; local
52 out << "profile__" << predefined_type << "(" << arg_name << ", "
65 out << arg_name << "->set_type(TYPE_VECTOR);\\n"; local
74 << " __attribute__((__unused__)) = " << arg_name local
86 out << arg_name << "->set_type(TYPE_ARRAY);\\n"; local
95 << " __attribute__((__unused__)) = " << arg_name local
106 out << arg_name << "->set_type(TYPE_STRUCT);\\n"; local
117 << " __attribute__((__unused__)) = " << arg_name local
128 out << arg_name << "->set_type(TYPE_UNION);\\n"; local
138 out << "auto *" << union_field_name << " = " << arg_name local
149 out << arg_name << "->set_type(TYPE_HIDL_CALLBACK);\\n"; local
157 out << arg_name << "->set_type(TYPE_HIDL_INTERFACE);\\n"; local
165 out << arg_name << "->set_type(TYPE_MASK);\\n"; local
174 out << arg_name << "->set_type(TYPE_HANDLE);\\n"; local
195 out << "auto* fd_val_i = " << arg_name local
260 out << arg_name << "->set_type(TYPE_HIDL_MEMORY);\\n"; local
269 out << arg_name << "->set_type(TYPE_POINTER);\\n"; local
276 out << arg_name << "->set_type(TYPE_FMQ_SYNC);\\n"; local
288 out << "auto *" << fmq_item_name << " = " << arg_name local
304 out << arg_name << "->set_type(TYPE_FMQ_UNSYNC);\\n"; local
316 out << "auto *" << fmq_item_name << " = " << arg_name local
358 std::string arg_name = "arg_" + std::to_string(i); local
360 out << "auto *" << arg_name local
    [all...]
ProfilerCodeGenBase.h 59 const VariableSpecificationMessage& val, const std::string& arg_name,
64 const VariableSpecificationMessage& val, const std::string& arg_name,
69 const VariableSpecificationMessage& val, const std::string& arg_name,
74 const VariableSpecificationMessage& val, const std::string& arg_name,
79 const VariableSpecificationMessage& val, const std::string& arg_name,
84 const VariableSpecificationMessage& val, const std::string& arg_name,
89 const VariableSpecificationMessage& val, const std::string& arg_name,
94 const VariableSpecificationMessage& val, const std::string& arg_name,
99 const VariableSpecificationMessage& val, const std::string& arg_name,
105 const std::string& arg_name, const std::string& arg_value) = 0
    [all...]
  /external/trappy/trappy/plotter/
__init__.py 30 def register_forwarding_arg(arg_name):
34 :param arg_name: The arg to register
35 :type arg_name: str
37 if arg_name not in AttrConf.ARGS_TO_FORWARD:
38 AttrConf.ARGS_TO_FORWARD.append(arg_name)
40 def unregister_forwarding_arg(arg_name):
41 """Unregisters arg_name from being passed to
44 :param arg_name: The arg to register
45 :type arg_name: str
48 AttrConf.ARGS_TO_FORWARD.remove(arg_name)
    [all...]
  /external/tensorflow/tensorflow/python/eager/
execute.py 89 def make_float(v, arg_name):
92 (arg_name, repr(v)))
96 def make_int(v, arg_name):
99 (arg_name, repr(v)))
104 (arg_name, repr(v)))
107 def make_str(v, arg_name):
110 (arg_name, repr(v)))
114 def make_bool(v, arg_name):
117 (arg_name, repr(v)))
121 def make_type(v, arg_name)
    [all...]
  /external/swiftshader/third_party/LLVM/cmake/modules/
LLVMParseArguments.cmake 20 #that occur after the given arg_name is encountered up to the next arg_name or
23 #the list of all arguments up to the first arg_name encountered.
53 FOREACH(arg_name ${arg_names})
54 SET(${prefix}_${arg_name})
55 ENDFOREACH(arg_name)
  /external/tensorflow/tensorflow/python/util/
deprecation.py 312 """Returns a dict mapping arg_name to DeprecatedArgSpec w/o position."""
333 names_to_ok_vals: dict from string arg_name to a list of values,
338 Dictionary from arg_name to DeprecatedArgSpec.
343 for arg_name, spec in iter(names_to_ok_vals.items()):
344 if arg_name in arg_name_to_pos:
345 pos = arg_name_to_pos[arg_name]
346 deprecated_positional_args[arg_name] = DeprecatedArgSpec(
365 missing_args = [arg_name for arg_name in deprecated_arg_names
366 if arg_name not in known_args
    [all...]
  /external/libmojo/base/android/
trace_event_binding.cc 39 const char* arg_name() { return has_arg_ ? "arg" : nullptr; } function in class:base::android::__anon25113::TraceEventDataConverter
91 converter.arg_name(), converter.arg());
105 converter.arg_name(), converter.arg());
118 converter.arg_name(), converter.arg());
  /external/tensorflow/tensorflow/tools/api/golden/
tensorflow.train.-scaffold.pbtxt 47 argspec: "args=[\'arg_name\', \'collection_key\', \'default_constructor\'], varargs=None, keywords=None, defaults=None"
  /external/libchrome/base/test/
trace_event_analyzer.h 276 static Query EventHasStringArg(const std::string& arg_name) {
277 return Query(EVENT_HAS_STRING_ARG, arg_name);
282 static Query EventHasNumberArg(const std::string& arg_name) {
283 return Query(EVENT_HAS_NUMBER_ARG, arg_name);
287 static Query EventArg(const std::string& arg_name) {
288 return Query(EVENT_ARG, arg_name);
343 static Query OtherHasStringArg(const std::string& arg_name) {
344 return Query(OTHER_HAS_STRING_ARG, arg_name);
349 static Query OtherHasNumberArg(const std::string& arg_name) {
350 return Query(OTHER_HAS_NUMBER_ARG, arg_name);
    [all...]
  /external/tensorflow/tensorflow/core/framework/
kernel_def_builder.cc 56 KernelDefBuilder& KernelDefBuilder::HostMemory(const char* arg_name) {
57 kernel_def_->add_host_memory_arg(arg_name);
  /test/vts/compilation_tools/vtsc/code_gen/driver/
HalHidlCodeGen.cpp 807 const VariableSpecificationMessage& val, const string& arg_name,
812 out << arg_name << " = " << arg_value_name << ".scalar_value()."
818 out << arg_name << " = ::android::hardware::hidl_string("
827 out << arg_name << " = " << func_name << "(" << arg_value_name
830 out << arg_name << " = (" << val.name() << ")" << arg_value_name << "."
838 out << arg_name << " = " << arg_value_name << ".scalar_value()."
844 out << arg_name << ".resize(" << arg_value_name
846 std::string index_name = GetVarString(arg_name) + "_index";
852 out, val.vector_value(0), arg_name + "[" + index_name + "]",
860 std::string index_name = GetVarString(arg_name) + "_index"
877 out << func_name << "(" << arg_value_name << ", &(" << arg_name local
898 out << func_name << "(" << arg_value_name << ", &(" << arg_name local
1030 out << arg_name << " = handle;\\n"; local
1034 out << arg_name << " = nullptr;\\n"; local
1079 out << arg_name << " = ::android::hardware::hidl_memory();\\n"; local
1083 out << arg_name << " = memory;\\n"; local
    [all...]
  /external/boringssl/src/tool/
args.cc 81 bool GetUnsigned(unsigned *out, const std::string &arg_name,
84 const auto &it = args.find(arg_name);
internal.h 72 bool GetUnsigned(unsigned *out, const std::string &arg_name,
  /external/tensorflow/tensorflow/contrib/py2tf/pyct/static_analysis/
type_info.py 118 def _process_function_arg(self, arg_name):
119 str_name = str(arg_name)
123 type_holder = arg_name.ast()
127 self.scope.setval(arg_name, type_holder)
  /external/pdfium/testing/tools/
common.py 135 def GetBooleanGnArg(arg_name, build_dir, verbose=False):
140 ['gn', 'args', '.', '--list=%s' % arg_name, '--short'])
142 arg_match_output = re.search('%s = (.*)' % arg_name, gn_args_output).group(1)
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_context.c 1108 char arg_name[64]; local
    [all...]
  /external/tensorflow/tensorflow/python/framework/
op_def_library.py 140 def _MakeFloat(v, arg_name):
143 (arg_name, repr(v)))
147 def _MakeInt(v, arg_name):
150 (arg_name, repr(v)))
155 (arg_name, repr(v)))
158 def _MakeStr(v, arg_name):
161 (arg_name, repr(v)))
165 def _MakeBool(v, arg_name):
168 (arg_name, repr(v)))
183 def _MakeShape(v, arg_name)
    [all...]
  /external/toolchain-utils/crosperf/
download_images_buildid_test.py 57 def assertIsNotNone(self, arg, arg_name):
60 self.assert_failure('%s is not None' % arg_name)
  /external/libchrome/base/trace_event/
trace_event_impl.h 33 typedef base::Callback<bool(const char* arg_name)> ArgumentNameFilterPredicate;

Completed in 773 milliseconds

1 2 3 4