HomeSort by relevance Sort by last modified time
    Searched refs:isUnion (Results 1 - 25 of 28) sorted by null

1 2

  /external/clang/utils/ABITest/
TypeGen.py 81 def __init__(self, index, isUnion, fields):
83 self.isUnion = isUnion
94 return '%s { %s }'%(('struct','union')[self.isUnion],
109 return 'typedef %s %s { %s } %s;'%(('struct','union')[self.isUnion],
366 isUnion,I = False,N
368 isUnion,I = (I&1),I>>1
370 return RecordType(N, isUnion, fields)
ABITestGen.py 228 if t.isUnion:
329 if t.isUnion:
  /external/clang/include/clang/AST/
APValue.h 184 bool isUnion() const { return Kind == Union; }
317 assert(isUnion() && "Invalid accessor");
321 assert(isUnion() && "Invalid accessor");
376 assert(isUnion() && "Invalid accessor");
Decl.h     [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 211 if (D->isUnion()) {
525 assert(D->isUnion() && "Can't call LayoutUnion on a non-union record!");
799 assert(!D->isUnion() && "Can't call LayoutFields on a union!");
    [all...]
CGExprConstant.cpp 397 if (RD->isUnion() && ILE->getInitializedFieldInUnion() != *Field)
497 if (RD->isUnion() && Val.getUnionField() != *Field)
508 RD->isUnion() ? Val.getUnionValue() : Val.getStructField(FieldNo);
    [all...]
CGCall.cpp 426 if (RD->isUnion()) {
478 if (RD->isUnion()) {
    [all...]
CGDebugInfo.cpp 511 else if (RD->isUnion())
    [all...]
CGExprAgg.cpp     [all...]
TargetInfo.cpp     [all...]
CGClass.cpp     [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaInit.cpp 362 if (RType->getDecl()->isUnion() &&
385 if (RType->getDecl()->isUnion())
515 if (structDecl->isUnion())
    [all...]
SemaCast.cpp     [all...]
SemaDeclObjC.cpp     [all...]
SemaDeclAttr.cpp     [all...]
SemaExprCXX.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
Type.cpp 351 return RT->getDecl()->isUnion();
407 if (RT->getDecl()->isUnion())
413 if (!RT->getDecl()->isUnion())
    [all...]
ASTContext.cpp     [all...]
RecordLayoutBuilder.cpp 572 unsigned IsUnion : 1;
649 Packed(false), IsUnion(false), IsMac68kAlign(false), IsMsStruct(false),
    [all...]
ASTImporter.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 311 if (Record->isUnion())
    [all...]

Completed in 126 milliseconds

1 2