Searched defs:Unsigned (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/Index/
H A Dindex-templates.cpp42 typedef unsigned Unsigned; typedef
44 template<typename T, Unsigned Value>
54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>());
55 Z4().getAs<Unsigned>();
148 // CHECK-LOAD: index-templates.cpp:42:18: TypedefDecl=Unsigned:42:18 (Definition) Extent=[42:1 - 42:26]
152 // CHECK-LOAD: index-templates.cpp:44:22: TypeRef=Unsigned:42:18 Extent=[44:22 - 44:30]
161 // CHECK-LOAD: index-templates.cpp:54:5: TypeRef=Unsigned:42:18 Extent=[54:5 - 54:13]
166 // CHECK-LOAD: index-templates.cpp:55:14: TypeRef=Unsigned:42:18 Extent=[55:14 - 55:22]
/external/chromium/base/
H A Dstring_util.h547 typedef T Unsigned; typedef in struct:ToUnsigned
552 typedef unsigned char Unsigned; typedef in struct:ToUnsigned
556 typedef unsigned char Unsigned; typedef in struct:ToUnsigned
561 typedef unsigned short Unsigned; typedef in struct:ToUnsigned
563 typedef uint32 Unsigned;
568 typedef unsigned short Unsigned; typedef in struct:ToUnsigned
/external/llvm/include/llvm/ADT/
H A DAPSInt.h241 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument
242 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
243 : APInt::getSignedMaxValue(numBits), Unsigned);
248 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument
249 return APSInt(Unsigned ? APInt::getMinValue(numBits)
250 : APInt::getSignedMinValue(numBits), Unsigned);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp507 bool Unsigned) {
517 form = Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata;
519 if (Unsigned)
506 addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned) argument
/external/clang/lib/AST/
H A DASTContext.cpp6141 bool Signed = false, Unsigned = false; local
6153 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
6159 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
6160 Unsigned = true;
6175 assert(HowLong == 0 && !Signed && !Unsigned &&
6180 assert(HowLong == 0 && !Signed && !Unsigned &&
6185 assert(HowLong < 2 && !Signed && !Unsigned &&
6194 if (Unsigned)
6201 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
6203 Type = Unsigned
[all...]

Completed in 184 milliseconds