HomeSort by relevance Sort by last modified time
    Searched full:gettype (Results 1 - 25 of 4806) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/test/data/
net_info.html 5 function getType() {
  /external/lldb/examples/summaries/cocoa/
Selector.py 11 return valobj.Cast(valobj.GetType().GetBasicType(lldb.eBasicTypeChar).GetPointerType()).GetSummary()
14 return valobj.CreateValueFromAddress('text',valobj.GetValueAsUnsigned(0),valobj.GetType().GetBasicType(lldb.eBasicTypeChar)).AddressOf().GetSummary()
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DexAnnotator.java 91 switch (mapItem.getType()) {
93 annotators.put(mapItem.getType(), HeaderItem.makeAnnotator(this, mapItem));
96 annotators.put(mapItem.getType(), StringIdItem.makeAnnotator(this, mapItem));
99 annotators.put(mapItem.getType(), TypeIdItem.makeAnnotator(this, mapItem));
102 annotators.put(mapItem.getType(), ProtoIdItem.makeAnnotator(this, mapItem));
105 annotators.put(mapItem.getType(), FieldIdItem.makeAnnotator(this, mapItem));
108 annotators.put(mapItem.getType(), MethodIdItem.makeAnnotator(this, mapItem));
111 annotators.put(mapItem.getType(), ClassDefItem.makeAnnotator(this, mapItem));
114 annotators.put(mapItem.getType(), MapItem.makeAnnotator(this, mapItem));
117 annotators.put(mapItem.getType(), TypeListItem.makeAnnotator(this, mapItem))
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayable.h 68 virtual SkDisplayTypes getType() const;
71 SkDisplayTypes type = getType();
73 bool isApply() const { return getType() == SkType_Apply; }
74 bool isColor() const { return getType() == SkType_Color; }
76 bool isGroup() const { return getType() == SkType_Group ||
77 getType() == SkType_Save || getType() == SkType_DrawTo ||
78 getType() == SkType_SaveLayer; }
79 bool isMatrix() const { return getType() == SkType_Matrix; }
80 virtual bool isPaint() const { return getType() == SkType_Paint;
    [all...]
SkScriptCallBack.h 30 virtual Type getType() const = 0;
41 virtual Type getType() const { return kFunction; }
48 virtual Type getType() const { return kMember; }
56 virtual Type getType() const { return kMemberFunction; }
64 virtual Type getType() const { return kProperty; }
  /external/skia/src/animator/
SkDisplayable.h 68 virtual SkDisplayTypes getType() const;
71 SkDisplayTypes type = getType();
73 bool isApply() const { return getType() == SkType_Apply; }
74 bool isColor() const { return getType() == SkType_Color; }
76 bool isGroup() const { return getType() == SkType_Group ||
77 getType() == SkType_Save || getType() == SkType_DrawTo ||
78 getType() == SkType_SaveLayer; }
79 bool isMatrix() const { return getType() == SkType_Matrix; }
80 virtual bool isPaint() const { return getType() == SkType_Paint;
    [all...]
SkScriptCallBack.h 30 virtual Type getType() const = 0;
41 virtual Type getType() const { return kFunction; }
48 virtual Type getType() const { return kMember; }
56 virtual Type getType() const { return kMemberFunction; }
64 virtual Type getType() const { return kProperty; }
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 22 CHECK(getType().isSignedIntegerTy());
27 sizeof(SIntMax) * 8 - getType().getIntegerBitWidth();
30 if (getType().getIntegerBitWidth() == 64)
33 if (getType().getIntegerBitWidth() == 128)
36 if (getType().getIntegerBitWidth() == 128)
43 CHECK(getType().isUnsignedIntegerTy());
46 if (getType().getIntegerBitWidth() == 64)
49 if (getType().getIntegerBitWidth() == 128)
52 if (getType().getIntegerBitWidth() == 128)
59 if (getType().isUnsignedIntegerTy()
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ImageProcessingTest.java 82 a1_copy = Allocation.createTyped(mRS, a1.getType());
83 a2_copy = Allocation.createTyped(mRS, a2.getType());
87 a1_copy.copy2DRangeFrom(0, 0, a1.getType().getX(), a1.getType().getY(), a1, 0, 0);
105 a1_copy = Allocation.createTyped(mRS, a1.getType());
106 a2_copy = Allocation.createTyped(mRS, a2.getType());
110 a1_copy.copy2DRangeFrom(0, 0, a1.getType().getX(), a1.getType().getY(), a1, 0, 0);
111 a2_copy.copy2DRangeFrom(0, 0, a2.getType().getX(), a2.getType().getY(), a2, 0, 0)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseTypeReference.java 41 return getType().hashCode();
48 return getType().equals(((TypeReference)o).getType());
51 return getType().equals(o.toString());
59 return getType().compareTo(o.toString());
62 @Override public int length() { return getType().length(); }
63 @Override public char charAt(int index) { return getType().charAt(index); }
64 @Override public CharSequence subSequence(int start, int end) { return getType().subSequence(start, end); }
65 @Override @Nonnull public String toString() { return getType(); }
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
ClassInfo.java 26 abstract public Type getType();
36 return getType().equals(((ClassInfo)o).getType());
40 return getType().hashCode();
45 return getType().getClassName();
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 48 if (ain->getType()->getElement()->isCompatible(mElement) == false ||
49 aout->getType()->getElement()->isCompatible(mElement) == false) {
56 sp<const Type> t = lut->getType();
82 if (in->getType()->getElement()->isCompatible(mElement) == false ||
83 out->getType()->getElement()->isCompatible(mElement) == false) {
90 if (in->getType()->getElement()->isCompatible(mElement) == false ||
91 out->getType()->getElement()->isCompatible(mElement) == false) {
98 if (in->getType()->getElement()->isCompatible(mElement) == false ||
99 out->getType()->getElement()->isCompatible(mElement) == false) {
106 if (in->getType()->getElement()->isCompatible(mElement) == false |
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicHistogram.java 88 if (ain.getType().getElement().getVectorSize() <
89 mOut.getType().getElement().getVectorSize()) {
94 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
95 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
96 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
97 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
141 if (mOut.getType().getElement() != Element.U32(mRS) &&
142 mOut.getType().getElement() != Element.U32_2(mRS) &&
143 mOut.getType().getElement() != Element.U32_3(mRS) &&
144 mOut.getType().getElement() != Element.U32_4(mRS) &
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLGetInfo.cpp 202 WebGLGetInfo::Type WebGLGetInfo::getType() const
209 ASSERT(getType() == kTypeBool);
215 ASSERT(getType() == kTypeBoolArray);
221 ASSERT(getType() == kTypeFloat);
227 ASSERT(getType() == kTypeInt);
233 ASSERT(getType() == kTypeString);
239 ASSERT(getType() == kTypeUnsignedInt);
245 ASSERT(getType() == kTypeWebGLBuffer);
251 ASSERT(getType() == kTypeWebGLFloatArray);
257 ASSERT(getType() == kTypeWebGLFramebuffer)
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_device_ref_dev_thunk.cc 25 PP_DeviceType_Dev GetType(PP_Resource device_ref) {
26 VLOG(4) << "PPB_DeviceRef_Dev::GetType()";
30 return enter.object()->GetType();
43 &GetType,
ppb_file_system_thunk.cc 44 PP_FileSystemType GetType(PP_Resource file_system) {
45 VLOG(4) << "PPB_FileSystem::GetType()";
49 return enter.object()->GetType();
56 &GetType
  /external/chromium_org/third_party/skia/src/svg/
SkSVGElements.h 24 virtual SkSVGTypes getType() const; \
34 SkSVGTypes SkSVG##_type::getType() const { return SkSVGType_##_type; }
39 SkSVGTypes SkSVG##_type::getType() const { return SkSVGType_##_type; }
52 virtual SkSVGTypes getType() const = 0;
  /external/lldb/test/python_api/default-constructor/
sb_symbol.py 15 obj.GetType()
  /external/skia/src/svg/
SkSVGElements.h 24 virtual SkSVGTypes getType() const; \
34 SkSVGTypes SkSVG##_type::getType() const { return SkSVGType_##_type; }
39 SkSVGTypes SkSVG##_type::getType() const { return SkSVGType_##_type; }
52 virtual SkSVGTypes getType() const = 0;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
AttributeListImplTest.java 75 assertEquals(multi.getType(i), attrs.getType(i));
94 assertEquals("boolean", multi.getType(3));
101 assertEquals("boolean", multi.getType(4));
107 assertEquals(null, multi.getType(5));
115 assertEquals("string", multi.getType(0));
159 assertEquals("string", multi.getType(0));
160 assertEquals("string", multi.getType(1));
161 assertEquals("int", multi.getType(2));
164 assertEquals(null, multi.getType(-1))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseAnnotation.java 44 hashCode = hashCode*31 + getType().hashCode();
53 getType().equals(other.getType()) &&
63 res = getType().compareTo(o.getType());
71 return annotation1.getType().compareTo(annotation2.getType());
  /libcore/luni/src/test/java/libcore/java/security/
KeyStoreTest.java 164 String type = service.getType();
171 assertEquals(algorithm, ks.getType());
182 return (!(ks.getType().equals("JKS")
183 || ks.getType().equals("CaseExactJKS")
184 || (ks.getType().equals("PKCS12"))
185 || (ks.getType().equals("AndroidKeyStore"))));
190 return (!(ks.getType().equals("PKCS12") && ks.getProvider().getName().equals("SunJSSE")));
194 return (ks.getType().equals("CaseExactJKS")
195 || ks.getType().equals("BKS")
196 || ks.getType().equals("BouncyCastle"
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariableValue.cpp 35 DE_ASSERT(a.getType() == b.getType());
37 if (a.getType().isStruct())
39 int numMembers = (int)a.getType().getMembers().size();
46 else if (a.getType().isArray())
48 int numElements = (int)a.getType().getNumElements();
57 int numElements = (int)a.getType().getNumElements();
58 switch (a.getType().getBaseType())
184 : m_type (other.getType())
185 , m_min (other.getType().getScalarSize()
    [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 29 GlobalVariable *GV = new GlobalVariable(M, StrConstant->getType(),
43 PointerType *PT = cast<PointerType>(Ptr->getType());
68 Type *Tys[] = { Ptr->getType(), Size->getType() };
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
112 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t010lexer.html 33 assertEquals(token.getType(), lexer.IDENTIFIER);
39 assertEquals(token.getType(), lexer.WS);
45 assertEquals(token.getType(), lexer.IDENTIFIER);
51 assertEquals(token.getType(), lexer.WS);
57 assertEquals(token.getType(), lexer.IDENTIFIER);
63 assertEquals(token.getType(), lexer.EOF);

Completed in 713 milliseconds

1 2 3 4 5 6 7 8 91011>>