HomeSort by relevance Sort by last modified time
    Searched defs:Field (Results 26 - 50 of 69) sorted by null

12 3

  /libcore/luni/src/main/java/java/text/
MessageFormat.java 521 // add MessageFormat field attributes and values to the AttributedString
534 * If the {@code field} member of the specified {@code FieldPosition} is
535 * {@code MessageFormat.Field.ARGUMENT}, then the begin and end index of
536 * this field position is set to the location of the first occurrence of a
543 * @param field
544 * on input: an optional alignment field; on output: the offsets
545 * of the alignment field in the formatted text.
549 FieldPosition field) {
550 return formatImpl(objects, buffer, field, null);
601 * Adds a new FieldContainer with MessageFormat.Field.ARGUMENT field
    [all...]
  /dalvik/vm/oo/
Object.h 38 struct Field;
62 /* Use the top 16 bits of the access flags field for
85 /* bits we can reasonably expect to see set in a DEX access flags field */
105 * Use the top 16 bits of the access flags field for other method flags.
298 * Generic field header. We pass this around when we want a generic Field
302 struct Field {
303 ClassObject* clazz; /* class in which the field is declared */
310 * Static field.
312 struct StaticField : Field {
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 99 "Field offset not at char boundary!");
135 /// CanPlaceFieldAtOffset - Return whether a field can be placed at the given
454 // field subobjects are subobjects of empty bases that can be placed at offset
455 // zero. Because of this, we only need to keep track of empty field
528 // field subobjects are subobjects of empty bases that can be placed at
529 // offset zero. Because of this, we only need to keep track of empty field
570 /// UnfilledBitsInLastByte - If the last field laid out was a bitfield,
575 /// MaxFieldAlignment - The maximum allowed field alignment. This is set by
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 447 // as it may change the 'forwarding' field via call to Block_copy.
831 // Only initialize one field of a union. The field itself is
839 for (RecordDecl::field_iterator Field = record->field_begin(),
841 Field != FieldEnd; ++Field)
842 assert(Field->isUnnamedBitfield() && "Only unnamed bitfields allowed");
848 FieldDecl *Field = E->getInitializedFieldInUnion();
850 LValue FieldLoc = CGF.EmitLValueForFieldInitialization(DestPtr, Field, 0);
852 // Store the initializer into the field
    [all...]
CGClass.cpp 514 FieldDecl *Field;
517 CallMemberDtor(FieldDecl *Field, CXXDestructorDecl *Dtor)
518 : Field(Field), Dtor(Dtor) {}
523 LValue LHS = CGF.EmitLValueForField(ThisPtr, Field, 0);
547 FieldDecl *Field = MemberInit->getAnyMember();
548 QualType FieldType = CGF.getContext().getCanonicalType(Field->getType());
553 // If we are initializing an anonymous union field, drill down to the field.
559 LHS = CGF.EmitLValueForFieldInitialization(ThisPtr, Field, 0)
942 const FieldDecl *field; member in class:__anon4280::DestroyField
1037 const FieldDecl *field = *I; local
    [all...]
CodeGenModule.cpp     [all...]
CGDebugInfo.cpp 645 // Get the location for the field.
682 FieldDecl *field = *I; local
685 if (CGM.getContext().ZeroBitfieldFollowsNonBitfield((field), LastFD)) {
689 LastFD = field;
692 StringRef name = field->getName();
693 QualType type = field->getType();
697 LastFD = field;
702 if (field->isBitField()) {
703 SizeInBitsOverride = field->getBitWidthValue(CGM.getContext());
709 field->getLocation(), field->getAccess()
    [all...]
CGExpr.cpp 163 FieldDecl *Field;
173 SubobjectAdjustment(FieldDecl *Field)
175 this->Field = Field;
339 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) {
341 Adjustments.push_back(SubobjectAdjustment(Field));
380 // Check if need to perform derived-to-base casts and/or field accesses, to
399 CGF.EmitLValueForField(Object, Adjustment.Field, 0);
407 QualType T = Adjustment.Field->getType().getNonReferenceType()
411 Adjustment.Field->getType())
    [all...]
CGObjC.cpp     [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 917 // Note that we modify the path's Access field to the
    [all...]
SemaCast.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 471 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
481 if (!Field) {
486 SemaRef.InstantiateAttrs(TemplateArgs, D, Field);
489 Field->setInvalidDecl();
491 if (!Field->getDeclName()) {
493 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
495 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
498 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
501 Field->setImplicit(D->isImplicit());
502 Field->setAccess(D->getAccess())
    [all...]
SemaDeclAttr.cpp 226 /// \brief Check if passed in Decl is a field or potentially shared global var
227 /// \return true if the Decl is a field or potentially shared global variable
361 // D must be either a member field or global (potentially shared) variable.
386 // D must be either a member field or global (potentially shared) variable.
456 // D must be either a member field or global (potentially shared) variable.
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 436 unsigned Field = cast<ConstantInt>(Idx)->getZExtValue();
437 if (Field) {
439 uint64_t Offs = TD.getStructLayout(StTy)->getElementOffset(Field);
448 Ty = StTy->getElementType(Field);
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 101 // assigning to a field of BitsRecTy, which must have a BitsInit
    [all...]
Record.cpp 517 // resolveReferences - If there are any field references that refer to fields
    [all...]
  /external/llvm/utils/TableGen/
ARMDecoderEmitter.cpp 121 assert(width <= 8 && "Field is too large for uint8_t!");
445 // Populates the field of the insn given the start position and the number of
450 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
563 uint64_t Field;
565 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
569 // instruction into the bucket keyed off the constant field value.
571 FilteredInstructions[Field].push_back(LastOpcFiltered);
677 // Field value -1 implies a non-empty set of variable instructions.
787 << " && \"Instruction field out of bounds!\");\n";
848 // Populates the field of the insn given the start position and the number o
    [all...]
FixedLenDecoderEmitter.cpp 297 // Populates the field of the insn given the start position and the number of
302 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
401 uint64_t Field;
403 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
407 // instruction into the bucket keyed off the constant field value.
409 FilteredInstructions[Field].push_back(LastOpcFiltered);
517 // Field value -1 implies a non-empty set of variable instructions.
598 // Populates the field of the insn given the start position and the number of
603 bool FilterChooser::fieldFromInsn(uint64_t &Field, insn_t &Insn,
605 Field = 0
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 106 assert(Idx == NumStmtFields && "Incorrect statement field count");
315 assert(Idx == NumExprFields && "Incorrect expression field count");
439 case Node::Field:
645 FieldDecl *Field = ReadDeclAs<FieldDecl>(Record, Idx);
650 Designators.push_back(Designator(Field->getIdentifier(), DotLoc,
652 Designators.back().setField(Field);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 534 // field.
577 // value_tuple have different number of fields or incompatible field
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 857 : Self(P), Field(FD) { }
863 /// Field - The field declaration.
864 Decl *Field;
    [all...]

Completed in 1117 milliseconds

12 3