Searched defs:Field (Results 26 - 50 of 107) sorted by relevance

12345

/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_EBLC.h67 struct Field { struct in union:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable::Flags
H A DSkOTTable_glyf.h83 struct Field { struct in union:SkOTTableGlyphData::Simple::Flags
112 struct Field { struct in union:SkOTTableGlyphData::Composite::Component::Flags
H A DSkOTTable_OS_2_V1.h54 struct Field { struct in union:SkOTTableOS2_V1::Type
97 struct Field { struct in union:SkOTTableOS2_V1::UnicodeRange
344 struct Field { struct in union:SkOTTableOS2_V1::Selection
387 struct Field { struct in union:SkOTTableOS2_V1::CodePageRange
H A DSkOTTable_OS_2_V2.h53 struct Field { struct in union:SkOTTableOS2_V2::Type
98 struct Field { struct in union:SkOTTableOS2_V2::UnicodeRange
359 struct Field { struct in union:SkOTTableOS2_V2::Selection
402 struct Field { struct in union:SkOTTableOS2_V2::CodePageRange
H A DSkOTTable_OS_2_V3.h54 struct Field { struct in union:SkOTTableOS2_V3::Type
99 struct Field { struct in union:SkOTTableOS2_V3::UnicodeRange
369 struct Field { struct in union:SkOTTableOS2_V3::Selection
412 struct Field { struct in union:SkOTTableOS2_V3::CodePageRange
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp151 const ValueDecl *Field; local
154 Field = Init->getIndirectMember();
157 Field = Init->getMember();
161 QualType Ty = Field->getType();
/external/llvm/lib/TableGen/
H A DTGLexer.h46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, enumerator in enum:llvm::tgtok::TokKind
/external/nanopb-c/generator/
H A Dnanopb_generator.py161 class Field: class in inherits:
215 raise Exception("Field %s is defined as static, but max_size or "
418 class ExtensionRange(Field):
452 class ExtensionField(Field):
456 Field.__init__(self, self.fullname + 'struct', desc, field_options)
510 self.fields.append(Field(self.name, f, field_options))
754 yield '/* Field tags (for use in manual encoding/decoding) */\n'
836 yield '#error Field descriptor for %s is too large. Define PB_FIELD_32BIT to fix this.\n' % worst_field
853 yield '#error Field descriptor for %s is too large. Define PB_FIELD_16BIT to fix this.\n' % worst_field
/external/pdfium/fpdfsdk/include/javascript/
H A DField.h95 class Field : public CJS_EmbedObj class in inherits:CJS_EmbedObj
98 Field(CJS_Object* pJSObject);
99 virtual ~Field(void);
273 JS_STATIC_PROP(alignment, Field);
274 JS_STATIC_PROP(borderStyle, Field);
275 JS_STATIC_PROP(buttonAlignX, Field);
276 JS_STATIC_PROP(buttonAlignY, Field);
277 JS_STATIC_PROP(buttonFitBounds, Field);
278 JS_STATIC_PROP(buttonPosition, Field);
279 JS_STATIC_PROP(buttonScaleHow, Field);
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUnknownFieldSet.java83 new UnknownFieldSet(Collections.<Integer, Field>emptyMap());
89 private UnknownFieldSet(final Map<Integer, Field> fields) {
92 private Map<Integer, Field> fields;
109 public Map<Integer, Field> asMap() {
122 public Field getField(final int number) {
123 final Field result = fields.get(number);
124 return (result == null) ? Field.getDefaultInstance() : result;
129 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
199 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
211 for (final Map.Entry<Integer, Field> entr
656 public static final class Field { class in class:UnknownFieldSet
657 private Field() {} method in class:UnknownFieldSet.Field
[all...]
/external/skia/src/sfnt/
H A DSkOTTable_EBLC.h67 struct Field { struct in union:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable::Flags
H A DSkOTTable_glyf.h83 struct Field { struct in union:SkOTTableGlyphData::Simple::Flags
112 struct Field { struct in union:SkOTTableGlyphData::Composite::Component::Flags
H A DSkOTTable_OS_2_V1.h54 struct Field { struct in union:SkOTTableOS2_V1::Type
97 struct Field { struct in union:SkOTTableOS2_V1::UnicodeRange
344 struct Field { struct in union:SkOTTableOS2_V1::Selection
387 struct Field { struct in union:SkOTTableOS2_V1::CodePageRange
/external/valgrind/main/coregrind/m_debuginfo/
H A Dpriv_tytypes.h96 } Field; member in union:__anon32441::__anon32442
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dudbgutil.cpp33 " static const Field names_UShoeSize[] = {
55 struct Field { struct
67 * Define another field name. Used in an array of Field s
70 * @see Field
84 static const Field names_UCalendarDateFields[] =
113 static const Field names_UCalendarMonths[] =
134 static const Field names_UDateFormatStyle[] =
154 static const Field names_UAcceptResult[] =
165 static const Field names_UColAttributeValue[] = {
191 static const Field names_UPlugReaso
[all...]
/external/clang/include/clang/AST/
H A DAPValue.h100 const FieldDecl *Field; member in struct:clang::APValue::UnionData
324 return ((const UnionData*)(const char*)Data.buffer)->Field;
381 void setUnion(const FieldDecl *Field, const APValue &Value) {
383 ((UnionData*)(char*)Data.buffer)->Field = Field;
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp80 enum InfoKind { VFPtr, VBPtr, Field, Base, VBase, Scissor } Kind; enumerator in enum:__anon17851::CGRecordLowering::MemberInfo::InfoKind
100 return MemberInfo(Offset, MemberInfo::Field, Data);
164 void accumulateBitFields(RecordDecl::field_iterator Field,
290 for (const auto *Field : D->fields()) {
291 if (Field->isBitField()) {
293 if (Field->getBitWidthValue(Context) == 0)
295 llvm::Type *FieldType = getStorageType(Field);
298 setBitFieldInfo(Field, CharUnits::Zero(), FieldType);
300 Fields[Field->getCanonicalDecl()] = 0;
301 llvm::Type *FieldType = getStorageType(Field);
334 bitsToCharUnits(getFieldBitOffset(*Field)), MemberInfo::Field, member in class:MemberInfo
335 getStorageType(*Field), *Field)); local
341 accumulateBitFields(RecordDecl::field_iterator Field, RecordDecl::field_iterator FieldEnd) argument
376 MemberInfo::Field, nullptr, *Field)); local
410 MemberInfo::Field, nullptr, *Run)); member in class:MemberInfo
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dudbgutil.cpp33 " static const Field names_UShoeSize[] = {
55 struct Field { struct
67 * Define another field name. Used in an array of Field s
70 * @see Field
84 static const Field names_UCalendarDateFields[] =
113 static const Field names_UCalendarMonths[] =
134 static const Field names_UDateFormatStyle[] =
154 static const Field names_UAcceptResult[] =
165 static const Field names_UColAttributeValue[] = {
191 static const Field names_UPlugReaso
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js3634 var Field = Form.Element; variable
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DWikiParser.js34 WebInspector.WikiParser.Field = function()
375 * @return {!WebInspector.WikiParser.Field}
379 var field = new WebInspector.WikiParser.Field();
/external/clang/test/SemaCXX/
H A Ddllexport.cpp487 __declspec(dllexport) int Field; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}} member in struct:ExportMembers
873 __declspec(dllexport) int Field; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}} member in struct:ExportClassTmplMembers
H A Ddllimport.cpp398 __declspec(dllimport) int Field; // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}} member in struct:ImportMembers
796 __declspec(dllimport) int Field; // expected-warning{{'dllimport' attribute only applies to variables, functions and classes}} member in struct:ImportClassTmplMembers
/external/clang/tools/libclang/
H A DCXCursor.cpp666 CXCursor cxcursor::MakeCursorMemberRef(const FieldDecl *Field, SourceLocation Loc, argument
669 assert(Field && TU && "Invalid arguments!");
671 CXCursor C = { CXCursor_MemberRef, 0, { Field, RawLoc, TU } };
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp402 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
515 uint64_t Field; local
517 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
523 FilteredInstructions[Field].push_back(LastOpcFiltered);
648 // Field value -1 implies a non-empty set of variable instructions.
930 bool FilterChooser::fieldFromInsn(uint64_t &Field, insn_t &Insn,
932 Field = 0;
939 Field = Field | (1ULL << i);
/external/pdfium/fpdfsdk/src/javascript/
H A DField.cpp12 #include "../../include/javascript/Field.h"
23 /* ---------------------- Field ---------------------- */
112 IMPLEMENT_JS_CLASS(CJS_Field, Field)
119 Field* pField = (Field*)GetEmbedObject();
127 Field::Field(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject), function in class:Field
137 Field::~Field()
142 void Field
[all...]

Completed in 1106 milliseconds

12345