HomeSort by: relevance | last modified time | path
    Searched defs:isArray (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Descriptor.h 80 const bool IsArray = false;
144 bool isPrimitiveArray() const { return IsArray && !ElemDesc; }
151 bool isPrimitive() const { return !IsArray && !ElemRecord; }
154 bool isArray() const { return IsArray; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackDocument.h 71 bool isArray() const { return getKind() == Type::Array; }
72 bool isScalar() const { return !isMap() && !isArray(); }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 400 bool isArray() const { return Kind == Array; }
503 assert(isArray() && "Invalid accessor");
514 assert(isArray() && "Invalid accessor");
522 assert(isArray() && "Invalid accessor");
526 assert(isArray() && "Invalid accessor");
ExprCXX.h 2165 // Present if and ony if isArray().
2177 unsigned initExprOffset() const { return arraySizeOffset() + isArray(); }
2183 return isArray() + hasInitializer() + getNumPlacementArgs();
2213 CXXNewExpr(EmptyShell Empty, bool IsArray, unsigned NumPlacementArgs,
2228 static CXXNewExpr *CreateEmpty(const ASTContext &Ctx, bool IsArray,
2262 bool isArray() const { return CXXNewExprBits.IsArray; }
2265 if (!isArray())
2270 if (!isArray())

Completed in 34 milliseconds