Searched defs:Raw (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/net/tools/testserver/
H A Dasn1.py61 class Raw(object): class in inherits:object
62 '''Raw contains raw DER encoded bytes that are used verbatim'''
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_gasp.h55 struct Raw { struct in union:SkOTTableGridAndScanProcedure::GaspRange::behavior
H A DSkOTTable_OS_2_V0.h78 struct Raw { struct in union:SkOTTableOS2_V0::Type
123 struct Raw { struct in union:SkOTTableOS2_V0::Selection
H A DSkOTTable_OS_2_VA.h78 struct Raw { struct in union:SkOTTableOS2_VA::Type
123 struct Raw { struct in union:SkOTTableOS2_VA::Selection
H A DSkOTTable_head.h54 struct Raw { struct in union:SkOTTableHead::Flags
105 struct Raw { struct in union:SkOTTableHead::MacStyle
H A DSkOTTable_EBLC.h79 struct Raw { struct in union:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable::Flags
H A DSkOTTable_glyf.h94 struct Raw { struct in union:SkOTTableGlyphData::Simple::Flags
134 struct Raw { struct in union:SkOTTableGlyphData::Composite::Component::Flags
H A DSkOTTable_OS_2_V1.h76 struct Raw { struct in union:SkOTTableOS2_V1::Type
262 struct Raw { struct in union:SkOTTableOS2_V1::UnicodeRange
366 struct Raw { struct in union:SkOTTableOS2_V1::Selection
470 struct Raw { struct in union:SkOTTableOS2_V1::CodePageRange
H A DSkOTTable_OS_2_V2.h75 struct Raw { struct in union:SkOTTableOS2_V2::Type
263 struct Raw { struct in union:SkOTTableOS2_V2::UnicodeRange
381 struct Raw { struct in union:SkOTTableOS2_V2::Selection
485 struct Raw { struct in union:SkOTTableOS2_V2::CodePageRange
H A DSkOTTable_OS_2_V3.h76 struct Raw { struct in union:SkOTTableOS2_V3::Type
264 struct Raw { struct in union:SkOTTableOS2_V3::UnicodeRange
391 struct Raw { struct in union:SkOTTableOS2_V3::Selection
495 struct Raw { struct in union:SkOTTableOS2_V3::CodePageRange
H A DSkOTTable_OS_2_V4.h76 struct Raw { struct in union:SkOTTableOS2_V4::Type
264 struct Raw { struct in union:SkOTTableOS2_V4::UnicodeRange
423 struct Raw { struct in union:SkOTTableOS2_V4::Selection
530 struct Raw { struct in union:SkOTTableOS2_V4::CodePageRange
/external/skia/src/sfnt/
H A DSkOTTable_gasp.h55 struct Raw { struct in union:SkOTTableGridAndScanProcedure::GaspRange::behavior
H A DSkOTTable_OS_2_V0.h78 struct Raw { struct in union:SkOTTableOS2_V0::Type
123 struct Raw { struct in union:SkOTTableOS2_V0::Selection
H A DSkOTTable_OS_2_VA.h78 struct Raw { struct in union:SkOTTableOS2_VA::Type
123 struct Raw { struct in union:SkOTTableOS2_VA::Selection
H A DSkOTTable_head.h54 struct Raw { struct in union:SkOTTableHead::Flags
105 struct Raw { struct in union:SkOTTableHead::MacStyle
H A DSkOTTable_EBLC.h79 struct Raw { struct in union:SkOTTableEmbeddedBitmapLocation::BitmapSizeTable::Flags
H A DSkOTTable_glyf.h94 struct Raw { struct in union:SkOTTableGlyphData::Simple::Flags
134 struct Raw { struct in union:SkOTTableGlyphData::Composite::Component::Flags
H A DSkOTTable_OS_2_V1.h76 struct Raw { struct in union:SkOTTableOS2_V1::Type
262 struct Raw { struct in union:SkOTTableOS2_V1::UnicodeRange
366 struct Raw { struct in union:SkOTTableOS2_V1::Selection
470 struct Raw { struct in union:SkOTTableOS2_V1::CodePageRange
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLCipherRSA.java352 public static class Raw extends OpenSSLCipherRSA { class in class:OpenSSLCipherRSA
353 public Raw() { method in class:OpenSSLCipherRSA.Raw
/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.cpp334 unsigned Raw; local
335 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
336 return SourceLocation::getFromRawEncoding(Raw);
425 unsigned Raw = Loc.getRawEncoding(); local
426 Append(reinterpret_cast<char *>(&Raw),
427 reinterpret_cast<char *>(&Raw) + sizeof(unsigned),
/external/llvm/lib/IR/
H A DAttributes.cpp499 uint64_t AttributeSetImpl::Raw(unsigned Index) const { function in class:AttributeSetImpl
933 uint64_t AttributeSet::Raw(unsigned Index) const { function in class:AttributeSet
935 return pImpl ? pImpl->Raw(Index) : 0;
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResource.h67 Raw, enumerator in enum:blink::Resource::Type
173 || type() == Raw
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp670 ArrayRef<char> Raw = getSectionRawName(Sec); local
671 Result = parseSegmentOrSectionName(Raw.data());
1663 ArrayRef<char> Raw = getSectionRawFinalSegmentName(Sec);
1664 return parseSegmentOrSectionName(Raw.data());
/external/llvm/lib/Support/
H A DYAMLParser.cpp1571 StringRef Raw = getRawTag(); local
1572 if (!Raw.empty() && Raw != "!") {
1574 if (Raw.find_last_of('!') == 0) {
1576 Ret += Raw.substr(1);
1578 } else if (Raw.startswith("!!")) {
1580 Ret += Raw.substr(2);
1583 StringRef TagHandle = Raw.substr(0, Raw.find_last_of('!') + 1);
1594 Ret += Raw
[all...]

Completed in 1660 milliseconds

12