HomeSort by relevance Sort by last modified time
    Searched defs:Contents (Results 1 - 25 of 38) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfMarkupAnnotationsDictionary_autogen.cpp 23 SkString SkPdfMarkupAnnotationsDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfRubberStampAnnotationDictionary_autogen.cpp 23 SkString SkPdfRubberStampAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfFileAttachmentAnnotationDictionary_autogen.cpp 35 SkString SkPdfFileAttachmentAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Contents", "");
44 return get("Contents", "") != NULL;
SkPdfFreeTextAnnotationDictionary_autogen.cpp 23 SkString SkPdfFreeTextAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfInkAnnotationDictionary_autogen.cpp 23 SkString SkPdfInkAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfPopUpAnnotationDictionary_autogen.cpp 23 SkString SkPdfPopUpAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfSoundAnnotationDictionary_autogen.cpp 35 SkString SkPdfSoundAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Contents", "");
44 return get("Contents", "") != NULL;
SkPdfSquareOrCircleAnnotation_autogen.cpp 23 SkString SkPdfSquareOrCircleAnnotation::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfTextAnnotationDictionary_autogen.cpp 23 SkString SkPdfTextAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfWidgetAnnotationDictionary_autogen.cpp 23 SkString SkPdfWidgetAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfALinkAnnotationDictionary_autogen.cpp 23 SkString SkPdfALinkAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfLineAnnotationDictionary_autogen.cpp 23 SkString SkPdfLineAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfMovieAnnotationDictionary_autogen.cpp 35 SkString SkPdfMovieAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Contents", "");
44 return get("Contents", "") != NULL;
SkPdfTrapNetworkAnnotationDictionary_autogen.cpp 23 SkString SkPdfTrapNetworkAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Contents", "");
32 return get("Contents", "") != NULL;
SkPdfSignatureDictionary_autogen.cpp 59 SkString SkPdfSignatureDictionary::Contents(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Contents", "");
68 return get("Contents", "") != NULL;
SkPdfAnnotationDictionary_autogen.cpp 35 SkString SkPdfAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Contents", "");
44 return get("Contents", "") != NULL;
  /external/llvm/unittests/Support/
SpecialCaseListTest.cpp 35 std::string makeSpecialCaseListFile(StringRef Contents) {
40 OF << Contents;
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 288 ArrayRef<uint8_t> Contents;
289 if (error(Ctx.COFF.getSectionContents(XData, Contents)) || Contents.empty())
293 if (Offset > Contents.size())
296 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset);
310 ArrayRef<uint8_t> Contents;
311 if (error(Ctx.COFF.getSectionContents(PData, Contents)) || Contents.empty())
315 reinterpret_cast<const RuntimeFunction *>(Contents.data());
316 const size_t Count = Contents.size() / sizeof(RuntimeFunction)
    [all...]
ARMWinEHPrinter.cpp 519 ArrayRef<uint8_t> Contents;
520 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
526 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
693 ArrayRef<uint8_t> Contents) {
696 reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
707 ArrayRef<uint8_t> Contents;
708 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
711 if (Contents.size() % PDataEntrySize) {
716 for (unsigned EI = 0, EE = Contents.size() / PDataEntrySize; EI < EE; ++EI)
717 if (!dumpProcedureDataEntry(COFF, Section, EI, Contents))
    [all...]
ARMEHABIPrinter.h 395 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(EHT);
396 if (!Contents)
423 *reinterpret_cast<const support::ulittle32_t *>(Contents->data() + TableEntryOffset);
433 PrintOpcodes(Contents->data() + TableEntryOffset, 3, 1);
438 PrintOpcodes(Contents->data() + TableEntryOffset, 2 + 4 * AdditionalWords,
462 ErrorOr<ArrayRef<uint8_t> > Contents = ELF->getSectionContents(IT);
463 if (!Contents)
477 reinterpret_cast<const support::ulittle32_t *>(Contents->data());
510 PrintOpcodes(Contents->data() + Entry * IndexTableEntrySize + 4, 3, 1);
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 330 std::vector<std::string> Contents;
333 Contents.push_back(I->getName());
336 // Check contents, which may be in any order
337 EXPECT_EQ(4U, Contents.size());
339 for (const std::string &Name : Contents) {
387 const char *Contents[] = {"/file2", "/file1"};
388 checkContents(O->dir_begin("/", EC), makeStringRefVector(Contents));
397 const char *Contents[] = {"/dir2", "/file2", "/dir1", "/file1"};
398 checkContents(O->dir_begin("/", EC), makeStringRefVector(Contents));
422 const char *Contents[] = {"/dir", "/dir/file2", "/file1"}
    [all...]
  /external/clang/unittests/libclang/
LibclangTest.cpp 42 const char *Contents;
45 TestVFO(const char *Contents) : Contents(Contents) {
60 if (Contents) {
65 EXPECT_STREQ(Contents, BufStr.c_str());
74 const char *contents = local
81 " 'contents': [\n"
85 " 'external-contents': \"/real/foo.h\"\n"
91 TestVFO T(contents);
96 const char *contents = local
124 const char *contents = local
176 const char *contents = local
200 const char *contents = local
252 const char *contents = local
298 const char *contents = local
320 const char *contents = local
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 198 ArrayRef<uint8_t> &Contents, uint64_t &Addr) {
205 if (std::error_code EC = Obj->getSectionContents(Section, Contents))
394 ArrayRef<uint8_t> Contents;
395 if (error(Obj->getSectionContents(Pdata, Contents)))
397 if (Contents.empty())
400 RFStart = reinterpret_cast<const RuntimeFunction *>(Contents.data());
401 NumRFs = Contents.size() / sizeof(RuntimeFunction);
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 139 /// SmallContents - This really should be part of the Contents union, but
145 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
152 /// Contents union - This contains the payload for the various operand types.
181 } Contents;
409 return Contents.ImmVal;
414 return Contents.CI;
419 return Contents.CFP;
424 return Contents.MBB;
430 return Contents.OffsetedInfo.Val.Index;
435 return Contents.OffsetedInfo.Val.GV
    [all...]

Completed in 412 milliseconds

1 2