Searched refs:FieldType (Results 1 - 25 of 94) sorted by relevance

1234

/external/v8/src/
H A Dfield-type.cc15 FieldType* FieldType::None() {
18 return reinterpret_cast<FieldType*>(Smi::FromInt(2));
22 FieldType* FieldType::Any() {
23 return reinterpret_cast<FieldType*>(Smi::FromInt(1));
27 Handle<FieldType> FieldType::None(Isolate* isolate) {
32 Handle<FieldType> FieldType
[all...]
H A Dfield-type.h16 class FieldType : public Object { class in namespace:v8::internal
18 static FieldType* None();
19 static FieldType* Any();
20 static Handle<FieldType> None(Isolate* isolate);
21 static Handle<FieldType> Any(Isolate* isolate);
22 static FieldType* Class(i::Map* map);
23 static Handle<FieldType> Class(i::Handle<i::Map> map, Isolate* isolate);
24 static FieldType* cast(Object* object);
40 bool NowIs(FieldType* other);
41 bool NowIs(Handle<FieldType> othe
[all...]
H A Dproperty.cc27 : Descriptor(key, FieldType::Any(key->GetIsolate()), attributes, DATA,
/external/clang/include/clang/Basic/
H A DAllDiagnostics.h29 template <size_t SizeOfStr, typename FieldType>
31 char FIELD_TOO_SMALL[SizeOfStr <= FieldType(~0U) ? 1 : -1];
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFieldDescriptor.cs45 private FieldType fieldType;
130 /// Maps a field type as included in the .proto file to a FieldType.
132 private static FieldType GetFieldTypeFromProtoType(FieldDescriptorProto.Types.Type type)
137 return FieldType.Double;
139 return FieldType.Float;
141 return FieldType.Int64;
143 return FieldType.UInt64;
145 return FieldType.Int32;
147 return FieldType.Fixed64;
149 return FieldType
200 public FieldType FieldType => fieldType; field in class:Google.Protobuf.Reflection.FieldDescriptor
[all...]
H A DFieldType.cs38 public enum FieldType enum in namespace:Google.Protobuf.Reflection
H A DSingleFieldAccessor.cs64 descriptor.FieldType == FieldType.Message ? null
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExtensionLite.java45 public abstract WireFormat.FieldType getLiteType();
H A DMapEntryLite.java48 public final WireFormat.FieldType keyType;
49 public final WireFormat.FieldType valueType;
53 WireFormat.FieldType keyType,
54 WireFormat.FieldType valueType) {
79 WireFormat.FieldType keyType, K defaultKey,
80 WireFormat.FieldType valueType, V defaultValue) {
110 WireFormat.FieldType keyType, K defaultKey,
111 WireFormat.FieldType valueType, V defaultValue) {
123 int number, WireFormat.FieldType type, Object value,
143 int number, WireFormat.FieldType typ
[all...]
H A DWireFormat.java109 public enum FieldType { enum in class:WireFormat
145 FieldType(final JavaType javaType, final int wireType) { method in class:WireFormat.FieldType
221 FieldType type,
/external/protobuf/src/google/protobuf/
H A Dmap_field_lite.h45 WireFormatLite::FieldType key_wire_type,
46 WireFormatLite::FieldType value_wire_type,
95 WireFormatLite::FieldType key_wire_type,
96 WireFormatLite::FieldType value_wire_type,
106 WireFormatLite::FieldType key_wire_type,
107 WireFormatLite::FieldType value_wire_type,
117 WireFormatLite::FieldType key_wire_type,
118 WireFormatLite::FieldType value_wire_type,
126 WireFormatLite::FieldType key_wire_type,
127 WireFormatLite::FieldType value_wire_typ
[all...]
H A Dmap_field_inl.h166 WireFormatLite::FieldType kKeyFieldType,
167 WireFormatLite::FieldType kValueFieldType,
173 WireFormatLite::FieldType kKeyFieldType,
174 WireFormatLite::FieldType kValueFieldType,
184 WireFormatLite::FieldType kKeyFieldType,
185 WireFormatLite::FieldType kValueFieldType,
192 WireFormatLite::FieldType kKeyFieldType,
193 WireFormatLite::FieldType kValueFieldType,
203 WireFormatLite::FieldType kKeyFieldType,
204 WireFormatLite::FieldType kValueFieldTyp
[all...]
H A Dmap_type_handler.h102 template <WireFormatLite::FieldType field_type, typename Type>
105 #define TYPE_TRAITS(FieldType, CType, WireFormatType, IsMessage, IsEnum) \
107 class MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, Type> { \
137 template <WireFormatLite::FieldType field_type, typename Type>
199 #define MAP_HANDLER(FieldType) \
201 class MapTypeHandler<WireFormatLite::TYPE_##FieldType, Type> { \
203 typedef typename MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
206 typedef typename MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
209 MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
212 MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
[all...]
H A Dextension_set.h76 // Used to store values of type WireFormatLite::FieldType without having to
80 typedef uint8 FieldType; typedef in namespace:google::protobuf::internal
94 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
98 FieldType type;
172 int number, FieldType type,
175 int number, FieldType type,
179 int number, FieldType type,
224 FieldType ExtensionType(int number) const;
247 void SetInt32 (int number, FieldType type, int32 value, desc);
248 void SetInt64 (int number, FieldType typ
[all...]
H A Dmap_entry_lite.h42 WireFormatLite::FieldType kKeyFieldType,
43 WireFormatLite::FieldType kValueFieldType,
47 WireFormatLite::FieldType kKeyFieldType,
48 WireFormatLite::FieldType kValueFieldType,
60 WireFormatLite::FieldType kKeyFieldType,
61 WireFormatLite::FieldType kValueFieldType,
293 template <typename K, typename V, WireFormatLite::FieldType k_wire_type,
294 WireFormatLite::FieldType v_wire_type, int default_enum>
327 template <typename K, typename V, WireFormatLite::FieldType k_wire_type,
328 WireFormatLite::FieldType v_wire_typ
[all...]
H A Dmap_entry.h47 WireFormatLite::FieldType kKeyFieldType,
48 WireFormatLite::FieldType kValueFieldType,
92 // proto type: WireFormatLite::FieldType of the field.
109 WireFormatLite::FieldType kKeyFieldType,
110 WireFormatLite::FieldType kValueFieldType,
288 template <typename K, typename V, WireFormatLite::FieldType k_wire_type,
289 WireFormatLite::FieldType, int default_enum>
296 template <typename Key, typename Value, WireFormatLite::FieldType kKeyFieldType,
297 WireFormatLite::FieldType kValueFieldType, int default_enum_value>
H A Dwire_format_lite.h96 enum FieldType { enum in class:google::protobuf::internal::WireFormatLite
134 static CppType FieldTypeToCppType(FieldType type);
138 WireFormatLite::FieldType type) {
158 static inline int TagSize(int field_number, WireFormatLite::FieldType type);
251 // the represented type and the FieldType. These are specialized with the
253 template <typename CType, enum FieldType DeclaredType> INL
259 template <typename CType, enum FieldType DeclaredType> INL
267 template <typename CType, enum FieldType DeclaredType>
278 template <typename CType, enum FieldType DeclaredType> INL
284 template <typename CType, enum FieldType DeclaredTyp
[all...]
H A Dmap_field.h215 WireFormatLite::FieldType kKeyFieldType,
216 WireFormatLite::FieldType kValueFieldType,
377 internal::WireFormatLite::FieldType kKeyFieldType,
378 internal::WireFormatLite::FieldType kValueFieldType,
/external/libchrome/base/json/
H A Djson_value_converter.h110 template <typename FieldType>
114 virtual bool Convert(const base::Value& value, FieldType* field) const = 0;
117 template <typename StructType, typename FieldType>
121 FieldType StructType::* field,
122 ValueConverter<FieldType>* converter)
133 FieldType StructType::* field_pointer_;
134 std::unique_ptr<ValueConverter<FieldType>> value_converter_;
138 template <typename FieldType>
198 template <typename FieldType>
199 class ValueFieldConverter : public ValueConverter<FieldType> {
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonFormatter.cs346 switch (accessor.Descriptor.FieldType)
348 case FieldType.Bool:
350 case FieldType.Bytes:
352 case FieldType.String:
354 case FieldType.Double:
356 case FieldType.SInt32:
357 case FieldType.Int32:
358 case FieldType.SFixed32:
359 case FieldType.Enum:
361 case FieldType
[all...]
/external/deqp/framework/platform/android/
H A DtcuAndroidUtil.cpp221 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)
272 const jfieldID fieldId = env->GetStaticFieldID(cls, fieldName, getJNITypeStr<FieldType>());
277 return getStaticFieldValue<FieldType>(env, cls, fieldId);
282 template<typename FieldType>
283 FieldType getFieldValue (JNIEnv* env, jobject obj, jfieldID fieldId);
299 template<typename FieldType>
300 FieldType getFiel
[all...]
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs151 Assert.AreEqual(FieldType.Int32, primitiveField.FieldType);
155 Assert.AreEqual(FieldType.Enum, enumField.FieldType);
159 Assert.AreEqual(FieldType.Message, messageField.FieldType);
/external/protobuf/js/binary/
H A Dconstants.js171 jspb.BinaryConstants.FieldType = {
216 * @param {jspb.BinaryConstants.FieldType} fieldType
220 var fieldTypes = jspb.BinaryConstants.FieldType;
/external/v8/src/crankshaft/
H A Dhydrogen-types.h19 class FieldType;
68 static HType FromFieldType(Handle<FieldType> type,
/external/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp181 std::string FieldType = searchableFieldType(I); local
182 std::string PairType = "std::pair<" + FieldType + ", int>";
187 OS << "(" << (IsIntegral ? FieldType : "StringRef") << " " << Field
224 std::string FieldType = searchableFieldType(I); local
227 OS << "(" << (IsIntegral ? FieldType : "StringRef") << " " << Field

Completed in 388 milliseconds

1234