HomeSort by relevance Sort by last modified time
    Searched defs:mType (Results 151 - 175 of 1266) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceProcessor.java 43 private ResourceType mType;
64 mType = type;
68 mValidator = ResourceNameValidator.create(false, mProject, mType);
107 return mType;
207 String url = PREFIX_RESOURCE_REF + mType.getName() + '/' + mCurrentName;
RenameResourceWizard.java 41 private ResourceType mType;
60 mType = type;
69 addPage(new RenameResourcePage(mType, name, mCanClear));
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLCompositeProperty.java 27 private final GLStateType mType;
33 mType = type;
86 return mType;
129 pp.prettyPrint(mType, null);
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
DevicePropertyInfo.java 48 private final String mType;
76 mType = type;
108 propertyMap.put(prefix + "type", mType);
  /tools/tradefederation/core/src/com/android/tradefed/util/
SimplePerfUtil.java 36 private SimplePerfType mType;
43 mType = type;
148 sb.append(mType.toString()).append(" ");
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 60 Type mType;
104 return mType.mElement.mType;
112 return mType.mElement.mType;
120 return mType.mElement.mType;
128 return mType.mElement.mType;
148 "[] is not compatible with data type " + mType.mElement.mType.name()
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn2/
ConfigDialog.java 62 private Spinner mType;
100 mType = (Spinner) mView.findViewById(R.id.type);
121 mType.setSelection(mProfile.type);
149 mType.setOnItemSelectedListener(this);
246 if (parent == mType) {
363 switch (mType.getSelectedItemPosition()) {
441 profile.type = mType.getSelectedItemPosition();
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
AllocationCache.java 208 private final Type mType;
212 mType = type;
218 return mType.hashCode() ^ mUsage;
226 return otherKey.mType.equals(mType) && otherKey.mUsage == mUsage;
AllocationInfo.java 46 private final Type mType;
240 mType = typeBuilder.create();
252 return mType;
400 return mType.equals(other.mType) && mUsage == other.mUsage;
414 return RenderScriptSingleton.getCache().getOrCreateTyped(mType, mUsage);
  /device/google/contexthub/util/common/
JSONObject.h 72 FieldType mType;
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingTask.java 53 public int mType;
66 mType = type;
77 if (CapabilityPolling.ACTION_POLLING_NEW_CONTACTS == mType) {
231 return (this.mId == that.mId) && (this.mType == that.mType);
239 sb.append("\nType: " + mType);
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
MessageHeader.java 45 private final int mType;
54 mType = type;
65 mType = type;
86 mType = decoder.readInt(TYPE_OFFSET);
112 return mType;
185 result = prime * result + mType;
202 && mType == other.mType);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyEvents.java 69 private String mType;
78 mType = type;
84 return mType;
106 TelephonyConstants.PreciseCallStateContainer.TYPE, mType);
  /frameworks/av/include/media/
MicrophoneInfo.h 45 mType = characteristic.device;
78 RETURN_IF_FAILED(parcel->writeUint32(mType));
107 RETURN_IF_FAILED(parcel->readUint32(&mType));
154 return mType;
231 uint32_t mType;
  /frameworks/av/media/libmediametrics/include/
MediaAnalyticsItem.h 220 Type mType;
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
AMessage.h 290 Type mType;
  /frameworks/av/media/libstagefright/webm/
WebmWriter.h 84 int mType;
94 : mType(kInvalidType),
100 : mType(type),
106 mType = other.mType;
  /frameworks/av/packages/MediaComponents/src/com/android/media/
SessionToken2Impl.java 49 private final @TokenType int mType;
85 mType = TYPE_LIBRARY_SERVICE;
90 mType = TYPE_SESSION_SERVICE;
105 mType = type;
168 return mType;
222 bundle.putInt(KEY_TYPE, mType);
231 return mType
248 && mType == other.mType;
253 return "SessionToken {pkg=" + mPackageName + " id=" + mId + " type=" + mType
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioPort.h 40 mName(name), mType(type), mRole(role), mFlags(AUDIO_OUTPUT_FLAG_NONE) {}
47 audio_port_type_t getType() const { return mType; }
95 return mProfiles.checkCompatibleProfile(samplingRate, channelMask, format, mType, mRole);
122 return ((mType == AUDIO_PORT_TYPE_DEVICE) && (mRole == AUDIO_PORT_ROLE_SOURCE)) ||
123 ((mType == AUDIO_PORT_TYPE_MIX) && (mRole == AUDIO_PORT_ROLE_SINK));
128 return (mType == AUDIO_PORT_TYPE_MIX) && (mRole == AUDIO_PORT_ROLE_SOURCE) &&
146 audio_port_type_t mType;
  /frameworks/av/services/camera/libcameraservice/common/
CameraProviderManager.h 367 std::string mType;
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.h 82 sound_trigger_sound_model_type_t mType;
101 event_type mType;
  /frameworks/base/core/java/android/content/
BroadcastReceiver.java 72 final int mType;
91 mType = type;
204 if (mType == TYPE_COMPONENT) {
229 } else if (mOrderedHint && mType != TYPE_UNREGISTERED) {
RestrictionEntry.java 106 private int mType;
145 mType = type;
156 this.mType = TYPE_CHOICE;
167 this.mType = TYPE_BOOLEAN;
178 this.mType = TYPE_MULTI_SELECT;
189 mType = TYPE_INTEGER;
207 mType = TYPE_BUNDLE_ARRAY;
217 mType = TYPE_BUNDLE;
250 this.mType = type;
258 return mType;
    [all...]
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 55 final int mType;
66 mType = type;
77 return Objects.hash(mType, mSubType, mSubscriberId, mNetworkId, mRoaming, mMetered,
85 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
97 builder.append("type=").append(getNetworkTypeName(mType));
101 } else if (ConnectivityManager.isNetworkTypeMobile(mType)) {
123 proto.write(NetworkIdentityProto.TYPE, mType);
139 return mType;
236 int res = Integer.compare(mType, another.mType)
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 122 private int mType;
155 mType = TYPE_CLASSIC;
159 mType = TYPE_CLASSIC;
163 mType = TYPE_PLUS;
168 mType = TYPE_PLUS;
173 mType = TYPE_CLASSIC;
177 mType = TYPE_CLASSIC;
182 mType = TYPE_CLASSIC;
187 mType = TYPE_CLASSIC;
193 mType = TYPE_PRO
    [all...]

Completed in 1425 milliseconds

1 2 3 4 5 67 8 91011>>