Searched refs:getType (Results 76 - 100 of 201) sorted by relevance

123456789

/frameworks/base/core/java/android/content/
H A DContentProvider.java61 * <li>{@link #getType} which returns the MIME type of data in the content provider</li>
182 public String getType(Uri uri) { method in class:ContentProvider.Transport
183 return ContentProvider.this.getType(uri);
559 public abstract String getType(Uri uri); method in class:ContentProvider
776 * @see #getType(Uri)
791 * result of {@link #getType(Uri)} and, if the match, simple calls
825 String baseType = getType(uri);
H A DIContentProvider.java38 public String getType(Uri url) throws RemoteException; method in interface:IContentProvider
/frameworks/base/core/java/android/os/
H A DDebug.java1126 Class<?> fieldClass = field.getType();
1154 if (field.getType() == java.lang.String.class) {
1173 " does not match field type (" + field.getType() + ")");
1185 " does not match field type (" + field.getType() + ")");
H A DPatternMatcher.java60 public final int getType() { method in class:PatternMatcher
/frameworks/base/core/java/android/test/
H A DAndroidTestCase.java158 if (testCaseClass.isAssignableFrom(fieldClass) && !field.getType().isPrimitive()) {
/frameworks/base/core/java/android/util/
H A DReflectiveProperty.java63 Class fieldType = mField.getType();
/frameworks/base/core/java/android/webkit/
H A DDeviceMotionService.java159 assert(event.sensor.getType() == Sensor.TYPE_ACCELEROMETER);
/frameworks/base/libs/gui/
H A DSensorManager.cpp123 if (mSensorList[i]->getType() == type)
/frameworks/base/native/android/
H A Dsensor.cpp144 return static_cast<Sensor const*>(sensor)->getType();
/frameworks/base/opengl/tools/glgen/src/
H A DCFunc.java52 public CType getType() { method in class:CFunc
H A DJniCodeEmitter.java145 boolean isVoid = jfunc.getType().isVoid();
150 jfunc.getType() + " _returnValue;");
239 CType returnType = cfunc.getType();
459 jfunc.getType() + " " +
467 jfunc.getType() + " " +
578 boolean isVoid = jfunc.getType().isVoid();
684 out.println(getJniType(jfunc.getType()));
687 String rsignature = getJniName(jfunc.getType());
793 CType returnType = cfunc.getType();
/frameworks/base/services/surfaceflinger/
H A DTransform.h63 uint32_t getType() const;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DAbstractResult.java235 public abstract TestType getType(); method in class:AbstractResult
H A DTextResult.java221 public TestType getType() { method in class:TextResult
248 bundle.putString("type", getType().name());
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerProvider.java94 public String getType(Uri uri) { method in class:TrackerProvider
H A DTrackerEntry.java119 EntryType getType() { method in class:TrackerEntry
214 if (entry.getType() == EntryType.LOCATION_TYPE) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentProvider.java67 public String getType(Uri arg0) throws RemoteException { method in class:BridgeContentProvider
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeAdapter.java94 return mItems.get(position).getType();
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java221 public int getType(int column) { method in class:SortCursor
222 return mCursor.getType(column);
/frameworks/base/libs/rs/
H A DrsProgram.cpp147 if (alloc->getType() != mConstantTypes[slot].get()) {
175 if (a && a->getType()->getDimFaces() && mHal.state.textureTargets[slot] != RS_TEXTURE_CUBE) {
H A DrsElement.cpp110 component.getType(),
173 (ee->getComponent().getType() == dt) &&
359 (*elemData++) = (uint32_t)e->getType();
H A DrsMesh.cpp186 renderPrimitiveRange(rsc, primIndex, 0, mHal.state.indexBuffers[primIndex]->getType()->getDimX());
190 renderPrimitiveRange(rsc, primIndex, 0, mHal.state.vertexBuffers[0]->getType()->getDimX());
223 const Type *bufferType = mHal.state.vertexBuffers[ct]->getType();
/frameworks/base/tools/aapt/
H A DXMLNode.cpp617 XMLNode::type XMLNode::getType() const
712 if (getType() == XMLNode::TYPE_ELEMENT
732 if (child->getType() == XMLNode::TYPE_ELEMENT
744 if (getType() == TYPE_CDATA) {
755 if (getType() == TYPE_CDATA) {
767 if (getType() == TYPE_CDATA) {
803 if (getType() != TYPE_CDATA) {
846 if (node->getType() == TYPE_CDATA) {
893 if (getType() == TYPE_ELEMENT) {
927 if (getType()
[all...]
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DRsBenchRS.java436 sb.addInput(mParticlesMesh.getVertexAllocation(0).getType().getElement());
437 sb.addConstant(mPvStarAlloc.getType());
459 pvbCustom.addConstant(mVSConst.getAllocation().getType());
470 pfbCustom.addConstant(mFSConst.getAllocation().getType());
478 pvbCustom.addConstant(mVSConstPixel.getAllocation().getType());
485 pvbCustom.addConstant(mVSConstPixel.getAllocation().getType());
492 pfbCustom.addConstant(mFSConstPixel.getAllocation().getType());
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackHandler.java82 if (token.getType() == MessageParams.TYPE_SYNTHESIS) {
97 } else if (token.getType() == MessageParams.TYPE_AUDIO) {
100 } else if (token.getType() == MessageParams.TYPE_SILENCE) {

Completed in 3790 milliseconds

123456789