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

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DAnglesPercentageEvaluator.java20 public static float evaluate(float value, int type) { argument
21 final boolean secureUnlock = type == Classifier.BOUNCER_UNLOCK;
H A DAnglesVarianceEvaluator.java20 public static float evaluate(float value, int type) { argument
H A DDirectionClassifier.java21 * the type of action that takes place.
33 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
37 type);
H A DDirectionEvaluator.java20 public static float evaluate(float xDiff, float yDiff, int type) { argument
23 switch (type) {
H A DDurationCountClassifier.java33 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
H A DEndPointLengthClassifier.java32 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
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/services/usb/java/com/android/server/usb/descriptors/
H A DUsbUnknown.java25 public UsbUnknown(int length, byte type) { argument
26 super(length, type);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaSmsSubaddress.java20 public int type; field in class:CdmaSmsSubaddress
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DPlaybackError.java21 public int type; field in class:PlaybackError
/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/layoutlib/bridge/tests/src/android/content/res/
H A DResources_DelegateTest.java34 @NonNull ResourceType type, @Nullable ResourceUrl url) {
36 assertEquals(type, url.type);
45 fail("Expected IllegalArgumentException since no type was defined");
33 assertResourceUrl(@ullable String pkg, @NonNull String name, @NonNull ResourceType type, @Nullable ResourceUrl url) argument
/frameworks/native/cmds/surfacereplayer/replayer/
H A DEvent.cpp21 Event::Event(Increment::IncrementCase type) : mIncrementType(type) {} argument
/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/native/services/surfaceflinger/Effects/
H A DDaltonizer.cpp22 void Daltonizer::setType(ColorBlindnessType type) { argument
23 if (type != mType) {
25 mType = type;
139 // simulation: type of color blindness to simulate:
143 // correction: type of color blindness correction (should match the simulation above):
/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/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/rs/
H A DrsApiType.cpp26 extern "C" void rsaTypeGetNativeData(RsContext con, RsType type, uintptr_t *typeData, uint32_t typeDataSize) { argument
30 Type *t = static_cast<Type *>(type);
/frameworks/support/media/api22/android/support/v4/media/session/
H A DMediaSessionCompatApi22.java25 public static void setRatingType(Object sessionObj, int type) { argument
26 ((MediaSession) sessionObj).setRatingType(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/include/media/stagefright/foundation/
H A DTypeTraits.h30 * std::underlying_type that does not require checking if the type is an enum.
34 * Type support utility class to check if a type is an integral type or an enum.
41 * Type support utility class to get the underlying std::is_integral supported type for a type.
42 * This returns the underlying type for enums, and the same type for types covered by
45 * This is also used as a conditional to return an alternate type if the template param is not
46 * an integral or enum type (as in underlying_integral_type<T, TypeIfNotEnumOrIntegral>::type)
55 typedef U type; typedef in struct:android::underlying_integral_type
63 typedef typename std::underlying_type<T>::type type; typedef in struct:android::underlying_integral_type
71 typedef T type; typedef in struct:android::underlying_integral_type
198 typename _find_first_convertible_to_helper<Base + 1, T, Us...>::type>::type type; typedef in struct:android::_find_first_convertible_to_helper
207 typedef void type; typedef in struct:android::_find_first_convertible_to_helper
[all...]

Completed in 460 milliseconds

1234567891011>>