/external/clang/lib/Sema/ |
D | AttributeList.cpp | 175 static const ParsedAttrInfo &getInfo(const AttributeList &A) { in getInfo() function 180 return getInfo(*this).NumArgs; in getMinArgs() 184 return getMinArgs() + getInfo(*this).OptArgs; in getMaxArgs() 188 return getInfo(*this).HasCustomParsing; in hasCustomParsing() 192 return getInfo(*this).DiagAppertainsToDecl(S, *this, D); in diagnoseAppertainsTo() 196 return getInfo(*this).DiagLangOpts(S, *this); in diagnoseLangOpts() 200 return getInfo(*this).IsTargetSpecific; in isTargetSpecificAttr() 204 return getInfo(*this).IsType; in isTypeAttr() 208 return getInfo(*this).ExistsInTarget(Target); in existsInTarget() 212 return getInfo(*this).IsKnownToGCC; in isKnownToGCC() [all …]
|
/external/llvm/include/llvm/Option/ |
D | OptTable.h | 69 const Info &getInfo(OptSpecifier Opt) const { in getInfo() function 92 return getInfo(id).Name; in getOptionName() 97 return getInfo(id).Kind; in getOptionKind() 102 return getInfo(id).GroupID; in getOptionGroupID() 107 return getInfo(id).HelpText; in getOptionHelpText() 113 return getInfo(id).MetaVar; in getOptionMetaVar()
|
/external/skia/src/android/ |
D | SkBitmapRegionCanvas.cpp | 14 : INHERITED(decoder->getInfo().width(), decoder->getInfo().height()) in SkBitmapRegionCanvas() 33 SkAlphaType dstAlphaType = fDecoder->getInfo().alphaType(); in decodeRegion() 55 SubsetType type = adjust_subset_rect(fDecoder->getInfo().dimensions(), &subset, &outX, &outY); in decodeRegion() 136 SkImageInfo info = SkImageInfo::Make(0, 0, colorType, fDecoder->getInfo().alphaType(), in conversionSupported() 137 fDecoder->getInfo().profileType()); in conversionSupported() 138 return conversion_possible(info, fDecoder->getInfo()); in conversionSupported()
|
D | SkBitmapRegionCodec.cpp | 15 : INHERITED(codec->getInfo().width(), codec->getInfo().height()) in SkBitmapRegionCodec() 40 SubsetType type = adjust_subset_rect(fCodec->getInfo().dimensions(), &subset, &outX, &outY); in decodeRegion() 149 SkImageInfo info = SkImageInfo::Make(0, 0, colorType, fCodec->getInfo().alphaType(), in conversionSupported() 150 fCodec->getInfo().profileType()); in conversionSupported() 151 return conversion_possible(info, fCodec->getInfo()); in conversionSupported()
|
/external/clang/lib/Driver/ |
D | Types.cpp | 34 static const TypeInfo &getInfo(unsigned id) { in getInfo() function 40 return getInfo(Id).Name; in getTypeName() 44 return getInfo(Id).PreprocessedType; in getPreprocessedType() 54 return getInfo(Id).TempSuffix; in getTypeTempSuffix() 58 return strchr(getInfo(Id).Flags, 'a'); in onlyAssembleType() 62 return strchr(getInfo(Id).Flags, 'p'); in onlyPrecompileType() 66 return strchr(getInfo(Id).Flags, 'u'); in canTypeBeUserSpecified() 70 return strchr(getInfo(Id).Flags, 'A'); in appendSuffixForType() 214 strcmp(Name, getInfo(Id).Name) == 0) in lookupTypeForTypeSpecifier()
|
/external/deqp/framework/opengl/ |
D | gluShaderProgram.hpp | 92 const ShaderInfo& getInfo (void) const { return m_info; } in getInfo() function in glu::Shader 94 glu::ShaderType getType (void) const { return getInfo().type; } in getType() 95 bool getCompileStatus (void) const { return getInfo().compileOk; } in getCompileStatus() 96 const std::string& getSource (void) const { return getInfo().source; } in getSource() 97 const std::string& getInfoLog (void) const { return getInfo().infoLog; } in getInfoLog() 130 const ProgramInfo& getInfo (void) const { return m_info; } in getInfo() function in glu::Program 132 bool getLinkStatus (void) const { return getInfo().linkOk; } in getLinkStatus() 133 const std::string& getInfoLog (void) const { return getInfo().infoLog; } in getInfoLog() 195 …erType shaderType, int shaderNdx = 0) const { return m_shaders[shaderType][shaderNdx]->getInfo(); } in getShaderInfo() 196 const ProgramInfo& getProgramInfo (void) const { return m_program.getInfo(); } in getProgramInfo()
|
/external/skia/src/core/ |
D | SkPictureImageGenerator.cpp | 68 if (info != getInfo() || ctable || ctableCount) { in onGetPixels() 87 const int w = this->getInfo().width(); in onComputeScaledDimensions() 88 const int h = this->getInfo().height(); in onComputeScaledDimensions() 105 const SkScalar scaleX = SkIntToScalar(w) / this->getInfo().width(); in onGenerateScaledPixels() 106 const SkScalar scaleY = SkIntToScalar(h) / this->getInfo().height(); in onGenerateScaledPixels() 135 const SkImageInfo& info = this->getInfo(); in onGenerateTexture()
|
/external/skia/src/codec/ |
D | SkIcoCodec.cpp | 164 SkImageInfo info = codecs->operator[](i)->getInfo(); in NewFromStream() 171 SkImageInfo info = codecs->operator[](maxIndex)->getInfo(); in NewFromStream() 196 int origWidth = this->getInfo().width(); in onGetScaledDimensions() 197 int origHeight = this->getInfo().height(); in onGetScaledDimensions() 203 int width = fEmbeddedCodecs->operator[](i)->getInfo().width(); in onGetScaledDimensions() 204 int height = fEmbeddedCodecs->operator[](i)->getInfo().height(); in onGetScaledDimensions() 213 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions(); in onGetScaledDimensions() 221 if (fEmbeddedCodecs->operator[](i)->getInfo().dimensions() == requestedSize) { in chooseCodec()
|
D | SkAndroidCodec.cpp | 21 : fInfo(codec->getInfo()) in SkAndroidCodec() 74 SkColorType suggestedColorType = this->getInfo().colorType(); in computeOutputColorType() 94 if (kOpaque_SkAlphaType == this->getInfo().alphaType()) { in computeOutputColorType() 113 if (kOpaque_SkAlphaType == this->getInfo().alphaType()) { in computeOutputAlphaType()
|
D | SkWebpCodec.cpp | 109 SkISize dim = this->getInfo().dimensions(); in onGetScaledDimensions() 118 const SkImageInfo& info = this->getInfo(); in onDimensionsSupported() 147 SkIRect dimensions = SkIRect::MakeSize(this->getInfo().dimensions()); in onGetValidSubset() 163 if (!webp_conversion_possible(dstInfo, this->getInfo())) { in onGetPixels() 177 SkIRect bounds = SkIRect::MakeSize(this->getInfo().dimensions()); in onGetPixels()
|
D | SkBmpMaskCodec.cpp | 37 if (dstInfo.dimensions() != this->getInfo().dimensions()) { in onGetPixels() 42 if (!conversion_possible(dstInfo, this->getInfo())) { in onGetPixels() 63 fMaskSwizzler.reset(SkMaskSwizzler::CreateMaskSwizzler(dstInfo, this->getInfo(), fMasks, in prepareToDecode()
|
D | SkBmpStandardCodec.cpp | 31 , fAndMaskRowBytes(fInIco ? SkAlign4(compute_row_bytes(this->getInfo().width(), 1)) : 0) in SkBmpStandardCodec() 47 if (dstInfo.dimensions() != this->getInfo().dimensions()) { in onGetPixels() 51 if (!conversion_possible(dstInfo, this->getInfo())) { in onGetPixels() 255 const int remainingScanlines = this->getInfo().height() - startScanline - height; in decodeRows() 292 const int sampledWidth = get_scaled_dimension(this->getInfo().width(), sampleX); in decodeIcoMask()
|
/external/skia/tests/ |
D | CodecPriv.h | 25 if (kIndex_8_SkColorType == codec->getInfo().colorType()) { in decode_memory() 32 bm->allocPixels(codec->getInfo(), nullptr, colorTable.get()); in decode_memory() 33 const SkCodec::Result result = codec->getPixels(codec->getInfo(), bm->getPixels(), in decode_memory()
|
D | CodexTest.cpp | 183 const SkImageInfo info = codec->getInfo().makeColorType(kN32_SkColorType); in check() 432 const SkImageInfo info = codec->getInfo().makeColorType(kN32_SkColorType); in DEF_TEST() 558 SkImageInfo scaledInfo = codec->getInfo() in test_dimensions() 645 decoder->getInfo().makeColorType(kIndex_8_SkColorType), nullptr, colorStorage, &colorCount); in test_invalid_parameters() 655 decoder->getInfo().makeColorType(kIndex_8_SkColorType), nullptr, nullptr, nullptr); in test_invalid_parameters() 658 decoder->getInfo().makeColorType(kIndex_8_SkColorType)); in test_invalid_parameters() 794 decodedBm.setInfo(codec->getInfo()); in DEF_TEST() 796 SkCodec::Result result = codec->getPixels(codec->getInfo(), decodedBm.getPixels(), in DEF_TEST() 817 result = codec->getPixels(codec->getInfo(), decodedBm.getPixels(), decodedBm.rowBytes()); in DEF_TEST() 892 test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr); in DEF_TEST() [all …]
|
D | BadIcoTest.cpp | 40 bm.allocPixels(codec->getInfo()); in DEF_TEST() 41 codec->getPixels(codec->getInfo(), bm.getPixels(), in DEF_TEST()
|
/external/llvm/lib/Option/ |
D | OptTable.cpp | 95 unsigned Kind = getInfo(i + 1).Kind; in OptTable() 98 TheInputOptionID = getInfo(i + 1).ID; in OptTable() 101 TheUnknownOptionID = getInfo(i + 1).ID; in OptTable() 113 Option::OptionClass Kind = (Option::OptionClass) getInfo(i + 1).Kind; in OptTable() 121 if (!(getInfo(i) < getInfo(i + 1))) { in OptTable() 132 if (const char *const *P = getInfo(i).Prefixes) { in OptTable() 159 return Option(&getInfo(id), this); in getOption() 412 unsigned Flags = getInfo(Id).Flags; in PrintHelp()
|
/external/jmdns/src/javax/jmdns/impl/ |
D | ServiceEventImpl.java | 97 buf.append(this.getInfo()); in toString() 110 public ServiceInfo getInfo() { in getInfo() method in ServiceEventImpl 120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo()); in clone()
|
/external/fonttools/Lib/fontTools/misc/ |
D | homeResFile.py | 67 def getInfo(self): member in ParamBlock 80 self.getInfo() 85 self.getInfo()
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.h | 109 llvm::MDNode *getCurLoopID() const { return getInfo().getLoopID(); } in getCurLoopID() 113 return hasInfo() ? getInfo().getAttributes().IsParallel : false; in getCurLoopParallel() 148 const LoopInfo &getInfo() const { return Active.back(); } in getInfo() function
|
/external/mesa3d/include/CL/ |
D | cl.hpp | 959 getInfo(Func f, cl_uint name, T* param) in getInfo() function 984 getInfo(Func f, const Arg0& arg0, cl_uint name, T* param) in getInfo() function 993 getInfo(Func f, const Arg0& arg0, const Arg1& arg1, cl_uint name, T* param) in getInfo() function 1201 cl_int getInfo(cl_device_info name, T* param) const in getInfo() function in cl::Device 1204 detail::getInfo(&::clGetDeviceInfo, object_, name, param), in getInfo() 1210 getInfo(cl_int* err = NULL) const in getInfo() function in cl::Device 1214 cl_int result = getInfo(name, ¶m); in getInfo() 1277 cl_int getInfo(cl_platform_info name, STRING_CLASS* param) const in getInfo() function in cl::Platform 1280 detail::getInfo(&::clGetPlatformInfo, object_, name, param), in getInfo() 1286 getInfo(cl_int* err = NULL) const in getInfo() function in cl::Platform [all …]
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
D | TestDataModule.java | 25 public DataMap getInfo(); in getInfo() method 71 public DataMap getInfo(); in getInfo() method
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
D | TestDataModule.java | 26 public DataMap getInfo(); in getInfo() method 72 public DataMap getInfo(); in getInfo() method
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | ProviderTest.java | 60 String.valueOf(p.getInfo())); in testProvider() 78 assertEquals("Provider info", p.getInfo()); in testProviderStringdoubleString() 90 assertEquals("Provider for testing", p.getInfo()); in testGetInfo() 290 assertNull(myProvider.getInfo()); in testConstructor()
|
/external/icu/icu4c/source/tools/ctestfw/unicode/ |
D | testdata.h | 62 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0; 104 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
|
D | tstdtmod.h | 67 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0; 93 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
|