| /third_party/protobuf/src/google/protobuf/ |
| H A D | generated_message_reflection.h | 88 // For each oneof or weak field, the offset is relative to the 92 // macro. For each none oneof field, the offset is related to 99 // has_bit_indices: Mapping from field indexes to their index in the has 104 // corresponding field of the message has been initialized. 105 // The bit for field index i is obtained by the expression: 114 // indicates what field is set for each oneof. 127 bool InRealOneof(const FieldDescriptor* field) const { in InRealOneof() 128 return field->containing_oneof() && in InRealOneof() 129 !field->containing_oneof()->is_synthetic(); in InRealOneof() 132 // Offset of a non-oneof field [all...] |
| H A D | unknown_field_set.cc | 112 const UnknownField& field = (fields_)[i]; in SpaceUsedExcludingSelfLong() local 113 switch (field.type()) { in SpaceUsedExcludingSelfLong() 115 total_size += sizeof(*field.data_.length_delimited_.string_value) + in SpaceUsedExcludingSelfLong() 117 *field.data_.length_delimited_.string_value); in SpaceUsedExcludingSelfLong() 120 total_size += field.data_.group_->SpaceUsedLong(); in SpaceUsedExcludingSelfLong() 134 UnknownField field; in AddVarint() local 135 field.number_ = number; in AddVarint() 136 field.SetType(UnknownField::TYPE_VARINT); in AddVarint() 137 field.data_.varint_ = value; in AddVarint() 138 fields_.push_back(field); in AddVarint() 142 UnknownField field; AddFixed32() local 150 UnknownField field; AddFixed64() local 158 UnknownField field; AddLengthDelimited() local 168 UnknownField field; AddGroup() local 176 AddField(const UnknownField& field) AddField() argument 199 UnknownField* field = &(fields_)[i]; DeleteByNumber() local [all...] |
| H A D | arenastring_unittest.cc | 58 ArenaStringPtr field; in TEST() local 60 field.UnsafeSetDefault(&default_value); in TEST() 61 EXPECT_EQ(std::string("default"), field.Get()); in TEST() 62 field.Set(&default_value, WrapString("Test short"), NULL); in TEST() 63 EXPECT_EQ(std::string("Test short"), field.Get()); in TEST() 64 field.Set(&default_value, WrapString("Test long long long long value"), NULL); in TEST() 65 EXPECT_EQ(std::string("Test long long long long value"), field.Get()); in TEST() 66 field.Set(&default_value, std::string(""), NULL); in TEST() 67 field.Destroy(&default_value, NULL); in TEST() 83 ArenaStringPtr field; in TEST() local 109 ArenaStringPtr field; TEST() local [all...] |
| H A D | dynamic_message.cc | 104 bool IsMapFieldInApi(const FieldDescriptor* field) { return field->is_map(); } in IsMapFieldInApi() argument 107 inline bool HasHasbit(const FieldDescriptor* field) { in HasHasbit() argument 111 // This is slightly odd, as adding "optional" to a singular proto3 field does in HasHasbit() 112 // not change the semantics or API. However whenever any field in a message in HasHasbit() 119 return (field->has_optional_keyword() || field->is_required()) && in HasHasbit() 120 !field->options().weak(); in HasHasbit() 123 inline bool InRealOneof(const FieldDescriptor* field) { in InRealOneof() argument 124 return field in InRealOneof() 129 FieldSpaceUsed(const FieldDescriptor* field) FieldSpaceUsed() argument 202 OneofFieldSpaceUsed(const FieldDescriptor* field) OneofFieldSpaceUsed() argument 391 const FieldDescriptor* field = descriptor->field(i); SharedCtor() local 505 const FieldDescriptor* field = descriptor->field(i); ~DynamicMessage() local 608 const FieldDescriptor* field = descriptor->field(i); CrossLinkPrototypes() local 807 const FieldDescriptor* field = type->oneof_decl(i)->field(j); GetPrototypeNoLock() local 855 const FieldDescriptor* field = type->oneof_decl(i)->field(j); ConstructDefaultOneofInstance() local 902 const FieldDescriptor* field = type->oneof_decl(i)->field(j); DeleteDefaultOneofInstance() local [all...] |
| /third_party/protobuf/src/google/protobuf/compiler/cpp/ |
| H A D | cpp_field.cc | 123 MakeGenerator(descriptor->field(i), options, scc_analyzer)); in FieldGeneratorMap() 128 const FieldDescriptor* field, const Options& options, in MakeGoogleInternalGenerator() 135 const FieldDescriptor* field, const Options& options, in MakeGenerator() 138 MakeGoogleInternalGenerator(field, options, scc_analyzer); in MakeGenerator() 143 if (field->is_repeated()) { in MakeGenerator() 144 switch (field->cpp_type()) { in MakeGenerator() 146 if (field->is_map()) { in MakeGenerator() 147 return new MapFieldGenerator(field, options); in MakeGenerator() 149 return new RepeatedMessageFieldGenerator(field, options, in MakeGenerator() 153 return new RepeatedStringFieldGenerator(field, option in MakeGenerator() 127 MakeGoogleInternalGenerator( const FieldDescriptor* field, const Options& options, MessageSCCAnalyzer* scc_analyzer) MakeGoogleInternalGenerator() argument 134 MakeGenerator( const FieldDescriptor* field, const Options& options, MessageSCCAnalyzer* scc_analyzer) MakeGenerator() argument [all...] |
| /third_party/protobuf/src/google/protobuf/util/internal/ |
| H A D | proto_writer.cc | 122 // Writes an INT32 field, including tag to the stream. 132 // writes an SFIXED32 field, including tag, to the stream. 142 // Writes an SINT32 field, including tag, to the stream. 152 // Writes a FIXED32 field, including tag, to the stream. 162 // Writes a UINT32 field, including tag, to the stream. 172 // Writes an INT64 field, including tag, to the stream. 182 // Writes an SFIXED64 field, including tag, to the stream. 192 // Writes an SINT64 field, including tag, to the stream. 202 // Writes a FIXED64 field, including tag, to the stream. 212 // Writes a UINT64 field, includin 277 const google::protobuf::Field& field = type.fields(i); GetRequiredFields() local 305 ProtoElement(ProtoWriter::ProtoElement* parent, const google::protobuf::Field* field, const google::protobuf::Type& type, bool is_list) ProtoElement() argument 380 RegisterField( const google::protobuf::Field* field) RegisterField() argument 465 const google::protobuf::Field* field = BeginNamed(name, false); StartObject() local 510 const google::protobuf::Field* field = BeginNamed(name, true); StartList() local 545 const google::protobuf::Field* field = Lookup(name); RenderDataPiece() local 561 ValidOneof(const google::protobuf::Field& field, StringPiece unnormalized_name) ValidOneof() argument 579 IsRepeated(const google::protobuf::Field& field) IsRepeated() argument 583 StartObjectField(const google::protobuf::Field& field, const google::protobuf::Type& type) StartObjectField() argument 590 StartListField(const google::protobuf::Field& field, const google::protobuf::Type& type) StartListField() argument 612 RenderPrimitiveField( const google::protobuf::Field& field, const google::protobuf::Type& type, const DataPiece& data) RenderPrimitiveField() argument 735 const google::protobuf::Field* field = Lookup(name); BeginNamed() local 766 const google::protobuf::Field* field = Lookup() local 774 LookupType( const google::protobuf::Field* field) LookupType() argument 827 WriteTag(const google::protobuf::Field& field) WriteTag() argument [all...] |
| /third_party/protobuf/src/google/protobuf/util/ |
| H A D | field_comparator.cc | 60 const FieldDescriptor* field, int index_1, int index_2, in Compare() 65 switch (field->cpp_type()) { in Compare() 67 if (field->is_repeated()) { \ in Compare() 69 *field, reflection_1->GetRepeated##METHOD(message_1, field, index_1), \ in Compare() 70 reflection_2->GetRepeated##METHOD(message_2, field, index_2))); \ in Compare() 73 Compare##METHOD(*field, reflection_1->Get##METHOD(message_1, field), \ in Compare() 74 reflection_2->Get##METHOD(message_2, field))); \ in Compare() 91 if (field in Compare() 58 Compare( const Message& message_1, const Message& message_2, const FieldDescriptor* field, int index_1, int index_2, const util::FieldContext* field_context) Compare() argument 144 SetFractionAndMargin(const FieldDescriptor* field, double fraction, double margin) SetFractionAndMargin() argument 154 CompareDouble(const FieldDescriptor& field, double value_1, double value_2) CompareDouble() argument 159 CompareEnum(const FieldDescriptor& field, const EnumValueDescriptor* value_1, const EnumValueDescriptor* value_2) CompareEnum() argument 165 CompareFloat(const FieldDescriptor& field, float value_1, float value_2) CompareFloat() argument 171 CompareDoubleOrFloat(const FieldDescriptor& field, T value_1, T value_2) CompareDoubleOrFloat() argument [all...] |
| /third_party/protobuf/src/google/protobuf/compiler/java/ |
| H A D | java_message.cc | 80 if (IsRealOneof(descriptor_->field(i))) { in MessageGenerator() 81 oneofs_.insert(descriptor_->field(i)->containing_oneof()); in MessageGenerator() 213 // 6 bytes per field and oneof in GenerateFieldAccessorTable() 229 const FieldDescriptor* field = descriptor_->field(i); in GenerateFieldAccessorTableInitializer() local 230 const FieldGeneratorInfo* info = context_->GetFieldGeneratorInfo(field); in GenerateFieldAccessorTableInitializer() 276 field_generators_.get(descriptor_->field(i)) in GenerateInterface() 401 field_generators_.get(descriptor_->field(i)).GetNumBitsForMessage(); in Generate() 430 const FieldDescriptor* field = (oneof)->field( in Generate() local 459 const FieldDescriptor* field = (oneof)->field(j); Generate() local 754 GenerateSerializeOneField( io::Printer* printer, const FieldDescriptor* field) GenerateSerializeOneField() argument 815 const FieldDescriptor* field = descriptor_->field(i); GenerateDescriptorMethods() local 831 const FieldDescriptor* field = map_fields[i]; GenerateDescriptorMethods() local 887 const FieldDescriptor* field = descriptor_->field(i); GenerateIsInitialized() local 902 const FieldDescriptor* field = descriptor_->field(i); GenerateIsInitialized() local 978 CheckHasBitsForEqualsAndHashCode(const FieldDescriptor* field) CheckHasBitsForEqualsAndHashCode() argument 1008 const FieldDescriptor* field = descriptor_->field(i); GenerateEqualsAndHashCode() local 1038 const FieldDescriptor* field = (oneof)->field(j); GenerateEqualsAndHashCode() local 1090 const FieldDescriptor* field = descriptor_->field(i); GenerateEqualsAndHashCode() local 1112 const FieldDescriptor* field = (oneof)->field(j); GenerateEqualsAndHashCode() local 1180 const ImmutableFieldGenerator& field = GenerateParsingConstructor() local 1213 const FieldDescriptor* field = sorted_fields[i]; GenerateParsingConstructor() local 1273 const FieldDescriptor* field = sorted_fields[i]; GenerateParsingConstructor() local [all...] |
| H A D | java_doc_comment.cc | 175 void WriteFieldDocComment(io::Printer* printer, const FieldDescriptor* field) { in WriteFieldDocComment() argument 177 // .proto file (if present). We then continue with the field declaration, in WriteFieldDocComment() 181 // If the field is a group, the debug string might end with {. in WriteFieldDocComment() 183 WriteDocCommentBody(printer, field); in WriteFieldDocComment() 185 EscapeJavadoc(FirstLineOf(field->DebugString()))); in WriteFieldDocComment() 190 const FieldDescriptor* field, in WriteFieldAccessorDocComment() 194 WriteDocCommentBody(printer, field); in WriteFieldAccessorDocComment() 196 EscapeJavadoc(FirstLineOf(field->DebugString()))); in WriteFieldAccessorDocComment() 199 printer->Print(" * @return Whether the $name$ field is set.\n", "name", in WriteFieldAccessorDocComment() 200 field in WriteFieldAccessorDocComment() 189 WriteFieldAccessorDocComment(io::Printer* printer, const FieldDescriptor* field, const FieldAccessorType type, const bool builder) WriteFieldAccessorDocComment() argument 247 WriteFieldEnumValueAccessorDocComment(io::Printer* printer, const FieldDescriptor* field, const FieldAccessorType type, const bool builder) WriteFieldEnumValueAccessorDocComment() argument 316 WriteFieldStringBytesAccessorDocComment(io::Printer* printer, const FieldDescriptor* field, const FieldAccessorType type, const bool builder) WriteFieldStringBytesAccessorDocComment() argument [all...] |
| /third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
| H A D | calendar.h | 83 * A `Calendar` object can produce all the time field values 96 * the Gregorian calendar, the default for a field is the same as that of the 103 * most recently set single field, will be used. 154 * `Calendar` provides an API for field "rolling", where fields 160 * adding the specified (signed) amount of time to a particular time field. 239 * who create locale resources for the field of first-day-of-week should be aware of 420 * to previous calls to set time field values. The time specified is non-local UTC 425 * previously set in the time field is invalid or restricted by 439 * set in the time field is invalid or restricted by 488 * previously set in the time field i 1563 internalGet(UCalendarDateFields field, int32_t defaultValue) const internalGet() argument 2510 roll(UCalendarDateFields field, UBool up, UErrorCode& status) roll() argument 2517 roll(EDateFields field, UBool up, UErrorCode& status) roll() argument 2532 internalSet(UCalendarDateFields field, int32_t value) internalSet() argument [all...] |
| /third_party/protobuf/src/google/protobuf/compiler/ruby/ |
| H A D | ruby_generator.cc | 52 std::string LabelForField(FieldDescriptor* field); 53 std::string TypeName(FieldDescriptor* field); 61 std::string DefaultValueForField(const FieldDescriptor* field); 79 std::string LabelForField(const FieldDescriptor* field) { in LabelForField() argument 80 if (field->has_optional_keyword() && in LabelForField() 81 field->file()->syntax() == FileDescriptor::SYNTAX_PROTO3) { in LabelForField() 84 switch (field->label()) { in LabelForField() 92 std::string TypeName(const FieldDescriptor* field) { in TypeName() argument 93 switch (field->type()) { in TypeName() 130 std::string DefaultValueForField(const FieldDescriptor* field) { in DefaultValueForField() argument 172 GenerateField(const FieldDescriptor* field, io::Printer* printer) GenerateField() argument 234 const FieldDescriptor* field = oneof->field(i); GenerateOneof() local 261 const FieldDescriptor* field = message->field(i); GenerateMessage() local 467 const FieldDescriptor* field = message->field(i); UsesTypeFromFile() local [all...] |
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
| H A D | ConformanceTest.java | 145 * there are five columns, corresponding to field[0]..field[4]. 153 * @param field the 5 columns 157 private boolean checkConformance(String[] field, String line, int options) throws Exception{ in checkConformance() argument 165 pass &= checkNorm(Normalizer.NFC, options, field[i], field[1], fieldNum); in checkConformance() 166 pass &= checkNorm(Normalizer.NFD, options, field[i], field[2], fieldNum); in checkConformance() 168 pass &= checkNorm(Normalizer.NFKC, options, field[i], field[ in checkConformance() 296 checkNorm(Normalizer.Mode mode, int options, String s, String exp, int field) checkNorm() argument [all...] |
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
| H A D | ConformanceTest.java | 142 * there are five columns, corresponding to field[0]..field[4]. 150 * @param field the 5 columns 154 private boolean checkConformance(String[] field, String line, int options) throws Exception{ in checkConformance() argument 162 pass &= checkNorm(Normalizer.NFC, options, field[i], field[1], fieldNum); in checkConformance() 163 pass &= checkNorm(Normalizer.NFD, options, field[i], field[2], fieldNum); in checkConformance() 165 pass &= checkNorm(Normalizer.NFKC, options, field[i], field[ in checkConformance() 293 checkNorm(Normalizer.Mode mode, int options, String s, String exp, int field) checkNorm() argument [all...] |
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | ModifyStruct.cpp | 77 Field, // Struct field indexing. 82 PathItem(const TField &field) : field(&field), type(Type::Field) {} 89 const TField *field; 105 curr = &AccessField(*curr, item.field->name()); 282 pushNamePath(item.field->name().data()); 318 void addModifiedField(const TField &field, 330 TField *modifiedField = new TField(&newType, pathName, field.line(), field [all...] |
| /third_party/rust/crates/libc/src/unix/haiku/ |
| H A D | x86_64.rs | 82 .field("control", &self.control) in fmt() 83 .field("status", &self.status) in fmt() 84 .field("tag", &self.tag) in fmt() 85 .field("opcode", &self.opcode) in fmt() 86 .field("rip", &self.rip) in fmt() 87 .field("rdp", &self.rdp) in fmt() 88 .field("mxcsr", &self.mxcsr) in fmt() 89 .field("mscsr_mask", &self.mscsr_mask) in fmt() 90 // FIXME: .field("_fpreg", &self._fpreg) in fmt() 91 // FIXME: .field("_xm in fmt() [all...] |
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | MapEntry.java | 190 for (final FieldDescriptor field : metadata.descriptor.getFields()) { in getAllFields() 191 if (hasField(field)) { in getAllFields() 192 result.put(field, getField(field)); in getAllFields() 198 private void checkFieldDescriptor(FieldDescriptor field) { in checkFieldDescriptor() argument 199 if (field.getContainingType() != metadata.descriptor) { in checkFieldDescriptor() 202 + field.getFullName() in checkFieldDescriptor() 209 public boolean hasField(FieldDescriptor field) { in hasField() argument 210 checkFieldDescriptor(field); in hasField() 217 public Object getField(FieldDescriptor field) { in getField() argument 228 getRepeatedFieldCount(FieldDescriptor field) getRepeatedFieldCount() argument 233 getRepeatedField(FieldDescriptor field, int index) getRepeatedField() argument 313 checkFieldDescriptor(FieldDescriptor field) checkFieldDescriptor() argument 324 newBuilderForField(FieldDescriptor field) newBuilderForField() argument 337 setField(FieldDescriptor field, Object value) setField() argument 360 clearField(FieldDescriptor field) clearField() argument 371 setRepeatedField(FieldDescriptor field, int index, Object value) setRepeatedField() argument 376 addRepeatedField(FieldDescriptor field, Object value) addRepeatedField() argument 408 hasField(FieldDescriptor field) hasField() argument 414 getField(FieldDescriptor field) getField() argument 425 getRepeatedFieldCount(FieldDescriptor field) getRepeatedFieldCount() argument 430 getRepeatedField(FieldDescriptor field, int index) getRepeatedField() argument [all...] |
| H A D | GeneratedMessageV3.java | 50 // interoperate (e.g., a GeneratedMessageV3V3 object has a message extension field whose class 84 * For testing. Allows a test to disable the optimization that avoids using field builders for 86 * reused to test the field builders. 116 * using field builders for nested messages until they are requested. By disabling 117 * this optimization, existing tests can be reused to test the field builders. 166 FieldDescriptor field = fields.get(i); in getAllFieldsMutable() 167 final OneofDescriptor oneofDescriptor = field.getContainingOneof(); in getAllFieldsMutable() 170 * If the field is part of a Oneof, then at maximum one field in the Oneof is set in getAllFieldsMutable() 177 // If no field i in getAllFieldsMutable() 267 hasField(final FieldDescriptor field) hasField() argument 272 getField(final FieldDescriptor field) getField() argument 284 getFieldRaw(final FieldDescriptor field) getFieldRaw() argument 289 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument 295 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument 673 newBuilderForField(final FieldDescriptor field) newBuilderForField() argument 678 getFieldBuilder(final FieldDescriptor field) getFieldBuilder() argument 683 getRepeatedFieldBuilder(final FieldDescriptor field, int index) getRepeatedFieldBuilder() argument 699 hasField(final FieldDescriptor field) hasField() argument 704 getField(final FieldDescriptor field) getField() argument 716 setField(final FieldDescriptor field, final Object value) setField() argument 722 clearField(final FieldDescriptor field) clearField() argument 734 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument 740 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument 746 setRepeatedField( final FieldDescriptor field, final int index, final Object value) setRepeatedField() argument 754 addRepeatedField(final FieldDescriptor field, final Object value) addRepeatedField() argument 1253 hasField(final FieldDescriptor field) hasField() argument 1263 getField(final FieldDescriptor field) getField() argument 1286 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument 1296 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument 1306 verifyContainingType(final FieldDescriptor field) verifyContainingType() argument 1633 getField(final FieldDescriptor field) getField() argument 1654 getFieldBuilder(final FieldDescriptor field) getFieldBuilder() argument 1687 getRepeatedFieldCount(final FieldDescriptor field) getRepeatedFieldCount() argument 1697 getRepeatedField(final FieldDescriptor field, final int index) getRepeatedField() argument 1711 getRepeatedFieldBuilder(final FieldDescriptor field, final int index) getRepeatedFieldBuilder() argument 1737 hasField(final FieldDescriptor field) hasField() argument 1747 setField(final FieldDescriptor field, final Object value) setField() argument 1761 clearField(final FieldDescriptor field) clearField() argument 1774 setRepeatedField(final FieldDescriptor field, final int index, final Object value) setRepeatedField() argument 1788 addRepeatedField(final FieldDescriptor field, final Object value) addRepeatedField() argument 1802 newBuilderForField(final FieldDescriptor field) newBuilderForField() argument 1818 verifyContainingType(final FieldDescriptor field) verifyContainingType() argument 2007 getField(final FieldDescriptor field) getField() argument 2270 protected final FieldDescriptor field; global() field in GeneratedMessageV3.FieldAccessorTable.SingularFieldAccessor 2590 private final FieldDescriptor field; global() field in GeneratedMessageV3.FieldAccessorTable.MapFieldAccessor 3105 serializeIntegerMapTo( CodedOutputStream out, MapField<Integer, V> field, MapEntry<Integer, V> defaultEntry, int fieldNumber) serializeIntegerMapTo() argument 3132 serializeLongMapTo( CodedOutputStream out, MapField<Long, V> field, MapEntry<Long, V> defaultEntry, int fieldNumber) serializeLongMapTo() argument 3159 serializeStringMapTo( CodedOutputStream out, MapField<String, V> field, MapEntry<String, V> defaultEntry, int fieldNumber) serializeStringMapTo() argument 3185 serializeBooleanMapTo( CodedOutputStream out, MapField<Boolean, V> field, MapEntry<Boolean, V> defaultEntry, int fieldNumber) serializeBooleanMapTo() argument [all...] |
| /third_party/gn/src/base/json/ |
| H A D | json_value_converter.h | 50 // for an int field. Do not report failures for missing fields. 54 // For nested field, the internal message also has to implement the registration 65 // For repeated field, we just assume std::vector<std::unique_ptr<ElementType>> 111 virtual bool Convert(const base::Value& value, FieldType* field) const = 0; 118 FieldType StructType::*field, in FieldConverter() 121 field_pointer_(field), in FieldConverter() 143 bool Convert(const base::Value& value, int* field) const override; 155 bool Convert(const base::Value& value, std::string* field) const override; 168 bool Convert(const base::Value& value, std::u16string* field) const override; 180 bool Convert(const base::Value& value, double* field) cons 509 const base::Value* field = NULL; Convert() local [all...] |
| /third_party/icu/icu4c/source/i18n/unicode/ |
| H A D | calendar.h | 83 * A `Calendar` object can produce all the time field values 96 * the Gregorian calendar, the default for a field is the same as that of the 103 * most recently set single field, will be used. 154 * `Calendar` provides an API for field "rolling", where fields 160 * adding the specified (signed) amount of time to a particular time field. 239 * who create locale resources for the field of first-day-of-week should be aware of 420 * to previous calls to set time field values. The time specified is non-local UTC 425 * previously set in the time field is invalid or restricted by 439 * set in the time field is invalid or restricted by 488 * previously set in the time field i 1481 internalGet(UCalendarDateFields field, int32_t defaultValue) const internalGet() argument 2434 roll(UCalendarDateFields field, UBool up, UErrorCode& status) roll() argument 2441 roll(EDateFields field, UBool up, UErrorCode& status) roll() argument 2456 internalSet(UCalendarDateFields field, int32_t value) internalSet() argument [all...] |
| /third_party/node/deps/icu-small/source/i18n/unicode/ |
| H A D | calendar.h | 83 * A `Calendar` object can produce all the time field values 96 * the Gregorian calendar, the default for a field is the same as that of the 103 * most recently set single field, will be used. 154 * `Calendar` provides an API for field "rolling", where fields 160 * adding the specified (signed) amount of time to a particular time field. 239 * who create locale resources for the field of first-day-of-week should be aware of 420 * to previous calls to set time field values. The time specified is non-local UTC 425 * previously set in the time field is invalid or restricted by 439 * set in the time field is invalid or restricted by 488 * previously set in the time field i 1542 internalGet(UCalendarDateFields field, int32_t defaultValue) const internalGet() argument 2525 roll(UCalendarDateFields field, UBool up, UErrorCode& status) roll() argument 2532 roll(EDateFields field, UBool up, UErrorCode& status) roll() argument 2547 internalSet(UCalendarDateFields field, int32_t value) internalSet() argument [all...] |
| /third_party/typescript/tests/baselines/reference/ |
| H A D | privateNameStaticFieldAssignment.js | 3 static #field = 0; 5 A.#field = 1; 6 A.#field += 2; 7 A.#field -= 3; 8 A.#field /= 4; 9 A.#field *= 5; 10 A.#field **= 6; 11 A.#field %= 7; 12 A.#field <<= 8; 13 A.#field >> [all...] |
| /third_party/node/deps/v8/tools/ |
| H A D | gc-nvp-trace-processor.py | 72 def __init__(self, title, field, axis = x1y1, **keywords): 76 if type(field) is list: 77 self.field = field 79 self.field = [field] 82 return self.field 86 'using %s' % context.format_fieldref(self.field), 123 return ':'.join([str(self.field_to_index[field]) for field i [all...] |
| /third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
| H A D | list.h | 138 #define list_entry(ptr, type, field) container_of(ptr, type, field) 164 #define list_for_each_entry(p, h, field) \ 165 for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \ 166 p = list_entry((p)->field.next, typeof(*p), field)) 168 #define list_for_each_entry_safe(p, n, h, field) \ 169 for (p = list_entry((h)->next, typeof(*p), field), \ 170 n = list_entry((p)->field [all...] |
| /third_party/rust/crates/memoffset/src/ |
| H A D | raw_field.rs | 43 /// Prevents complilation if the specified field name is not a part of the 61 ($type:path, $field:tt) => { 62 // Make sure the field actually exists. This line ensures that a 63 // compile-time error is generated if $field is accessed through a 66 let $type { $field: _, .. }; 73 ($type:path, $field:tt) => { 74 // Make sure the field actually exists. This line ensures that a 75 // compile-time error is generated if $field is accessed through a 77 let $type { $field: _, .. }; 94 ($type:ty, $field [all...] |
| /third_party/mesa3d/src/compiler/isaspec/ |
| H A D | encode.py | 44 # ... encode field A ... 45 # ... encode field B ... 47 # // Third level - each display field can be potentially resolved 49 # // an if/else ladder for an individual display field 51 # ... encode field C ... 53 # ... encode field C ... 62 # Represents a concrete field, ie. a field can be overriden 63 # by an override, so the exact choice to encode a given field 66 def __init__(self, field, cas [all...] |