Searched defs:type (Results 26 - 50 of 801) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DEndPointRatioClassifier.java34 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
H A DLengthCountClassifier.java36 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
H A DProximityEvaluator.java20 public static float evaluate(float value, int type) { argument
23 if (type == Classifier.QUICK_SETTINGS) {
H A DStrokeClassifier.java25 * @param type the type of action for which this method is called
30 public abstract float getFalseTouchEvaluation(int type, Stroke stroke); argument
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DPlaybackError.java21 public int type; field in class:PlaybackError
/frameworks/base/tools/aapt2/
H A DResource.cpp25 StringPiece16 toString(ResourceType type) { argument
26 switch (type) {
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
H A DMockLayoutBinder.java30 public IdentifierExpr addVariable(String name, String type, Location location) { argument
31 return super.addVariable(name, type, location, true);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageCallback.java4 void onMessage(int source, int type, int id, int severity, String message); argument
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.cpp41 AudioCodecType *type = gAudioCodecTypes; local
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
44 AudioCodec *codec = type->create();
45 codec->name = type->name;
48 ++type;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsSubaddress.java20 public int type; field in class:CdmaSmsSubaddress
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DFacetProviderAdapter.java20 * query {@link FacetProvider} for a given type within Adapter. Note that
27 * Queries {@link FacetProvider} for a given type within Adapter.
28 * @param type type of the item.
29 * @return Facet provider for the type.
31 public FacetProvider getFacetProvider(int type); argument
/frameworks/support/v4/api22/android/support/v4/media/session/
H A DMediaSessionCompatApi22.java22 public static void setRatingType(Object sessionObj, int type) { argument
23 ((MediaSession) sessionObj).setRatingType(type);
/frameworks/support/v4/froyo/android/support/v4/content/
H A DContextCompatFroyo.java28 public static File getExternalFilesDir(Context context, String type) { argument
29 return context.getExternalFilesDir(type);
/frameworks/support/v4/kitkat/android/support/v4/content/
H A DContextCompatKitKat.java28 public static File[] getExternalFilesDirs(Context context, String type) { argument
29 return context.getExternalFilesDirs(type);
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp49 int type = data.readInt32(); local
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/av/media/img_utils/src/
H A DTiffEntry.cpp31 * Specialize for each valid type, including sub-IFDs.
37 const sp<TiffIfd>* TiffEntry::forceValidType<sp<TiffIfd> >(TagType type, const sp<TiffIfd>* value) { argument
38 if (type == LONG) {
41 ALOGE("%s: Value of type 'ifd' is not valid for tag with TIFF type %d.",
42 __FUNCTION__, type);
47 const uint8_t* TiffEntry::forceValidType<uint8_t>(TagType type, const uint8_t* value) { argument
48 if (type == BYTE || type == ASCII || type
57 forceValidType(TagType type, const int8_t* value) argument
67 forceValidType(TagType type, const uint16_t* value) argument
77 forceValidType(TagType type, const int16_t* value) argument
87 forceValidType(TagType type, const uint32_t* value) argument
97 forceValidType(TagType type, const int32_t* value) argument
107 forceValidType(TagType type, const double* value) argument
117 forceValidType(TagType type, const float* value) argument
136 TagType type = getType(); local
[all...]
/frameworks/av/media/libmedia/
H A DMediaResource.cpp29 MediaResource::MediaResource(Type type, uint64_t value) argument
30 : mType(type),
34 MediaResource::MediaResource(Type type, SubType subType, uint64_t value) argument
35 : mType(type),
H A DMediaResourcePolicy.cpp29 MediaResourcePolicy::MediaResourcePolicy(String8 type, String8 value) argument
30 : mType(type),
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.cpp49 WebmFrame::WebmFrame(int type, bool key, uint64_t absTimecode, MediaBuffer *mbuf) argument
50 : mType(type),
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DDeviceDescriptor.h33 DeviceDescriptor(audio_devices_t type, const String8 &tagName = String8(""));
39 audio_devices_t type() const { return mDeviceType; } function in class:android::DeviceDescriptor
79 sp<DeviceDescriptor> getDevice(audio_devices_t type, String8 address) const;
83 DeviceVector getDevicesFromTypeAddr(audio_devices_t type, String8 address) const;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DTypeConverter.cpp281 typename Traits::Type type; local
282 if (fromString(cstr, type)) {
283 value |= static_cast<uint32_t>(type);
/frameworks/base/cmds/backup/
H A Dbackup.cpp65 int type; local
67 while (reader.ReadNextHeader(&done, &type) == 0) {
71 switch (type) {
86 printf("Unknown chunk type: 0x%08x\n", type);
/frameworks/base/core/java/android/accounts/
H A DAccount.java24 * Value type that represents an Account in the {@link AccountManager}. This object is
30 public final String type; field in class:Account
36 return name.equals(other.name) && type.equals(other.type);
42 result = 31 * result + type.hashCode();
46 public Account(String name, String type) { argument
50 if (TextUtils.isEmpty(type)) {
51 throw new IllegalArgumentException("the type must not be empty: " + type);
54 this.type
[all...]

Completed in 3672 milliseconds

1234567891011>>