/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
D | OtTableTagger.java | 6 import com.google.typography.font.sfntly.sample.sfview.TaggedData.FieldType; 142 int scriptCount = td.tagRangeField(FieldType.SHORT, "script count"); in registerTagMethods() 144 td.tagRangeField(FieldType.TAG, null); in registerTagMethods() 145 td.tagRangeField(FieldType.OFFSET, null); in registerTagMethods() 158 td.tagRangeField(FieldType.OFFSET_NONZERO, "default lang sys"); in registerTagMethods() 159 int langCount = td.tagRangeField(FieldType.SHORT, "language count"); in registerTagMethods() 161 td.tagRangeField(FieldType.TAG, null); in registerTagMethods() 162 td.tagRangeField(FieldType.OFFSET, null); in registerTagMethods() 176 td.tagRangeField(FieldType.SHORT_IGNORED, "lookup order"); in registerTagMethods() 177 td.tagRangeField(FieldType.SHORT_IGNORED_FFFF, "required feature"); in registerTagMethods() [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
D | OtTableTagger.java | 6 import com.google.typography.font.sfntly.sample.sfview.TaggedData.FieldType; 142 int scriptCount = td.tagRangeField(FieldType.SHORT, "script count"); in registerTagMethods() 144 td.tagRangeField(FieldType.TAG, null); in registerTagMethods() 145 td.tagRangeField(FieldType.OFFSET, null); in registerTagMethods() 158 td.tagRangeField(FieldType.OFFSET_NONZERO, "default lang sys"); in registerTagMethods() 159 int langCount = td.tagRangeField(FieldType.SHORT, "language count"); in registerTagMethods() 161 td.tagRangeField(FieldType.TAG, null); in registerTagMethods() 162 td.tagRangeField(FieldType.OFFSET, null); in registerTagMethods() 176 td.tagRangeField(FieldType.SHORT_IGNORED, "lookup order"); in registerTagMethods() 177 td.tagRangeField(FieldType.SHORT_IGNORED_FFFF, "required feature"); in registerTagMethods() [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | FieldDescriptor.cs | 47 private FieldType fieldType; 83 : FieldType == FieldType.Message ? true 165 private static FieldType GetFieldTypeFromProtoType(FieldDescriptorProto.Types.Type type) in GetFieldTypeFromProtoType() 170 return FieldType.Double; in GetFieldTypeFromProtoType() 172 return FieldType.Float; in GetFieldTypeFromProtoType() 174 return FieldType.Int64; in GetFieldTypeFromProtoType() 176 return FieldType.UInt64; in GetFieldTypeFromProtoType() 178 return FieldType.Int32; in GetFieldTypeFromProtoType() 180 return FieldType.Fixed64; in GetFieldTypeFromProtoType() 182 return FieldType.Fixed32; in GetFieldTypeFromProtoType() [all …]
|
/third_party/protobuf/java/lite/src/test/java/com/google/protobuf/ |
D | Proto2MessageLiteInfoFactory.java | 250 FieldType.DOUBLE, in lookupFieldsByName() 259 FieldType.FLOAT, in lookupFieldsByName() 268 FieldType.INT64, in lookupFieldsByName() 277 FieldType.UINT64, in lookupFieldsByName() 286 FieldType.INT32, in lookupFieldsByName() 295 FieldType.FIXED64, in lookupFieldsByName() 304 FieldType.FIXED32, in lookupFieldsByName() 313 FieldType.BOOL, in lookupFieldsByName() 322 FieldType.STRING, in lookupFieldsByName() 331 FieldType.MESSAGE, in lookupFieldsByName() [all …]
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | Proto2MessageInfoFactory.java | 121 field("fieldDouble1_"), 1, FieldType.DOUBLE, bitField0, 0x00000001, false, null)); in lookupFieldsByName() 124 field("fieldFloat2_"), 2, FieldType.FLOAT, bitField0, 0x00000002, false, null)); in lookupFieldsByName() 127 field("fieldInt643_"), 3, FieldType.INT64, bitField0, 0x00000004, false, null)); in lookupFieldsByName() 130 field("fieldUint644_"), 4, FieldType.UINT64, bitField0, 0x00000008, false, null)); in lookupFieldsByName() 133 field("fieldInt325_"), 5, FieldType.INT32, bitField0, 0x00000010, false, null)); in lookupFieldsByName() 136 field("fieldFixed646_"), 6, FieldType.FIXED64, bitField0, 0x00000020, false, null)); in lookupFieldsByName() 139 field("fieldFixed327_"), 7, FieldType.FIXED32, bitField0, 0x00000040, false, null)); in lookupFieldsByName() 142 field("fieldBool8_"), 8, FieldType.BOOL, bitField0, 0x00000080, false, null)); in lookupFieldsByName() 145 field("fieldString9_"), 9, FieldType.STRING, bitField0, 0x00000100, false, null)); in lookupFieldsByName() 148 field("fieldMessage10_"), 10, FieldType.MESSAGE, bitField0, 0x00000200, false, null)); in lookupFieldsByName() [all …]
|
D | Proto3MessageInfoFactory.java | 87 builder.withField(forField(field("fieldDouble1_"), 1, FieldType.DOUBLE, true)); in lookupFieldsByName() 88 builder.withField(forField(field("fieldFloat2_"), 2, FieldType.FLOAT, true)); in lookupFieldsByName() 89 builder.withField(forField(field("fieldInt643_"), 3, FieldType.INT64, true)); in lookupFieldsByName() 90 builder.withField(forField(field("fieldUint644_"), 4, FieldType.UINT64, true)); in lookupFieldsByName() 91 builder.withField(forField(field("fieldInt325_"), 5, FieldType.INT32, true)); in lookupFieldsByName() 92 builder.withField(forField(field("fieldFixed646_"), 6, FieldType.FIXED64, true)); in lookupFieldsByName() 93 builder.withField(forField(field("fieldFixed327_"), 7, FieldType.FIXED32, true)); in lookupFieldsByName() 94 builder.withField(forField(field("fieldBool8_"), 8, FieldType.BOOL, true)); in lookupFieldsByName() 95 builder.withField(forField(field("fieldString9_"), 9, FieldType.STRING, true)); in lookupFieldsByName() 96 builder.withField(forField(field("fieldMessage10_"), 10, FieldType.MESSAGE, true)); in lookupFieldsByName() [all …]
|
D | Proto3MessageLiteInfoFactory.java | 179 forField(field(Proto3MessageLite.class, "fieldDouble1_"), 1, FieldType.DOUBLE, true)); in lookupFieldsByName() 181 forField(field(Proto3MessageLite.class, "fieldFloat2_"), 2, FieldType.FLOAT, true)); in lookupFieldsByName() 183 forField(field(Proto3MessageLite.class, "fieldInt643_"), 3, FieldType.INT64, true)); in lookupFieldsByName() 185 forField(field(Proto3MessageLite.class, "fieldUint644_"), 4, FieldType.UINT64, true)); in lookupFieldsByName() 187 forField(field(Proto3MessageLite.class, "fieldInt325_"), 5, FieldType.INT32, true)); in lookupFieldsByName() 189 forField(field(Proto3MessageLite.class, "fieldFixed646_"), 6, FieldType.FIXED64, true)); in lookupFieldsByName() 191 forField(field(Proto3MessageLite.class, "fieldFixed327_"), 7, FieldType.FIXED32, true)); in lookupFieldsByName() 193 forField(field(Proto3MessageLite.class, "fieldBool8_"), 8, FieldType.BOOL, true)); in lookupFieldsByName() 195 forField(field(Proto3MessageLite.class, "fieldString9_"), 9, FieldType.STRING, true)); in lookupFieldsByName() 197 forField(field(Proto3MessageLite.class, "fieldMessage10_"), 10, FieldType.MESSAGE, true)); in lookupFieldsByName() [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | DescriptorMessageInfoFactory.java | 296 FieldType type = getFieldType(fd); in convertProto2() 452 FieldType type = getFieldType(fd); in buildOneofMember() 459 Class<?> messageType, FieldDescriptor fd, FieldType type) { in getOneofStoredType() 483 private static FieldType getFieldType(FieldDescriptor fd) { in getFieldType() 487 return FieldType.BOOL; in getFieldType() 489 return fd.isPacked() ? FieldType.BOOL_LIST_PACKED : FieldType.BOOL_LIST; in getFieldType() 491 return fd.isRepeated() ? FieldType.BYTES_LIST : FieldType.BYTES; in getFieldType() 494 return FieldType.DOUBLE; in getFieldType() 496 return fd.isPacked() ? FieldType.DOUBLE_LIST_PACKED : FieldType.DOUBLE_LIST; in getFieldType() 499 return FieldType.ENUM; in getFieldType() [all …]
|
D | FieldInfo.java | 42 private final FieldType type; 65 Field field, int fieldNumber, FieldType fieldType, boolean enforceUtf8) { in forField() 69 if (fieldType == FieldType.MESSAGE_LIST || fieldType == FieldType.GROUP_LIST) { in forField() 90 Field field, int fieldNumber, FieldType fieldType, Field cachedSizeField) { in forPackedField() 94 if (fieldType == FieldType.MESSAGE_LIST || fieldType == FieldType.GROUP_LIST) { in forPackedField() 115 Field field, int fieldNumber, FieldType fieldType, Class<?> messageClass) { in forRepeatedMessageField() 137 Field field, int fieldNumber, FieldType fieldType, EnumVerifier enumVerifier) { in forFieldWithEnumVerifier() 159 FieldType fieldType, in forPackedFieldWithEnumVerifier() 184 FieldType fieldType, in forProto2OptionalField() 227 FieldType fieldType, in forOneofMemberField() [all …]
|
D | MapEntryLite.java | 48 public final WireFormat.FieldType keyType; 50 public final WireFormat.FieldType valueType; 54 WireFormat.FieldType keyType, in Metadata() 56 WireFormat.FieldType valueType, in Metadata() 74 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in MapEntryLite() 103 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in newDefaultInstance() 122 WireFormat.FieldType type, in parseField()
|
D | FieldType.java | 41 public enum FieldType { enum 100 FieldType(int id, Collection collection, JavaType javaType) { in FieldType() method in FieldType 208 public static FieldType forId(int id) { in forId() 215 private static final FieldType[] VALUES; 219 FieldType[] values = values(); 220 VALUES = new FieldType[values.length]; 221 for (FieldType type : values) {
|
/third_party/protobuf/src/google/protobuf/ |
D | map_type_handler.h | 108 template <WireFormatLite::FieldType field_type, typename Type> 111 #define TYPE_TRAITS(FieldType, CType, WireFormatType, IsMessage, IsEnum) \ 113 class MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, Type> { \ 143 template <WireFormatLite::FieldType field_type, typename Type> 206 #define MAP_HANDLER(FieldType) \ 208 class MapTypeHandler<WireFormatLite::TYPE_##FieldType, Type> { \ 210 typedef typename MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \ 213 typedef typename MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \ 216 MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \ 219 MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \ [all …]
|
D | extension_set.h | 88 typedef uint8 FieldType; typedef 102 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked) in ExtensionInfo() 108 FieldType type; 186 FieldType type, bool is_repeated, 189 int number, FieldType type, 193 int number, FieldType type, 238 FieldType ExtensionType(int number) const; 262 void SetInt32(int number, FieldType type, int32 value, desc); 263 void SetInt64(int number, FieldType type, int64 value, desc); 264 void SetUInt32(int number, FieldType type, uint32 value, desc); [all …]
|
D | map_entry.h | 53 WireFormatLite::FieldType kKeyFieldType, 54 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 92 WireFormatLite::FieldType kKeyFieldType, 93 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 129 WireFormatLite::FieldType k_wire_type, WireFormatLite::FieldType, 138 WireFormatLite::FieldType kKeyFieldType, 139 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 151 WireFormatLite::FieldType key, WireFormatLite::FieldType value, 156 static constexpr WireFormatLite::FieldType kKeyFieldType = key; 157 static constexpr WireFormatLite::FieldType kValueFieldType = value;
|
D | map_field_inl.h | 166 WireFormatLite::FieldType kKeyFieldType, 167 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 175 WireFormatLite::FieldType kKeyFieldType, 176 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 194 WireFormatLite::FieldType kKeyFieldType, 195 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 208 WireFormatLite::FieldType kKeyFieldType, 209 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 219 WireFormatLite::FieldType kKeyFieldType, 220 WireFormatLite::FieldType kValueFieldType, int default_enum_value> [all …]
|
D | map_entry_lite.h | 57 WireFormatLite::FieldType kKeyFieldType, 58 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 61 WireFormatLite::FieldType kKeyFieldType, 62 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 106 template <typename Key, typename Value, WireFormatLite::FieldType kKeyFieldType, 107 WireFormatLite::FieldType kValueFieldType> 146 WireFormatLite::FieldType kKeyFieldType, 147 WireFormatLite::FieldType kValueFieldType, int default_enum_value> 186 static const WireFormatLite::FieldType kEntryKeyFieldType = kKeyFieldType; 187 static const WireFormatLite::FieldType kEntryValueFieldType = kValueFieldType; [all …]
|
D | map_field_lite.h | 56 WireFormatLite::FieldType key_wire_type, 57 WireFormatLite::FieldType value_wire_type, int default_enum_value = 0> 156 WireFormatLite::FieldType key_wire_type, 157 WireFormatLite::FieldType value_wire_type, int default_enum_value> 173 WireFormatLite::FieldType kKeyFieldType, 174 WireFormatLite::FieldType kValueFieldType, int default_enum_value>
|
/third_party/gn/src/base/json/ |
D | json_value_converter.h | 107 template <typename FieldType> 111 virtual bool Convert(const base::Value& value, FieldType* field) const = 0; 114 template <typename StructType, typename FieldType> 118 FieldType StructType::*field, in FieldConverter() 119 ValueConverter<FieldType>* converter) in FieldConverter() 129 FieldType StructType::*field_pointer_; 130 std::unique_ptr<ValueConverter<FieldType>> value_converter_; 135 template <typename FieldType> 199 template <typename FieldType> 200 class ValueFieldConverter : public ValueConverter<FieldType> { [all …]
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
D | phonemetadata.pb.js | 2365 fieldType: goog.proto2.Message.FieldType.STRING, 2371 fieldType: goog.proto2.Message.FieldType.STRING, 2377 fieldType: goog.proto2.Message.FieldType.STRING, 2382 fieldType: goog.proto2.Message.FieldType.STRING, 2387 fieldType: goog.proto2.Message.FieldType.BOOL, 2393 fieldType: goog.proto2.Message.FieldType.STRING, 2422 fieldType: goog.proto2.Message.FieldType.STRING, 2428 fieldType: goog.proto2.Message.FieldType.INT32, 2434 fieldType: goog.proto2.Message.FieldType.INT32, 2439 fieldType: goog.proto2.Message.FieldType.STRING, [all …]
|
D | phonenumber.pb.js | 494 fieldType: goog.proto2.Message.FieldType.INT32, 500 fieldType: goog.proto2.Message.FieldType.UINT64, 505 fieldType: goog.proto2.Message.FieldType.STRING, 510 fieldType: goog.proto2.Message.FieldType.BOOL, 515 fieldType: goog.proto2.Message.FieldType.INT32, 521 fieldType: goog.proto2.Message.FieldType.STRING, 526 fieldType: goog.proto2.Message.FieldType.ENUM, 532 fieldType: goog.proto2.Message.FieldType.STRING,
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | JsonFormatter.cs | 315 switch (descriptor.FieldType) in IsDefaultValue() 317 case FieldType.Bool: in IsDefaultValue() 319 case FieldType.Bytes: in IsDefaultValue() 321 case FieldType.String: in IsDefaultValue() 323 case FieldType.Double: in IsDefaultValue() 325 case FieldType.SInt32: in IsDefaultValue() 326 case FieldType.Int32: in IsDefaultValue() 327 case FieldType.SFixed32: in IsDefaultValue() 328 case FieldType.Enum: in IsDefaultValue() 330 case FieldType.Fixed32: in IsDefaultValue() [all …]
|
D | MessageExtensions.cs | 205 if (valueField.FieldType == FieldType.Message) in IsInitialized() 215 … else if (f.IsRepeated && f.FieldType == FieldType.Message || f.FieldType == FieldType.Group) in IsInitialized() 220 else if (f.FieldType == FieldType.Message || f.FieldType == FieldType.Group) in IsInitialized()
|
/third_party/vk-gl-cts/framework/platform/android/ |
D | tcuAndroidUtil.cpp | 221 template<typename FieldType> 222 FieldType getStaticFieldValue (JNIEnv* env, jclass cls, jfieldID fieldId); 268 template<typename FieldType> 269 FieldType getStaticField (JNIEnv* env, const char* className, const char* fieldName) in getStaticField() 272 const jfieldID fieldId = env->GetStaticFieldID(cls, fieldName, getJNITypeStr<FieldType>()); in getStaticField() 277 return getStaticFieldValue<FieldType>(env, cls, fieldId); in getStaticField() 282 template<typename FieldType> 283 FieldType getFieldValue (JNIEnv* env, jobject obj, jfieldID fieldId); 292 template<typename FieldType> 293 FieldType getField (JNIEnv* env, jobject obj, const char* fieldName) in getField() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitcodeHeader.h | 53 } FieldType; typedef 94 static const char *TypeName(FieldType FType); 110 FieldType GetType() const { return FType; } in GetType() 126 void DecodeTypedID(FixedSubfield Subfield, Tag &ID, FieldType &FType) { in DecodeTypedID() 132 : static_cast<FieldType>(PossibleFType)); in DecodeTypedID() 144 FieldType FType;
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/ |
D | DescriptorsTest.cs | 259 Assert.AreEqual(FieldType.Int32, primitiveField.FieldType); in TestFieldDescriptor() 263 Assert.AreEqual(FieldType.Enum, enumField.FieldType); in TestFieldDescriptor() 267 Assert.AreEqual(FieldType.Message, foreignMessageField.FieldType); in TestFieldDescriptor() 271 Assert.AreEqual(FieldType.Message, importMessageField.FieldType); in TestFieldDescriptor()
|