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

12

/external/chromium_org/sync/syncable/
H A Dsyncable-inl.h13 template <typename FieldType, FieldType field_index>
/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/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dextension_set.h74 // Used to store values of type WireFormatLite::FieldType without having to
78 typedef uint8 FieldType; typedef in namespace:google::protobuf::internal
92 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
96 FieldType type;
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type,
218 FieldType ExtensionType(int number) const;
241 void SetInt32 (int number, FieldType type, int32 value, desc);
242 void SetInt64 (int number, FieldType typ
[all...]
H A Dwire_format_lite.h97 enum FieldType { enum in class:google::protobuf::internal::WireFormatLite
135 static CppType FieldTypeToCppType(FieldType type);
139 WireFormatLite::FieldType type) {
159 static inline int TagSize(int field_number, WireFormatLite::FieldType type);
284 // the represented type and the FieldType. These are specialized with the
286 template <typename CType, enum FieldType DeclaredType>
292 template <typename CType, enum FieldType DeclaredType>
300 template <typename CType, enum FieldType DeclaredType>
311 template <typename CType, enum FieldType DeclaredType>
318 template <typename CType, enum FieldType DeclaredTyp
[all...]
H A Dwire_format.h213 static_cast<WireFormatLite::FieldType>(
225 static_cast<WireFormatLite::FieldType>(
H A Dextension_set.cc52 inline WireFormatLite::FieldType real_type(FieldType type) {
54 return static_cast<WireFormatLite::FieldType>(type);
57 inline WireFormatLite::CppType cpp_type(FieldType type) {
113 int number, FieldType type,
136 int number, FieldType type,
148 int number, FieldType type,
200 FieldType ExtensionSet::ExtensionType(int number) const {
250 void ExtensionSet::Set##CAMELCASE(int number, FieldType type, \
280 void ExtensionSet::Add##CAMELCASE(int number, FieldType typ
[all...]
H A Dextension_set_heavy.cc99 inline FieldDescriptor::Type real_type(FieldType type) {
104 inline FieldDescriptor::CppType cpp_type(FieldType type) {
109 inline WireFormatLite::FieldType field_type(FieldType type) {
111 return static_cast<WireFormatLite::FieldType>(type);
H A Dwire_format_lite_inl.h223 template <typename CType, enum WireFormatLite::FieldType DeclaredType>
240 template <typename CType, enum WireFormatLite::FieldType DeclaredType>
311 template <typename CType, enum WireFormatLite::FieldType DeclaredType>
321 template <typename CType, enum WireFormatLite::FieldType DeclaredType>
336 template <typename CType, enum WireFormatLite::FieldType DeclaredType>
/external/protobuf/src/google/protobuf/
H A Dextension_set.h74 // Used to store values of type WireFormatLite::FieldType without having to
78 typedef uint8 FieldType; typedef in namespace:google::protobuf::internal
92 inline ExtensionInfo(FieldType type, bool is_repeated, bool is_packed)
96 FieldType type;
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type,
239 void SetInt32 (int number, FieldType type, int32 value, desc);
240 void SetInt64 (int number, FieldType type, int64 value, desc);
241 void SetUInt32(int number, FieldType typ
[all...]
H A Dwire_format_lite.h98 enum FieldType { enum in class:google::protobuf::internal::WireFormatLite
136 static CppType FieldTypeToCppType(FieldType type);
140 WireFormatLite::FieldType type) {
160 static inline int TagSize(int field_number, WireFormatLite::FieldType type);
242 // the represented type and the FieldType. These are specialized with the
244 template <typename CType, enum FieldType DeclaredType>
250 template <typename CType, enum FieldType DeclaredType>
258 template <typename CType, enum FieldType DeclaredType>
269 template <typename CType, enum FieldType DeclaredType>
276 template <typename CType, enum FieldType DeclaredTyp
[all...]
H A Dwire_format.h276 static_cast<WireFormatLite::FieldType>(
288 static_cast<WireFormatLite::FieldType>(
H A Dextension_set.cc52 inline WireFormatLite::FieldType real_type(FieldType type) {
54 return static_cast<WireFormatLite::FieldType>(type);
57 inline WireFormatLite::CppType cpp_type(FieldType type) {
113 int number, FieldType type,
136 int number, FieldType type,
148 int number, FieldType type,
227 void ExtensionSet::Set##CAMELCASE(int number, FieldType type, \
257 void ExtensionSet::Add##CAMELCASE(int number, FieldType type, \
298 void ExtensionSet::SetEnum(int number, FieldType typ
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DDateTimeFormat.h39 enum FieldType { enum in class:blink::DateTimeFormat
100 virtual void visitField(FieldType, int numberOfPatternCharacters) = 0;
H A DDateTimeFormat.cpp34 static const DateTimeFormat::FieldType lowerCaseToFieldTypeMap[26] = {
63 static const DateTimeFormat::FieldType upperCaseToFieldTypeMap[26] = {
92 static DateTimeFormat::FieldType mapCharacterToFieldType(const UChar ch)
113 FieldType fieldType = FieldTypeLiteral;
189 FieldType fieldType2 = mapCharacterToFieldType(ch);
H A DDateTimeFormatTest.cpp38 typedef DateTimeFormat::FieldType FieldType; typedef in class:DateTimeFormatTest
43 FieldType fieldType;
45 Token(FieldType fieldType, int count = 1)
172 FieldType single(const char ch)
188 FieldType fieldType(int index) const
196 virtual void visitField(FieldType fieldType, int count) OVERRIDE
/external/chromium_org/base/json/
H A Djson_value_converter.h107 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,
119 ValueConverter<FieldType>* converter)
131 FieldType StructType::* field_pointer_;
132 scoped_ptr<ValueConverter<FieldType> > value_converter_;
136 template <typename FieldType>
206 template <typename FieldType>
207 class ValueFieldConverter : public ValueConverter<FieldType> {
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DFieldSet.java58 WireFormat.FieldType getLiteType();
292 private static void verifyType(final WireFormat.FieldType type,
369 static int getWireFormatForFieldType(final WireFormat.FieldType type,
433 final WireFormat.FieldType type) throws IOException {
507 final WireFormat.FieldType type,
512 if (type == WireFormat.FieldType.GROUP) {
532 final WireFormat.FieldType type,
564 WireFormat.FieldType type = descriptor.getLiteType();
634 final WireFormat.FieldType type,
637 if (type == WireFormat.FieldType
[all...]
H A DWireFormat.java107 public enum FieldType { enum in class:WireFormat
135 FieldType(final JavaType javaType, final int wireType) { method in class:WireFormat.FieldType
H A DGeneratedMessageLite.java340 if (extension.descriptor.getLiteType() == WireFormat.FieldType.ENUM) {
377 WireFormat.FieldType.GROUP) {
433 final WireFormat.FieldType type,
445 private final WireFormat.FieldType type;
453 public WireFormat.FieldType getLiteType() {
519 final WireFormat.FieldType type) {
532 final WireFormat.FieldType type,
/external/chromium_org/chrome/browser/ui/passwords/
H A Dmanage_passwords_bubble_model.cc25 enum FieldType { USERNAME_FIELD, PASSWORD_FIELD }; enum in namespace:__anon5124
31 int GetFieldWidth(FieldType type) {
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp295 llvm::Type *FieldType = getStorageType(Field); local
296 if (LayoutSize < getSize(FieldType))
297 FieldType = getByteArrayType(LayoutSize);
298 setBitFieldInfo(Field, CharUnits::Zero(), FieldType);
301 llvm::Type *FieldType = getStorageType(Field); local
304 getAlignment(FieldType) > getAlignment(StorageType) ||
305 (getAlignment(FieldType) == getAlignment(StorageType) &&
306 getSize(FieldType) > getSize(StorageType)))
307 StorageType = FieldType;
H A DCGClass.cpp542 QualType FieldType = Field->getType(); local
554 FieldType = MemberInit->getIndirectMember()->getAnonField()->getType();
565 = CGF.getContext().getAsConstantArrayType(FieldType);
581 CGF.EmitAggregateCopy(LHS.getAddress(), Src.getAddress(), FieldType,
596 QualType FieldType = Field->getType(); local
597 switch (getEvaluationKind(FieldType)) {
616 QualType BaseElementTy = getContext().getBaseElementType(FieldType);
635 EmitAggMemberInitializer(*this, LHS, Init, ArrayIndexVar, FieldType,
642 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
644 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
930 QualType FieldType = Field->getType(); local
992 QualType FieldType = AggregatedInits[i]->getMember()->getType(); local
[all...]
/external/clang/include/clang/Sema/
H A DInitialization.h189 InitializedEntity(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
190 : Kind(EK_LambdaCapture), Parent(nullptr), Type(FieldType),
319 QualType FieldType,
321 return InitializedEntity(VarID, FieldType, Loc);
318 InitializeLambdaCapture(IdentifierInfo *VarID, QualType FieldType, SourceLocation Loc) argument
/external/chromium_org/third_party/icu/source/i18n/
H A Dtzfmt.cpp176 enum FieldType { enum in class:GMTOffsetField
186 static GMTOffsetField* createTimeField(FieldType type, uint8_t width, UErrorCode& status);
187 static UBool isValid(FieldType type, int32_t width);
188 static FieldType getTypeByLetter(UChar ch);
190 FieldType getType() const;
196 FieldType fType;
238 GMTOffsetField::createTimeField(FieldType type, uint8_t width, UErrorCode& status) {
256 GMTOffsetField::isValid(FieldType type, int32_t width) {
269 GMTOffsetField::FieldType
281 inline GMTOffsetField::FieldType
[all...]
/external/icu/icu4c/source/i18n/
H A Dtzfmt.cpp176 enum FieldType { enum in class:GMTOffsetField
186 static GMTOffsetField* createTimeField(FieldType type, uint8_t width, UErrorCode& status);
187 static UBool isValid(FieldType type, int32_t width);
188 static FieldType getTypeByLetter(UChar ch);
190 FieldType getType() const;
196 FieldType fType;
238 GMTOffsetField::createTimeField(FieldType type, uint8_t width, UErrorCode& status) {
256 GMTOffsetField::isValid(FieldType type, int32_t width) {
269 GMTOffsetField::FieldType
281 inline GMTOffsetField::FieldType
[all...]

Completed in 1079 milliseconds

12