Searched refs:Raw (Results 1 - 13 of 13) sorted by relevance

/external/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp42 static void emitString(llvm::raw_svector_ostream &OS, const StringRef Raw) { argument
43 for (StringRef::iterator I = Raw.begin(), E = Raw.end(); I != E; ++I) {
H A DASTUnit.cpp2510 unsigned Raw = L.getRawEncoding(); local
2512 L = SourceLocation::getFromRawEncoding((Raw & MacroBit) |
2513 ((Raw & ~MacroBit) + Remap.find(Raw & ~MacroBit)->second));
/external/llvm/include/llvm/
H A DAttributes.h76 uint64_t Raw() const { return Bits; } function in class:llvm::Attributes
197 return 1U << ((Align.Raw() >> 16) - 1);
219 return 1U << ((StackAlign.Raw() >> 26) - 1);
238 uint64_t EncodedAttrs = Attrs.Raw() & 0xffff;
241 (((Attrs & Attribute::Alignment).Raw()-1) >> 16);
242 EncodedAttrs |= (Attrs.Raw() & (0xfffull << 21)) << 11;
/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals.cpp7 Integer, Floating, Raw, Template member in class:LitKind
19 constexpr LitKind operator"" _kind2(const char *p) { return LitKind::Raw; }
38 static_assert(4e6_kind2 == LitKind::Raw, "");
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp335 unsigned Raw; local
336 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
337 return SourceLocation::getFromRawEncoding(Raw);
426 unsigned Raw = Loc.getRawEncoding(); local
427 Append(reinterpret_cast<char *>(&Raw),
428 reinterpret_cast<char *>(&Raw) + sizeof(unsigned),
H A DASTContext.cpp295 const RawCommentAndCacheFlags &Raw = Pos->second; local
296 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
298 *OriginalDecl = Raw.getOriginalDecl();
299 return Raw.getRaw();
313 const RawCommentAndCacheFlags &Raw = Pos->second; local
314 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
315 RC = Raw.getRaw();
316 OriginalDeclForRC = Raw.getOriginalDecl();
322 RawCommentAndCacheFlags Raw; local
324 Raw
342 RawCommentAndCacheFlags Raw; local
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Dmirc.php140 GESHI_SEARCH => '((on|ctcp) (!|@|&)?(\d|\*):(Action|Active|Agent|AppActive|Ban|Chat|Close|Connect|Ctcp|CtcpReply|DccServer|DeHelp|DeOp|DeVoice|Dialog|Dns|Error|Exit|FileRcvd|FileSent|GetFail|Help|Hotlink|Input|Invite|Join|KeyDown|KeyUp|Kick|Load|Logon|MidiEnd|Mode|Mp3End|Nick|NoSound|Notice|Notify|Op|Open|Part|Ping|Pong|PlayEnd|Quit|Raw|RawMode|SendFail|Serv|ServerMode|ServerOp|Signal|Snotice|Start|Text|Topic|UnBan|Unload|Unotify|User|Mode|Voice|Wallops|WaveEnd):)',
149 //Raw protocol handling
/external/oprofile/events/mips/25K/
H A Devents36 event:0x12 counters:0,1 um:zero minimum:500 name:JTLB_MISSES_IFETCH : Raw count of Joint-TLB misses for instruction fetch
37 event:0x13 counters:0,1 um:zero minimum:500 name:JTLB_MISSES_LOADS_STORES : Raw count of Joint-TLB misses for loads/stores
/external/llvm/lib/VMCore/
H A DAttributes.cpp157 ID.AddInteger(Attrs[i].Attrs.Raw());
H A DCore.cpp1386 return (LLVMAttribute)attr.Raw();
1459 return (LLVMAttribute)attr.Raw();
/external/v8/tools/
H A Dgrokdump.py99 class Raw(ctypes.Structure): class in function:Descriptor._GetCtype
105 for field, _ in Raw._fields_) + "}"
106 return Raw
/external/clang/include/clang/Serialization/
H A DASTReader.h1379 SourceLocation ReadSourceLocation(ModuleFile &ModuleFile, unsigned Raw) const {
1380 SourceLocation Loc = SourceLocation::getFromRawEncoding(Raw);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp479 Record[i+1] = ReconstitutedAttr.Raw();

Completed in 1045 milliseconds