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

  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 7 Integer, Floating, Raw, Template
19 constexpr LitKind operator"" _kind2(const char *p) { return LitKind::Raw; }
38 static_assert(4e6_kind2 == LitKind::Raw, "");
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 335 unsigned Raw;
336 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
337 return SourceLocation::getFromRawEncoding(Raw);
426 unsigned Raw = Loc.getRawEncoding();
427 Append(reinterpret_cast<char *>(&Raw),
428 reinterpret_cast<char *>(&Raw) + sizeof(unsigned),
ASTContext.cpp 295 const RawCommentAndCacheFlags &Raw = Pos->second;
296 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
298 *OriginalDecl = Raw.getOriginalDecl();
299 return Raw.getRaw();
313 const RawCommentAndCacheFlags &Raw = Pos->second;
314 if (Raw.getKind() != RawCommentAndCacheFlags::NoCommentInDecl) {
315 RC = Raw.getRaw();
316 OriginalDeclForRC = Raw.getOriginalDecl();
322 RawCommentAndCacheFlags Raw;
324 Raw.setRaw(RC)
    [all...]
  /external/llvm/include/llvm/
Attributes.h 76 uint64_t Raw() const { return Bits; }
91 // and also raw uint64_t objects with _i suffix to be used below for other
197 return 1U << ((Align.Raw() >> 16) - 1);
219 return 1U << ((StackAlign.Raw() >> 26) - 1);
234 // Store the alignment in the bitcode as a 16-bit raw value instead of a
238 uint64_t EncodedAttrs = Attrs.Raw() & 0xffff;
241 (((Attrs & Attribute::Alignment).Raw()-1) >> 16);
242 EncodedAttrs |= (Attrs.Raw() & (0xfffull << 21)) << 11;
251 // The alignment is stored as a 16-bit raw value from bits 31--16.
374 /// getRawPointer - Return a raw pointer that uniquely identifies thi
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLCipherRSA.java 351 public static class Raw extends OpenSSLCipherRSA {
352 public Raw() {
  /external/v8/tools/
grokdump.py 99 class Raw(ctypes.Structure):
105 for field, _ in Raw._fields_) + "}"
106 return Raw
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]

Completed in 143 milliseconds