HomeSort by relevance Sort by last modified time
    Searched defs:isLiteral (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/Lex/
Token.h 55 /// Literals: isLiteral() returns true.
95 /// isLiteral - Return true if this is a "literal", like a numeric
97 bool isLiteral() const {
170 if (isLiteral()) return 0;
193 assert(isLiteral() && "Cannot get literal data of non-literal");
197 assert(isLiteral() && "Cannot set literal data of non-literal");
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 86 bool IsLiteral : 1; // Indicate whether this is a literal value or not.
97 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
99 : Val(Data), IsLiteral(false), Enc(E) {}
101 bool isLiteral() const { return IsLiteral; }
102 bool isEncoding() const { return !IsLiteral; }
105 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
  /external/llvm/include/llvm/
DerivedTypes.h 244 /// isLiteral - Return true if this type is uniqued by structural
246 bool isLiteral() const { return (getSubclassData() & SCDB_IsLiteral) != 0; }
  /external/clang/include/clang/AST/
DeclCXX.h     [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 48 milliseconds