Home
last modified time | relevance | path

Searched refs:t_field (Results 1 – 25 of 606) sorted by relevance

12345678910>>...25

/dports/databases/mantis/mantisbt-2.25.2/plugins/Taskodrome/pages/
H A Dconfig_page.php37 <?php $t_field = 'status_board_order'; ?> variable
40 <?php echo plugin_lang_get( $t_field . '_label' )?>
51 <input name="<?php echo $t_field; ?>" size="75" type="text" value="<?php
64 <?php $t_field = 'cooldown_period'; ?> variable
66 <?php echo plugin_lang_get( $t_field . '_label' ) ?>
73 <?php echo plugin_lang_get( $t_field . '_days' )?>:&nbsp
74 <input name="<?php echo $t_field . '_days'; ?>" size="5" value="<?php
78 <?php echo plugin_lang_get( $t_field . '_hours' )?>:&nbsp
88 <?php $t_field = 'hidden_users'; ?> variable
90 <?php echo plugin_lang_get( $t_field . '_label' ) ?>
[all …]
/dports/databases/mantis/mantisbt-2.25.2/core/classes/
H A DFilterConverter.class.php262 $t_field = 'custom_fields';
306 $t_field = 'project';
326 unset( $p_criteria[$t_field] );
338 $t_field = 'category';
355 unset( $p_criteria[$t_field] );
441 $t_field = 'tag_string';
471 $t_field = 'profile';
487 unset( $p_criteria[$t_field] );
499 $t_field = 'match_type';
578 $t_field = 'hide_status';
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/ast/
H A Dt_structured.h44 bool try_append_field(std::unique_ptr<t_field>&& elem);
46 node_list_view<t_field> fields() { return fields_; } in fields()
56 const t_field* get_field_by_id(int32_t id) const;
63 std::vector<const t_field*> fields_id_order_;
64 name_index<t_field> fields_by_name_;
85 void append(std::unique_ptr<t_field> elem);
94 const t_field* get_field(size_t index) const { in get_field()
100 const std::vector<t_field*>& get_sorted_members() const { in get_sorted_members()
112 bool validate_field(t_field* field) { in validate_field()
117 std::vector<t_field*> fields_raw_;
[all …]
H A Dt_field.h49 class t_field final : public t_named {
64 t_field(
74 t_field(t_field&&) = delete;
75 t_field& operator=(t_field&&) = delete;
94 std::unique_ptr<t_field> clone_DO_NOT_USE() const { in clone_DO_NOT_USE()
95 auto clone = std::make_unique<t_field>(type_, name_, id_); in clone_DO_NOT_USE()
123 t_field(t_type_ref type, std::string name) in t_field() function
124 : t_field(type, std::move(name), 0, false) {} in t_field()
125 t_field(const t_type* type, std::string name, t_field_id key = 0)
126 : t_field(t_type_ref::from_req_ptr(type), std::move(name), key) {} in t_field() function
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/lib/cpp2/test/
H A Dutil_test.cc48 s.append(std::make_unique<t_field>(&t, "set_field", 1)); in TEST_F()
153 a.append(std::make_unique<t_field>(&b, "b", 1)); in TEST_F()
154 a.append(std::make_unique<t_field>(&i32, "c", 2)); in TEST_F()
155 b.append(std::make_unique<t_field>(&i32, "d", 1)); in TEST_F()
156 b.append(std::make_unique<t_field>(&e, "e", 2)); in TEST_F()
157 e.append(std::make_unique<t_field>(&i32, "f", 1)); in TEST_F()
201 auto f = t_field(no_unique, "f", 1); in TEST_F()
217 auto f = t_field(unique, "f", 1); in TEST_F()
224 auto r = t_field(type, "r", 1); in TEST_F()
229 auto u = t_field(type, "u", 1); in TEST_F()
[all …]
/dports/www/varnish6/varnish-cache-varnish-6.6.2/lib/libvcc/
H A Dvcc_backend.c135 const struct token *t_field) in vcc_Redef() argument
139 vcc_ErrWhere(tl, t_field); in vcc_Redef()
144 *t_did = t_field; in vcc_Redef()
155 const struct token *t_field; in vcc_ParseProbeSpec() local
193 vcc_IsField(tl, &t_field, fs); in vcc_ParseProbeSpec()
195 if (vcc_IdIs(t_field, "url")) { in vcc_ParseProbeSpec()
249 vcc_ErrToken(tl, t_field); in vcc_ParseProbeSpec()
250 vcc_ErrWhere(tl, t_field); in vcc_ParseProbeSpec()
335 const struct token *t_field; in vcc_ParseHostDef() local
402 vcc_IsField(tl, &t_field, fs); in vcc_ParseHostDef()
[all …]
H A Dvcc_backend_util.c93 struct token *t_field; in vcc_IsField() local
97 t_field = tl->t; in vcc_IsField()
98 *t = t_field; in vcc_IsField()
103 if (!vcc_IdIs(t_field, fs->name + 1)) in vcc_IsField()
106 fs->found = t_field; in vcc_IsField()
110 vcc_ErrToken(tl, t_field); in vcc_IsField()
112 vcc_ErrWhere(tl, t_field); in vcc_IsField()
118 vcc_ErrToken(tl, t_field); in vcc_IsField()
120 vcc_ErrWhere(tl, t_field); in vcc_IsField()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/lib/cpp2/
H A Dutil.h78 inline bool is_explicit_ref(const t_field* f) { in is_explicit_ref()
82 inline bool is_ref(const t_field* f) { in is_ref()
86 inline bool field_has_isset(const t_field* field) { in field_has_isset()
87 return field->get_req() != t_field::e_req::required && in field_has_isset()
91 inline bool is_lazy(const t_field* field) { in is_lazy()
97 inline bool is_lazy_ref(const t_field* field) { in is_lazy_ref()
156 inline bool is_unique_ref(const t_field* f) { in is_unique_ref()
175 bool is_mixin(const t_field& field);
182 bool has_ref_annotation(const t_field& f);
185 const t_field* mixin;
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/gen/cpp/
H A Dreference_type_test.cc29 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
34 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
40 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
46 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
52 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
58 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
64 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
70 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
76 t_field tfield(&t_base_type::t_string(), "my_string"); in TEST_F()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/thrift/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/devel/py-thrift/thrift-0.14.0/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/devel/thrift-cpp/thrift-0.14.0/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/devel/thrift-c_glib/thrift-0.14.0/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/devel/thrift/thrift-0.14.0/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/devel/node-thrift/thrift-0.14.0/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
141 return const_cast<t_field*>(const_cast<const t_struct&>(*this).get_field_by_name(field_name)); in get_field_by_name()
144 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/net/storj/storj-1.45.3/vendor/github.com/apache/thrift/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
150 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/www/fabio/fabio-1.5.14/vendor/github.com/apache/thrift/thrift-da1169d75b15/compiler/cpp/src/thrift/parse/
H A Dt_struct.h41 typedef std::vector<t_field*> members_type;
66 void validate_union_member(t_field* field) { in validate_union_member()
71 if (field->get_req() != t_field::T_OPTIONAL) { in validate_union_member()
73 if(field->get_req() != t_field::T_OPT_IN_REQ_OUT) { in validate_union_member()
79 field->set_req(t_field::T_OPTIONAL); in validate_union_member()
111 bool append(t_field* elem) { in append()
116 t_field::key_compare()); in append()
140 t_field* get_field_by_name(std::string field_name) { in get_field_by_name()
150 const t_field* get_field_by_name(std::string field_name) const { in get_field_by_name()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/thrift/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1095 t_field* member = *members_iter; in render_struct_default_trait_impl()
1459 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1491 t_field *tfield, in render_struct_field_sync_write()
1492 t_field::e_req req in render_struct_field_sync_write()
2395 t_field* tfield = (*field_iter); in struct_to_declaration()
2419 t_field* tfield = (*field_iter); in struct_to_invocation()
3166 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]
/dports/net/storj/storj-1.45.3/vendor/github.com/apache/thrift/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1092 t_field* member = *members_iter; in render_struct_default_trait_impl()
1456 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1484 t_field *tfield, in render_struct_field_sync_write()
1485 t_field::e_req req in render_struct_field_sync_write()
2393 t_field* tfield = (*field_iter); in struct_to_declaration()
2417 t_field* tfield = (*field_iter); in struct_to_invocation()
3164 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]
/dports/devel/py-thrift/thrift-0.14.0/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1095 t_field* member = *members_iter; in render_struct_default_trait_impl()
1459 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1491 t_field *tfield, in render_struct_field_sync_write()
1492 t_field::e_req req in render_struct_field_sync_write()
2395 t_field* tfield = (*field_iter); in struct_to_declaration()
2419 t_field* tfield = (*field_iter); in struct_to_invocation()
3166 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]
/dports/devel/thrift-c_glib/thrift-0.14.0/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1095 t_field* member = *members_iter; in render_struct_default_trait_impl()
1459 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1491 t_field *tfield, in render_struct_field_sync_write()
1492 t_field::e_req req in render_struct_field_sync_write()
2395 t_field* tfield = (*field_iter); in struct_to_declaration()
2419 t_field* tfield = (*field_iter); in struct_to_invocation()
3166 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]
/dports/devel/thrift-cpp/thrift-0.14.0/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1095 t_field* member = *members_iter; in render_struct_default_trait_impl()
1459 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1491 t_field *tfield, in render_struct_field_sync_write()
1492 t_field::e_req req in render_struct_field_sync_write()
2395 t_field* tfield = (*field_iter); in struct_to_declaration()
2419 t_field* tfield = (*field_iter); in struct_to_invocation()
3166 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]
/dports/devel/thrift/thrift-0.14.0/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1095 t_field* member = *members_iter; in render_struct_default_trait_impl()
1459 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1491 t_field *tfield, in render_struct_field_sync_write()
1492 t_field::e_req req in render_struct_field_sync_write()
2395 t_field* tfield = (*field_iter); in struct_to_declaration()
2419 t_field* tfield = (*field_iter); in struct_to_invocation()
3166 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/compiler/cpp/src/thrift/generate/
H A Dt_rs_generator.cc214 t_field *tfield,
215 t_field::e_req req);
433 t_field::e_req actual_field_req(t_field* tfield, t_rs_generator::e_struct_type struct_type);
1093 t_field* member = *members_iter; in render_struct_default_trait_impl()
1457 t_field::e_req member_req = t_field::T_REQUIRED; in render_union_sync_write()
1485 t_field *tfield, in render_struct_field_sync_write()
1486 t_field::e_req req in render_struct_field_sync_write()
2394 t_field* tfield = (*field_iter); in struct_to_declaration()
2418 t_field* tfield = (*field_iter); in struct_to_invocation()
3165 return req == t_field::T_OPTIONAL || req == t_field::T_OPT_IN_REQ_OUT; in is_optional()
[all …]

12345678910>>...25