Home
last modified time | relevance | path

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

/external/libtextclassifier/common/
Dtask-context.cc49 for (int i = 0; i < spec_.input_size(); ++i) { in GetInput()
50 if (spec_.input(i).name() == name) return spec_.mutable_input(i); in GetInput()
54 TaskInput *input = spec_.add_input(); in GetInput()
85 for (int i = 0; i < spec_.parameter_size(); ++i) { in SetParameter()
86 if (spec_.parameter(i).name() == name) { in SetParameter()
87 spec_.mutable_parameter(i)->set_value(value); in SetParameter()
93 TaskSpec::Parameter *param = spec_.add_parameter(); in SetParameter()
100 for (int i = 0; i < spec_.parameter_size(); ++i) { in GetParameter()
101 if (spec_.parameter(i).name() == name) return spec_.parameter(i).value(); in GetParameter()
131 for (int i = 0; i < spec_.parameter_size(); ++i) { in Get()
[all …]
Dtask-context.h34 const TaskSpec &spec() const { return spec_; } in spec()
35 TaskSpec *mutable_spec() { return &spec_; } in mutable_spec()
77 TaskSpec spec_;
/external/v8/tools/clang/blink_gc_plugin/
DRecordInfo.h42 : spec_(spec), info_(info), status_(status) {} in BasePoint()
44 const clang::CXXBaseSpecifier& spec() { return spec_; } in spec()
48 const clang::CXXBaseSpecifier& spec_;
/external/fmtlib/fmt/
Dformat.h1929 FormatSpec &spec_;
1934 spec_.flags_ = HASH_FLAG;
1935 spec_.type_ = 'x';
1936 writer_.write_int(reinterpret_cast<uintptr_t>(p), spec_);
1941 FormatSpec &spec() { return spec_; }
1946 writer_.write_str(str, spec_);
1951 writer_.write_str(str, spec_);
1956 : writer_(w), spec_(s) {}
1959 void visit_any_int(T value) { writer_.write_int(value, spec_); }
1962 void visit_any_double(T value) { writer_.write_double(value, spec_); }
[all …]
Dprintf.h148 FormatSpec &spec_;
153 explicit WidthHandler(FormatSpec &spec) : spec_(spec) {}
164 spec_.align_ = ALIGN_LEFT;
/external/v8/src/ast/
Dast.h162 explicit AstProperties(Zone* zone) : node_count_(0), spec_(zone) {} in AstProperties()
169 const FeedbackVectorSpec* get_spec() const { return &spec_; } in get_spec()
170 FeedbackVectorSpec* get_spec() { return &spec_; } in get_spec()
175 FeedbackVectorSpec spec_; variable