Searched defs:getType (Results 276 - 300 of 514) sorted by relevance

<<11121314151617181920>>

/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.hpp102 const AttribType getType (void) const { return m_type; } function in class:deqp::gls::AttributeLocationTestUtil::Attribute
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpec.java182 * registers. That is, this compares {@code getType()} on the types
212 return type.getType().equals(other.type.getType())
248 int compare = type.getType().compareTo(other.type.getType());
297 public Type getType() { method in class:RegisterSpec
298 return type.getType();
365 * shorthand for {@code getType().getCategory()}.
372 return type.getType().getCategory();
377 * convenient shorthand for {@code getType()
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstType.java188 public Type getType() { method in class:CstType
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java246 sb.append(list.getType(i).toHuman());
265 hash = (hash * 31) + list.getType(i).hashCode();
288 if (! list1.getType(i).equals(list2.getType(i))) {
311 int comparison = list1.getType(i).compareTo(list2.getType(i));
336 public Type getType(int n) { method in class:StdTypeList
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java110 protected abstract String getType (); method in class:ReportCfg.Element
123 m_prefix = PREFIX.concat (getType ()).concat (".");
162 protected final String getType () method in class:ReportCfg.Element_HTML
181 protected final String getType () method in class:ReportCfg.Element_TXT
200 protected final String getType () method in class:ReportCfg.Element_LCOV
218 protected final String getType () method in class:ReportCfg.Element_XML
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java55 public String getType () method in class:ReportGenerator
80 m_log.trace1 ("process", "[" + getType () + "] report generated in " + (end - start) + " ms");
107 m_log.info ("writing [" + getType () + "] report to [" + fullOutFile.getAbsolutePath () + "] ...");
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DImageHeaderParser.java70 return getType().hasAlpha();
73 public ImageType getType() throws IOException { method in class:ImageHeaderParser
/external/icu/icu4c/source/common/
H A Ddictionarydata.cpp39 int32_t UCharsDictionaryMatcher::getType() const { function in class:UCharsDictionaryMatcher
103 int32_t BytesDictionaryMatcher::getType() const { function in class:BytesDictionaryMatcher
/external/icu/icu4c/source/i18n/
H A Djapancal.cpp319 const char *JapaneseCalendar::getType() const function in class:JapaneseCalendar
H A Dpersncal.cpp71 const char *PersianCalendar::getType() const { function in class:PersianCalendar
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java45 STRING_TYPE = getType("java.lang.String");
46 CLASS_TYPE = getType("java.lang.Class");
47 THROWABLE_TYPE = getType("java.lang.Throwable");
795 type = getType("boolean[]");
798 type = getType("char[]");
801 type = getType("byte[]");
804 type = getType("short[]");
807 type = getType("int[]");
810 type = getType("long[]");
813 type = getType("floa
924 private Type getType(String name) throws BadBytecode { method in class:Executor
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java411 public abstract String getType(); method in class:ServiceInfo
/external/jmdns/src/javax/jmdns/impl/
H A DDNSEntry.java112 public String getType() { method in class:DNSEntry
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java40 if (expression.getType() == VAR_NAME) {
49 if (expression.getType() == VAR_NAME) {
58 if (expression.getType() == VAR_NAME) {
67 if (expression.getType() == VAR_NAME) {
77 if (expression.getType() == VAR_NAME) {
170 public Type getType() { method in class:JavaExpression
442 if (query.getType() != Type.BOOLEAN) {
490 if (expression.getType() != Type.VAR_NAME) {
/external/lldb/examples/python/
H A Dpytracer.py41 def getType(self): member in class:ExceptionFancy
221 print "exception %s %s raised from %s @ %s" % (exception.getType(), str(exception.getValue()), frame.getName(), frame.getLineNumber())
294 print "exception %s %s raised from %s @ %s" % (exception.getType(), str(exception.getValue()), frame.getName(), frame.getLineNumber())
/external/llvm/include/llvm/IR/
H A DInlineAsm.h76 /// getType - InlineAsm's are always pointers.
78 PointerType *getType() const { function in class:llvm::InlineAsm
79 return reinterpret_cast<PointerType*>(Value::getType());
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_graph.h59 inline Type getType() const { return type; } function in class:nv50_ir::Graph::Edge
96 inline Edge::Type getType() { return e ? e->getType() : Edge::UNKNOWN; } function in class:nv50_ir::Graph::EdgeIterator
221 if (ei.getType() != Edge::BACK)
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DType.java206 public static Type getType(final String typeDescriptor) { method in class:Type
207 return getType(typeDescriptor.toCharArray(), 0);
227 public static Type getType(final Class c) { method in class:Type
249 return getType(getDescriptor(c));
281 args[size] = getType(buf, off);
300 types[i] = getType(classes[i]);
315 return getType(buf, methodDescriptor.indexOf(')') + 1);
327 return getType(method.getReturnType());
337 private static Type getType(final char[] buf, final int off) { method in class:Type
418 return getType(bu
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DTypeUtils.java43 public static Type getType(String className) { method in class:TypeUtils
44 return Type.getType("L" + className.replace('.', '/') + ";");
131 return Type.getType("L" + name + ";");
181 return Type.getType(map(s));
188 types[i] = Type.getType((String)names.get(i));
296 return Type.getType(type.getDescriptor().substring(1));
327 types[i] = Type.getType(classes[i]);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DDefaultMp4Builder.java439 public String getType() { method in class:DefaultMp4Builder.InterleaveChunkMdat
/external/proguard/src/proguard/classfile/
H A DClazz.java91 public String getType(int constantIndex); method in interface:Clazz
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCursorWrapper.java209 public int getType(int columnIndex) { method in class:ShadowCursorWrapper
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DTestCursor.java203 public int getType(int columnIndex) { method in class:TestCursor
/external/skia/gm/
H A Dconvexpolyclip.cpp271 ClipType getType() const { return fClipType; } function in class:skiagm::ConvexPolyClip::Clip
/external/skia/include/core/
H A DSkRRect.h91 Type getType() const { function in class:SkRRect
101 Type type() const { return this->getType(); }
103 inline bool isEmpty() const { return kEmpty_Type == this->getType(); }
104 inline bool isRect() const { return kRect_Type == this->getType(); }
105 inline bool isOval() const { return kOval_Type == this->getType(); }
106 inline bool isSimple() const { return kSimple_Type == this->getType(); }
110 inline bool isNinePatch() const { return kNinePatch_Type == this->getType(); }
111 inline bool isComplex() const { return kComplex_Type == this->getType(); }

Completed in 474 milliseconds

<<11121314151617181920>>