Home
last modified time | relevance | path

Searched refs:field (Results 1126 - 1150 of 1763) sorted by relevance

1...<<41424344454647484950>>...71

/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()
/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()
H A Dethpccal.h185 * Calculate the limit for a specified type of limit and field
188 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const override;
H A Dnumber_scientific.h33 bool containsField(Field field) const U_OVERRIDE;
H A Dbuddhcal.h139 * use the UCAL_EXTENDED_YEAR field or the UCAL_YEAR and supra-year fields (such
154 * @param field one of the field numbers
159 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const override;
/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()
H A Dcecal.h104 * Calculate the limit for a specified type of limit and field
107 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const override;
H A Dnumber_scientific.h33 bool containsField(Field field) const override;
/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
/third_party/gn/src/gn/
H A Drust_tool.h62 SubstitutionList* field,
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dtxt_db.h52 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *),
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DName.h43 explicit Name(const TField &field);
/third_party/openssl/include/openssl/
H A Dtxt_db.h52 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *),

Completed in 24 milliseconds

1...<<41424344454647484950>>...71