Home
last modified time | relevance | path

Searched refs:field (Results 1201 - 1225 of 1878) sorted by relevance

1...<<41424344454647484950>>...76

/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMessage.java60 * provided with keywords corresponding to field names.
93 throw runtime.newArgumentError("Expected Hash object as initializer value for map field '" + key.asJavaString() + "'."); in initialize()
100 throw runtime.newArgumentError("Expected array as initializer value for repeated field '" + key.asJavaString() + "'."); in initialize()
127 * Sets a field's value by field name. The provided field name should be a
140 * Accesses a field's value by field name. The provided field name should be a
155 * field'
[all...]
/third_party/rust/crates/libc/src/unix/redox/
H A Dmod.rs1109 .field("d_ino", &self.d_ino) in fmt()
1110 .field("d_off", &self.d_off) in fmt()
1111 .field("d_reclen", &self.d_reclen) in fmt()
1112 .field("d_type", &self.d_type) in fmt()
1113 // FIXME: .field("d_name", &self.d_name) in fmt()
1144 .field("sun_family", &self.sun_family) in fmt()
1145 // FIXME: .field("sun_path", &self.sun_path) in fmt()
1174 .field("ss_family", &self.ss_family) in fmt()
1175 .field("__ss_align", &self.__ss_align) in fmt()
1176 // FIXME: .field("__ss_paddin in fmt()
[all...]
/third_party/rust/crates/syn/src/
H A Dlit.rs571 .field("token", &format_args!("{}", self.repr.token)) in fmt()
590 .field("token", &format_args!("{}", self.repr.token)) in fmt()
609 .field("token", &format_args!("{}", self.repr.token)) in fmt()
628 .field("token", &format_args!("{}", self.repr.token)) in fmt()
647 .field("token", &format_args!("{}", self.repr.token)) in fmt()
666 .field("token", &format_args!("{}", self.repr.token)) in fmt()
685 .field("value", &self.value) in fmt()
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs116 // The order of the `ai_addr` field in this struct is crucial
776 .field("sun_len", &self.sun_len) in fmt()
777 .field("sun_family", &self.sun_family) in fmt()
778 // FIXME: .field("sun_path", &self.sun_path) in fmt()
825 // FIXME: .field("sysname", &self.sysname) in fmt()
826 // FIXME: .field("nodename", &self.nodename) in fmt()
827 // FIXME: .field("release", &self.release) in fmt()
828 // FIXME: .field("version", &self.version) in fmt()
829 // FIXME: .field("machine", &self.machine) in fmt()
861 .field("mq_maxms in fmt()
[all...]
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_gpuprops.c821 void *field = ((u8 *)props) + gpu_property_mapping[i].offset; in kbase_gpuprops_populate_user_buffer() local
847 WRITE_U8(*((u8 *)field)); in kbase_gpuprops_populate_user_buffer()
850 WRITE_U16(*((u16 *)field)); in kbase_gpuprops_populate_user_buffer()
853 WRITE_U32(*((u32 *)field)); in kbase_gpuprops_populate_user_buffer()
856 WRITE_U64(*((u64 *)field)); in kbase_gpuprops_populate_user_buffer()
/third_party/elfutils/libdw/
H A Ddwarf_getsrclines.c125 #define SET(field) \ in add_new_line()
127 new_line->line.field = state->field; \ in add_new_line()
128 if (unlikely (new_line->line.field != state->field)) \ in add_new_line()
776 address size field from the CU header. */ in read_srclines()
/third_party/ffmpeg/libavcodec/
H A Dqsv.c278 enum AVFieldOrder field = AV_FIELD_UNKNOWN; in ff_qsv_map_picstruct() local
281 field = AV_FIELD_PROGRESSIVE; in ff_qsv_map_picstruct()
284 field = AV_FIELD_TT; in ff_qsv_map_picstruct()
287 field = AV_FIELD_BB; in ff_qsv_map_picstruct()
291 return field; in ff_qsv_map_picstruct()
H A Dh265_metadata_bsf.c226 #define SET_OR_INFER(field, value, present_flag, infer) do { \ in h265_metadata_update_sps()
228 field = value; \ in h265_metadata_update_sps()
231 field = infer; \ in h265_metadata_update_sps()
/third_party/icu/icu4c/source/test/intltest/
H A Dunits_test.cpp398 * @param field is two pointers pointing at the start and end of the string.
401 StringPiece trimField(char *(&field)[2]) { in trimField() argument
402 const char *start = field[0]; in trimField()
404 if (start >= field[1]) { in trimField()
405 start = field[1]; in trimField()
407 const char *end = field[1]; in trimField()
431 * end of each field. End pointers are important because these are *not*
806 * Parse an expected output field from the test data file.
812 * @return true if the field was successfully parsed, false if parsing
840 // We are happy skipping one field pe in parseOutputField()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dunum.cpp207 fp.setField(pos->field); in unum_formatInt64()
240 fp.setField(pos->field); in unum_formatDouble()
299 fp.setField(pos->field); in unum_formatDecimal()
343 fp.setField(pos->field); in unum_formatDoubleCurrency()
964 fp.setField(pos->field); in unum_formatUFormattable()
/third_party/node/lib/internal/modules/esm/
H A Dresolve.js71 * Emits a deprecation warning for the use of a deprecated trailing slash pattern mapping in the "exports" field
83 `"exports" field module resolution of the package at ${pjsonPath}${
99 * @param {boolean} internal - Whether the module is in the "imports" or "exports" field.
111 }in the "${internal ? 'imports' : 'exports'}" field module resolution of the package at ${
120 * the package.json file does not define a "main" or "exports" field.
124 * @param {string} [main] - The "main" field from the package.json file.
134 `No "main" or "exports" field defined in the package.json for ${pkgPath
143 `Package ${pkgPath} has a "main" field set to "${main}", ` +
146 basePath}.\n Automatic extension resolution of the "main" field is ` +
166 * 1. let M = pkg_url + (json main field)
[all...]
/third_party/node/deps/v8/tools/
H A Dwindbg.js378 // the first field in all objects, including maps, is a map pointer, but for
393 // the first field in all objects must be a map pointer
519 let field = poim(cur);
520 if (is_likely_object(field)) {
521 if (seen.has(field)) {
523 `${" ".repeat(2 * depth + 2)}cycle: ${hex(cur)}->${hex(field)}`);
526 impl(field, depth + 1, depth_limit);
/third_party/node/deps/icu-small/source/i18n/
H A Dunum.cpp223 fp.setField(pos->field); in unum_formatInt64()
256 fp.setField(pos->field); in unum_formatDouble()
315 fp.setField(pos->field); in unum_formatDecimal()
359 fp.setField(pos->field); in unum_formatDoubleCurrency()
982 fp.setField(pos->field); in unum_formatUFormattable()
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mc.c168 struct ureg_dst ref, field; in create_ref_frag_shader() local
184 field = calc_line(r->pipe->screen, shader); in create_ref_frag_shader()
187 * ref = field.z ? tc[1] : tc[0] in create_ref_frag_shader()
189 * // Adjust tc acording to top/bottom field selection in create_ref_frag_shader()
199 ureg_negate(ureg_scalar(ureg_src(field), TGSI_SWIZZLE_Y)), in create_ref_frag_shader()
202 ureg_negate(ureg_scalar(ureg_src(field), TGSI_SWIZZLE_Y)), in create_ref_frag_shader()
222 ureg_release_temporary(shader, field); in create_ref_frag_shader()
334 * if (field == tc.w) in create_ycbcr_frag_shader()
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b32/arm/
H A Dmod.rs206 .field("uc_flags", &self.uc_link) in fmt()
207 .field("uc_link", &self.uc_link) in fmt()
208 .field("uc_stack", &self.uc_stack) in fmt()
209 .field("uc_mcontext", &self.uc_mcontext) in fmt()
210 .field("uc_sigmask", &self.uc_sigmask) in fmt()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dunum.cpp210 fp.setField(pos->field); in unum_formatInt64()
243 fp.setField(pos->field); in unum_formatDouble()
302 fp.setField(pos->field); in unum_formatDecimal()
346 fp.setField(pos->field); in unum_formatDoubleCurrency()
945 fp.setField(pos->field); in unum_formatUFormattable()
/third_party/protobuf/python/google/protobuf/
H A Ddescriptor.py327 for field in self.fields:
328 field.containing_type = self
397 # * If you specify a repeated field, you should not be allowed
408 """Descriptor for a single field in a .proto file.
411 name (str): Name of this field, exactly as it appears in .proto.
412 full_name (str): Name of this field, including containing scope. This is
415 field textually appears within its message in the .proto file.
416 number (int): Tag number declared for this field in the .proto file.
420 represent this field.
423 field i
[all...]
/third_party/rust/crates/env_logger/src/filter/
H A Dmod.rs271 .field("filter", &self.filter) in fmt()
272 .field("directives", &self.directives) in fmt()
280 f.debug_struct("Filter").field("built", &true).finish() in fmt()
283 .field("filter", &self.filter) in fmt()
284 .field("directives", &self.directives) in fmt()
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b32/x86/
H A Dmod.rs192 .field("uc_flags", &self.uc_flags) in fmt()
193 .field("uc_link", &self.uc_link) in fmt()
194 .field("uc_stack", &self.uc_stack) in fmt()
195 .field("uc_mcontext", &self.uc_mcontext) in fmt()
196 .field("uc_sigmask", &self.uc_sigmask) in fmt()
197 // Ignore __private field in fmt()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
H A Deap_fast_pac.c478 const char *field, const u8 *data, in eap_fast_write()
489 need = os_strlen(field) + len * 2 + 30; in eap_fast_write()
491 need += os_strlen(field) + len + 20; in eap_fast_write()
506 ret = os_snprintf(*pos, end - *pos, "%s=", field); in eap_fast_write()
517 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field); in eap_fast_write()
477 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) eap_fast_write() argument
H A Deap_teap_pac.c479 const char *field, const u8 *data, in eap_teap_write()
489 need = os_strlen(field) + len * 2 + 30; in eap_teap_write()
491 need += os_strlen(field) + len + 20; in eap_teap_write()
507 ret = os_snprintf(*pos, end - *pos, "%s=", field); in eap_teap_write()
518 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field); in eap_teap_write()
478 eap_teap_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) eap_teap_write() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
H A Deap_fast_pac.c478 const char *field, const u8 *data, in eap_fast_write()
489 need = os_strlen(field) + len * 2 + 30; in eap_fast_write()
491 need += os_strlen(field) + len + 20; in eap_fast_write()
506 ret = os_snprintf(*pos, end - *pos, "%s=", field); in eap_fast_write()
517 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field); in eap_fast_write()
477 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) eap_fast_write() argument
H A Deap_teap_pac.c479 const char *field, const u8 *data, in eap_teap_write()
489 need = os_strlen(field) + len * 2 + 30; in eap_teap_write()
491 need += os_strlen(field) + len + 20; in eap_teap_write()
507 ret = os_snprintf(*pos, end - *pos, "%s=", field); in eap_teap_write()
518 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field); in eap_teap_write()
478 eap_teap_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) eap_teap_write() argument
/base/security/crypto_framework/plugin/openssl_plugin/common/src/
H A Decc_openssl_common.c56 HcfECFieldFp *field = (HcfECFieldFp *)(ecParams->field); in NewGroupFromCurveGFp() local
62 if (BigIntegerToBigNum(&(field->p), &p) != HCF_SUCCESS || in NewGroupFromCurveGFp()
/third_party/mesa3d/src/broadcom/clif/
H A Dclif_dump.c102 #define out_uint(_clif, field) out(_clif, " /* %s = */ %u\n", \
103 #field, values-> field);

Completed in 40 milliseconds

1...<<41424344454647484950>>...76