Searched defs:VAL (Results 1 - 5 of 5) sorted by relevance
/external/clang/test/CodeGenCXX/ |
H A D | debug-info-byval.cpp | 17 class VAL { class 25 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
|
/external/llvm/include/llvm/ADT/ |
H A D | APInt.h | 79 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal. 81 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:llvm::APInt::__anon9005 144 VAL &= mask; 153 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; 230 : BitWidth(numBits), VAL(0) { 233 VAL = val; 269 : BitWidth(that.BitWidth), VAL(0) { 272 VAL = that.VAL; 279 APInt(APInt&& that) : BitWidth(that.BitWidth), VAL(tha [all...] |
/external/clang/include/clang/AST/ |
H A D | TemplateBase.h | 80 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::TemplateArgument::__anon3309::__anon3310::__anon3311 249 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
|
H A D | Expr.h | 1128 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member in union:clang::APNumericStorage::__anon3277 1139 APNumericStorage() : VAL(0), BitWidth(0) { } 1146 return llvm::APInt(BitWidth, VAL);
|
/external/webkit/Source/WebCore/css/ |
H A D | CSSParser.cpp | 5014 enum { ID, VAL } state = ID; enumerator in enum:WebCore::__anon15134 5025 state = VAL; 5030 case VAL: {
|
Completed in 242 milliseconds