Searched refs:getInfo (Results 1 - 25 of 166) sorted by relevance

1234567

/external/llvm/include/llvm/Option/
H A DOptTable.h69 const Info &getInfo(OptSpecifier Opt) const { function in class:llvm::opt::OptTable
92 return getInfo(id).Name;
97 return getInfo(id).Kind;
102 return getInfo(id).GroupID;
107 return getInfo(id).HelpText;
113 return getInfo(id).MetaVar;
/external/clang/lib/Sema/
H A DAttributeList.cpp166 static const ParsedAttrInfo &getInfo(const AttributeList &A) { function
171 return getInfo(*this).NumArgs;
175 return getMinArgs() + getInfo(*this).OptArgs;
179 return getInfo(*this).HasCustomParsing;
183 return getInfo(*this).DiagAppertainsToDecl(S, *this, D);
187 return getInfo(*this).DiagLangOpts(S, *this);
191 return getInfo(*this).IsTargetSpecific;
195 return getInfo(*this).IsType;
199 return getInfo(*this).ExistsInTarget(T);
203 return getInfo(*thi
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceEvent.java56 * @see javax.jmdns.ServiceEvent#getInfo()
58 public abstract ServiceInfo getInfo(); method in class:ServiceEvent
/external/nist-sip/java/javax/sip/header/
H A DCallInfoHeader.java8 URI getInfo(); method in interface:CallInfoHeader
/external/clang/lib/CodeGen/
H A DCGLoopInfo.h95 llvm::MDNode *getCurLoopID() const { return getInfo().getLoopID(); }
99 return hasInfo() ? getInfo().getAttributes().IsParallel : false;
126 const LoopInfo &getInfo() const { return Active.back(); } function in class:clang::CodeGen::LoopInfoStack
/external/jmdns/src/javax/jmdns/impl/
H A DServiceEventImpl.java97 buf.append(this.getInfo());
107 * @see javax.jmdns.ServiceEvent#getInfo()
110 public ServiceInfo getInfo() { method in class:ServiceEventImpl
120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo());
/external/deqp/framework/opengl/
H A DgluShaderProgram.hpp82 const ShaderInfo& getInfo (void) const { return m_info; } function in class:glu::Shader
84 glu::ShaderType getType (void) const { return getInfo().type; }
85 bool getCompileStatus (void) const { return getInfo().compileOk; }
86 const std::string& getSource (void) const { return getInfo().source; }
87 const std::string& getInfoLog (void) const { return getInfo().infoLog; }
119 const ProgramInfo& getInfo (void) const { return m_info; } function in class:glu::Program
121 bool getLinkStatus (void) const { return getInfo().linkOk; }
122 const std::string& getInfoLog (void) const { return getInfo().infoLog; }
182 const ShaderInfo& getShaderInfo (glu::ShaderType shaderType, int shaderNdx = 0) const { return m_shaders[shaderType][shaderNdx]->getInfo(); }
183 const ProgramInfo& getProgramInfo (void) const { return m_program.getInfo(); }
[all...]
/external/fonttools/Lib/fontTools/misc/
H A DhomeResFile.py67 def getInfo(self): member in class:ParamBlock
80 self.getInfo()
85 self.getInfo()
/external/fonttools/Tools/fontTools/misc/
H A DhomeResFile.py67 def getInfo(self): member in class:ParamBlock
80 self.getInfo()
85 self.getInfo()
/external/chromium_org/third_party/skia/tools/
H A DLazyDecodeBitmap.cpp38 if ((NULL == gen.get()) || !gen->getInfo(&info)) {
/external/skia/tools/
H A DLazyDecodeBitmap.cpp38 if ((NULL == gen.get()) || !gen->getInfo(&info)) {
/external/clang/lib/Driver/
H A DTypes.cpp34 static const TypeInfo &getInfo(unsigned id) { function
40 return getInfo(Id).Name;
44 return getInfo(Id).PreprocessedType;
54 return getInfo(Id).TempSuffix;
58 return strchr(getInfo(Id).Flags, 'a');
62 return strchr(getInfo(Id).Flags, 'p');
66 return strchr(getInfo(Id).Flags, 'u');
70 return strchr(getInfo(Id).Flags, 'A');
186 strcmp(Name, getInfo(Id).Name) == 0)
/external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
H A Dtestdata.h62 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0;
104 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
H A Dtstdtmod.h67 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0;
93 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
/external/chromium_org/third_party/skia/include/core/
H A DSkImageGenerator.h53 virtual bool getInfo(SkImageInfo* info) { return this->onGetInfo(info); } function in class:SkImageGenerator
76 bool getInfo(SkImageInfo* info);
88 * to the info returned by getInfo().
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Dtestdata.h62 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0;
104 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
H A Dtstdtmod.h67 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0;
93 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
/external/skia/include/core/
H A DSkImageGenerator.h59 virtual bool getInfo(SkImageInfo* info) { return this->onGetInfo(info); } function in class:SkImageGenerator
82 bool getInfo(SkImageInfo* info);
94 * to the info returned by getInfo().
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs10/
H A DCertificationRequestTest.java63 assertEquals(certReqInfo, certReq.getInfo());
73 CertificationRequestInfo decodedCRinfo = certReq.getInfo();
/external/llvm/lib/Option/
H A DOptTable.cpp101 unsigned Kind = getInfo(i + 1).Kind;
104 TheInputOptionID = getInfo(i + 1).ID;
107 TheUnknownOptionID = getInfo(i + 1).ID;
119 Option::OptionClass Kind = (Option::OptionClass) getInfo(i + 1).Kind;
127 if (!(getInfo(i) < getInfo(i + 1))) {
138 if (const char *const *P = getInfo(i).Prefixes) {
165 return Option(&getInfo(id), this);
403 unsigned Flags = getInfo(Id).Flags;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProviderTest.java60 String.valueOf(p.getInfo()));
78 assertEquals("Provider info", p.getInfo());
90 assertEquals("Provider for testing", p.getInfo());
290 assertNull(myProvider.getInfo());
/external/chromium_org/third_party/skia/src/lazy/
H A DSkCachingPixelRef.cpp17 || !(generator->getInfo(&info))
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCallInfo.java92 public javax.sip.address.URI getInfo() { method in class:CallInfo
/external/skia/src/core/
H A DSkImageGenerator.cpp11 bool SkImageGenerator::getInfo(SkImageInfo* info) { function in class:SkImageGenerator
/external/chromium_org/extensions/test/data/
H A Dserial_unittest.js104 serial.getInfo(connectionId, test.callbackPass(function(connectionInfo) {
210 // Test that a getInfo call correctly converts the service-side info from the
214 serial.getInfo(connectionId,
223 // getInfo call. This test uses an IoHandler that fails GetPortInfo calls
227 serial.getInfo(connectionId,
309 // of getInfo calls. This test uses an IoHandler that expects corresponding
345 serial.getInfo(connectionId, test.callbackPass(checkInfo));
377 // Test that setPaused values are reflected by the results returned by getInfo
382 serial.getInfo(connectionId, test.callbackPass(function(info) {
384 serial.getInfo(connectionI
[all...]

Completed in 1101 milliseconds

1234567