| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | taiwncal.cpp | 99 int32_t TaiwanCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 101 if(field == UCAL_ERA) { in handleGetLimit() 108 return GregorianCalendar::handleGetLimit(field,limitType); in handleGetLimit()
|
| /third_party/node/deps/icu-small/source/i18n/unicode/ |
| H A D | uformattedvalue.h | 23 * All possible field categories in ICU. Every entry in this enum corresponds 36 * For an undefined field category. 108 * Represents a span of a string containing a given field. 112 * 1. It has information on the field category. 113 * 2. It allows you to set constraints to use when iterating over field positions. 160 * Sets a constraint on the field category. 172 * // handle the number-related field position 180 * @param category The field category to fix when iterating. 192 * Sets a constraint on the category and field. 195 * positions are skipped unless they have the given category and field [all...] |
| /third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/ |
| H A D | cpuhotplug05.sh | 123 field=$(get_field "$offline_status" "$i") 124 if [ "$field" != "0.00" ]; then 125 tst_brkm TBROK "Field $i is '$field', '0.00' expected"
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
| H A D | anon_struct_in_union.rs | 16 pub field: s__bindgen_ty_1_inner, 42 "Offset of field: ", in bindgen_test_layout_s__bindgen_ty_1_inner() 65 unsafe { ::std::ptr::addr_of!((*ptr).field) as usize - ptr as usize }, in bindgen_test_layout_s__bindgen_ty_1() 68 "Offset of field: ", in bindgen_test_layout_s__bindgen_ty_1() 71 stringify!(field) in bindgen_test_layout_s__bindgen_ty_1() 102 concat!("Offset of field: ", stringify!(s), "::", stringify!(u)) in bindgen_test_layout_s()
|
| /third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
| H A D | OneofDescriptor.cs | 43 /// Describes a "oneof" field collection in a message type: a set of 93 /// Returns <c>true</c> if this oneof is a synthetic oneof containing a proto3 optional field; 153 foreach (var field in ContainingType.Fields.InDeclarationOrder()) in CrossLink() 155 if (field.ContainingOneof == this) in CrossLink() 157 fieldCollection.Add(field); in CrossLink()
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/amber/ |
| H A D | vktAmberTestCaseUtil.cpp | 88 void captureString (char* field) in captureString() argument 94 field[i] = m_str[m_idx]; in captureString() 99 field[i] = 0; in captureString()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | buddhcal.cpp | 96 int32_t BuddhistCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 98 if(field == UCAL_ERA) { in handleGetLimit() 101 return GregorianCalendar::handleGetLimit(field,limitType); in handleGetLimit()
|
| H A D | ethpccal.cpp | 131 EthiopicCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 133 if (isAmeteAlemEra() && field == UCAL_ERA) { in handleGetLimit() 136 return CECalendar::handleGetLimit(field, limitType); in handleGetLimit()
|
| H A D | taiwncal.cpp | 99 int32_t TaiwanCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument 101 if(field == UCAL_ERA) { in handleGetLimit() 108 return GregorianCalendar::handleGetLimit(field,limitType); in handleGetLimit()
|
| /third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
| H A D | uformattedvalue.h | 23 * All possible field categories in ICU. Every entry in this enum corresponds 36 * For an undefined field category. 110 * Represents a span of a string containing a given field. 114 * 1. It has information on the field category. 115 * 2. It allows you to set constraints to use when iterating over field positions. 162 * Sets a constraint on the field category. 174 * // handle the number-related field position 182 * @param category The field category to fix when iterating. 194 * Sets a constraint on the category and field. 197 * positions are skipped unless they have the given category and field [all...] |
| /third_party/typescript/tests/baselines/reference/ |
| H A D | decoratorMetadataRestParameterWithImportedType.js | 5 field: string; 10 field: string; 15 field: string;
|
| /third_party/protobuf/src/google/protobuf/compiler/java/ |
| H A D | java_message_builder_lite.cc | 71 if (IsRealOneof(descriptor_->field(i))) { in MessageBuilderLiteGenerator() 72 oneofs_.insert(descriptor_->field(i)->containing_oneof()); in MessageBuilderLiteGenerator() 120 field_generators_.get(descriptor_->field(i)) in Generate()
|
| H A D | java_file.cc | 544 const FieldDescriptor* field = *it; in GenerateDescriptorInitializationCodeForMutable() local 546 if (field->extension_scope() != NULL) { in GenerateDescriptorInitializationCodeForMutable() 547 scope = name_resolver_->GetMutableClassName(field->extension_scope()) + in GenerateDescriptorInitializationCodeForMutable() 550 scope = FileJavaPackage(field->file(), true) + "." + in GenerateDescriptorInitializationCodeForMutable() 551 name_resolver_->GetDescriptorClassName(field->file()) + in GenerateDescriptorInitializationCodeForMutable() 554 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) { in GenerateDescriptorInitializationCodeForMutable() 563 "scope", scope, "index", StrCat(field->index()), "class", in GenerateDescriptorInitializationCodeForMutable() 564 name_resolver_->GetImmutableClassName(field->message_type())); in GenerateDescriptorInitializationCodeForMutable() 567 "scope", scope, "index", StrCat(field->index())); in GenerateDescriptorInitializationCodeForMutable()
|
| /third_party/protobuf/python/google/protobuf/ |
| H A D | message_factory.py | 90 for field in descriptor.fields: 91 if field.message_type: 92 self.GetPrototype(field.message_type)
|
| /third_party/protobuf/src/google/protobuf/compiler/cpp/ |
| H A D | cpp_field.h | 60 // field code generators. 80 // needed to represent this field. These are placed inside the message 84 // Generate static default variable for this field. These are placed inside 85 // the message class. Most field types don't need this, so the default 90 // field. These are placed inside the class definition. 93 // Generate inline definitions of accessor functions for this field. 100 // Most field types don't need this, so the default implementation is empty. 105 // Most field types don't need this, so the default implementation is empty. 110 // Most field types don't need this, so the default implementation is empty. 115 // field [all...] |
| /third_party/rust/crates/libc/src/unix/nto/ |
| H A D | x86_64.rs | 113 .field("fsave_area", &self.fsave_area) in fmt() 114 .field("fxsave_area", &self.fxsave_area) in fmt() 115 .field("xsave_area", &self.xsave_area) in fmt()
|
| /third_party/nghttp2/src/ |
| H A D | http2.cc | 274 void copy_url_component(std::string &dest, const http_parser_url *u, int field, in copy_url_component() argument 276 if (u->field_set & (1 << field)) { in copy_url_component() 277 dest.assign(url + u->field_data[field].off, u->field_data[field].len); in copy_url_component() 640 auto field = &u.field_data[UF_HOST]; in rewrite_location_uri() local 642 &uri[field->off], &uri[field->off] + field->len) || in rewrite_location_uri() 643 (match_host.size() != field->len && match_host[field in rewrite_location_uri() [all...] |
| /third_party/mksh/ |
| H A D | var.c | 367 vp->u2.field = vq->u2.field; in local() 667 if (!vp->u2.field) in formatstr() 668 /* default field width */ in formatstr() 669 vp->u2.field = olen; in formatstr() 670 nlen = vp->u2.field; in formatstr() 697 if (vp->u2.field <= n) in formatstr() 704 while (slen > vp->u2.field) in formatstr() 706 if (vp->u2.field - slen) in formatstr() 708 vp->u2.field in formatstr() 762 typeset(const char *var, uint32_t set, uint32_t clr, int field, int base) typeset() argument 767 vtypeset(int *ep, const char *var, uint32_t set, uint32_t clr, int field, int base) vtypeset() argument 1871 int thing = 0, field = 0, base = 0, i; c_typeset() local [all...] |
| /third_party/rust/crates/libc/src/unix/linux_like/emscripten/ |
| H A D | mod.rs | 470 .field("d_ino", &self.d_ino) in fmt() 471 .field("d_off", &self.d_off) in fmt() 472 .field("d_reclen", &self.d_reclen) in fmt() 473 .field("d_type", &self.d_type) in fmt() 474 // FIXME: .field("d_name", &self.d_name) in fmt() 505 .field("d_ino", &self.d_ino) in fmt() 506 .field("d_off", &self.d_off) in fmt() 507 .field("d_reclen", &self.d_reclen) in fmt() 508 .field("d_type", &self.d_type) in fmt() 509 // FIXME: .field("d_nam in fmt() [all...] |
| /third_party/ffmpeg/libavcodec/ |
| H A D | thread.h | 110 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n); 111 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift);
|
| /third_party/glslang/glslang/MachineIndependent/ |
| H A D | ScanContext.h | 56 field(false), afterBuffer(false) { } in TScanContext() 83 bool field; // true if we're on a field, right after a '.' member in glslang::TScanContext
|
| /third_party/mesa3d/.gitlab-ci/lava/utils/ |
| H A D | lava_log_hints.py | 4 from dataclasses import dataclass, field namespace 18 has_r8152_issue_history: bool = field(default=False, init=False)
|
| /third_party/rust/crates/os_str_bytes/src/ |
| H A D | iter.rs | 80 .field("string", &self.string) in fmt() 81 .field("pat", &self.pat) in fmt()
|
| /third_party/python/Lib/msilib/ |
| H A D | __init__.py | 109 field = value[i] 110 if isinstance(field, int): 111 r.SetInteger(i+1,field) 112 elif isinstance(field, str): 113 r.SetString(i+1,field) 114 elif field is None: 116 elif isinstance(field, Binary): 117 r.SetStream(i+1, field.name) 119 raise TypeError("Unsupported type %s" % field.__class__.__name__)
|
| /third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/x86/ |
| H A D | mod.rs | 227 this field" 287 // Ignore __reserved field in eq() 290 // Ignore padding field in eq() 299 .field("cwd", &self.cwd) in fmt() 300 .field("swd", &self.swd) in fmt() 301 .field("twd", &self.twd) in fmt() 302 .field("fop", &self.fop) in fmt() 303 .field("fip", &self.fip) in fmt() 304 .field("fcs", &self.fcs) in fmt() 305 .field("fo in fmt() [all...] |