Home
last modified time | relevance | path

Searched refs:getVersion (Results 1 - 25 of 104) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFCompileUnit.cpp20 << " version = " << format("0x%04x", getVersion()); in dump()
21 if (getVersion() >= 5) in dump()
26 if (getVersion() >= 5 && getUnitType() != dwarf::DW_UT_compile) in dump()
H A DDWARFTypeUnit.cpp33 << " version = " << format("0x%04x", getVersion()); in dump()
34 if (getVersion() >= 5) in dump()
H A DDWARFDebugLine.cpp69 uint16_t DwarfVersion = getVersion(); in hasFileAtIndex()
79 uint16_t DwarfVersion = getVersion(); in getFileNameEntry()
104 << format(" version: %u\n", getVersion()); in dump()
105 if (getVersion() >= 5) in dump()
110 << format(getVersion() >= 4 ? "max_ops_per_inst: %u\n" : "", MaxOpsPerInst) in dump()
122 uint32_t DirBase = getVersion() >= 5 ? 0 : 1; in dump()
132 uint32_t FileBase = getVersion() >= 5 ? 0 : 1; in dump()
318 if (getVersion() < 2) in parse()
322 PrologueOffset, getVersion()); in parse()
324 if (getVersion() > in parse()
[all...]
H A DDWARFUnit.cpp191 Header.getVersion() >= 5 in DWARFUnit()
197 std::make_unique<DWARFDebugLoclists>(DWARFData, Header.getVersion()); in DWARFUnit()
199 } else if (Header.getVersion() >= 5) { in DWARFUnit()
204 Header.getVersion()); in DWARFUnit()
322 bool VersionOK = DWARFContext::isSupportedVersion(getVersion()); in extract()
329 Context.setMaxVersionIfGreater(getVersion()); in extract()
479 if (IsDWO || getVersion() >= 5) { in tryExtractDIEsIfNeeded()
494 if (getVersion() >= 5) { in tryExtractDIEsIfNeeded()
565 auto DWOFileName = getVersion() >= 5 in parseDWO()
591 if (getVersion() > in parseDWO()
[all...]
/third_party/python/Mac/BuildScript/
H A Dbuild-installer.py88 def getVersion(): function
96 return tuple([int(n) for n in getVersion().split('.', 2)])
283 '--libdir=/Library/Frameworks/Python.framework/Versions/%s/lib'%(getVersion(),),
289 "TCL_LIBRARY": shellQuote('/Library/Frameworks/Python.framework/Versions/%s/lib/tcl8.6'%(getVersion())),
302 '--libdir=/Library/Frameworks/Python.framework/Versions/%s/lib'%(getVersion(),),
307 "TCL_LIBRARY": shellQuote('/Library/Frameworks/Python.framework/Versions/%s/lib/tcl8.6'%(getVersion())),
308 "TK_LIBRARY": shellQuote('/Library/Frameworks/Python.framework/Versions/%s/lib/tk8.6'%(getVersion())),
347 "--libdir=/Library/Frameworks/Python.framework/Versions/%s/lib"%(getVersion(),),
357 getVersion(),
694 FW_VERSION_PREFIX = FW_PREFIX[:] + ["Versions", getVersion()]
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCLDevice.h42 cl_version getVersion() const;
91 inline cl_version Device::getVersion() const in getVersion() function in cl::Device
H A DCLPlatform.h62 cl_version getVersion() const;
110 inline cl_version Platform::getVersion() const in getVersion() function in cl::Platform
/third_party/skia/tools/
H A Dskpinfo.cpp57 SkDebugf("Unsupported version %d\n", info.getVersion()); in main()
62 SkDebugf("Version: %d\n", info.getVersion()); in main()
/third_party/vk-gl-cts/framework/platform/osx/
H A DtcuOSXPlatform.cpp149 static glu::ApiType getVersion (const glw::Functions& gl) in getVersion() function
201 const glu::ApiType actualApi = getVersion(m_functions); in CGLRenderContext()
/third_party/skia/src/core/
H A DSkPicture.cpp70 if (info.getVersion() < SkPicturePriv::kMin_Version || in IsValidPictInfo()
71 info.getVersion() > SkPicturePriv::kCurrent_Version) { in IsValidPictInfo()
303 buffer.writeUInt(info.getVersion()); in Flatten()
H A DSkRecordedDrawable.cpp74 info.setVersion(buffer.getVersion()); in CreateProc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h79 uint16_t getVersion() const { return FormParams.Version; } in getVersion() function in llvm::DWARFUnitHeader
182 uint8_t getVersion() const { return FormParams.Version; } in getVersion() function
283 uint16_t getVersion() const { return Header.getVersion(); } in getVersion() function in llvm::DWARFUnit
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h360 virtual uint64_t getVersion() const = 0;
401 uint64_t getVersion() const override { return GET_VERSION(FormatVersion); }
459 uint64_t getVersion() const { return Index->getVersion(); } in getVersion() function in llvm::IndexedInstrProf::IndexedInstrProfReader
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DVersionGLSL.h60 int getVersion() const { return mVersion; } in getVersion() function in sh::TVersionGLSL
/third_party/vk-gl-cts/framework/egl/
H A DegluGLUtil.cpp145 if (!hasExtension(egl, display, "EGL_EXT_create_context_robustness") && (getVersion(egl, display) < Version(1, 5))) in createGLContext()
179 if (getVersion(egl, display) >= Version(1, 5) || glu::isContextTypeGLCore(contextType) || glu::isContextTypeGLCompatibility(contextType)) in createGLContext()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
H A DInfoStream.h41 PdbRaw_ImplVer getVersion() const;
/third_party/vk-gl-cts/scripts/
H A Dmake_release.py86 return self.releaseConfig.getVersion()
90 return zlib.crc32(self.releaseConfig.getName() + self.releaseConfig.getVersion()) & 0xffffffff
286 def getVersion (self): member in ReleaseConfig
333 releaseName = getReleaseFileName(releaseConfig.getName(), releaseConfig.getVersion())
/third_party/icu/icu4c/source/common/unicode/
H A Dresbund.h420 * use getVersion, as this method is going to be deprecated.
424 * @see getVersion
425 * @deprecated ICU 2.8 Use getVersion instead.
439 getVersion(UVersionInfo versionInfo) const;
/third_party/node/deps/icu-small/source/common/unicode/
H A Dresbund.h420 * use getVersion, as this method is going to be deprecated.
424 * @see getVersion
425 * @deprecated ICU 2.8 Use getVersion instead.
439 getVersion(UVersionInfo versionInfo) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DWin64EH.h101 uint8_t getVersion() const { in getVersion() function
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dresbund.h420 * use getVersion, as this method is going to be deprecated.
424 * @see getVersion
425 * @deprecated ICU 2.8 Use getVersion instead.
439 getVersion(UVersionInfo versionInfo) const;
/third_party/protobuf/php/src/Google/Protobuf/
H A DApi.php233 public function getVersion() function
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.hpp67 glu::GLSLVersion getVersion (void) const { return m_version; } in getVersion() function in deqp::gles31::Functional::ProgramInterfaceDefinition::Shader
/third_party/icu/icu4c/source/common/
H A Dutrie_swap.cpp303 getVersion(const void *data, int32_t length, UBool anyEndianOk) { in getVersion() function
337 switch(getVersion(inData, length, true)) { in utrie_swapAnyVersion()
/third_party/node/deps/icu-small/source/common/
H A Dutrie_swap.cpp303 getVersion(const void *data, int32_t length, UBool anyEndianOk) { in getVersion() function
337 switch(getVersion(inData, length, true)) { in utrie_swapAnyVersion()

Completed in 26 milliseconds

12345