Searched defs:type (Results 51 - 75 of 436) sorted by relevance

1234567891011>>

/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.cpp49 AudioShelvingFilter::AudioShelvingFilter(ShelfType type, int nChannels, argument
51 : mType(type),
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DStreamingSource.cpp74 int32_t type = ATSParser::DISCONTINUITY_SEEK; local
81 ALOGE("Client specified an illegal discontinuity type.");
85 type = mask;
89 (ATSParser::DiscontinuityType)type, extra);
101 uint8_t type = buffer[1]; local
103 if (type & 2) {
111 ((type & 1) == 0)
133 ATSParser::SourceType type = local
137 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
148 ATSParser::SourceType type local
[all...]
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp99 uint32_t type; local
103 kKeyTextFormatData, &type, &data, &size)) {
/frameworks/base/core/java/android/accounts/
H A DAuthenticatorDescription.java23 * A {@link Parcelable} value type that contains information about an account authenticator.
27 final public String type; field in class:AuthenticatorDescription
51 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
53 if (type == null) throw new IllegalArgumentException("type cannot be null");
55 this.type = type;
64 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
66 this(type, packageName, labelId, iconId, smallIconId, prefId, false);
71 * to identify the authenticator by its type
74 newKey(String type) argument
79 AuthenticatorDescription(String type) argument
[all...]
H A DChooseAccountTypeActivity.java66 for (String type : validAccountTypes) {
67 setOfAllowableAccountTypes.add(type);
78 final String type = entry.getKey();
81 && !setOfAllowableAccountTypes.contains(type)) {
96 setResultAndFinish(mAuthenticatorInfosToDisplay.get(0).desc.type);
110 setResultAndFinish(mAuthenticatorInfosToDisplay.get(position).desc.type);
115 private void setResultAndFinish(final String type) { argument
117 bundle.putString(AccountManager.KEY_ACCOUNT_TYPE, type);
121 + "selected account type " + type);
[all...]
/frameworks/base/core/java/android/app/
H A DAlarmManager.java110 * Alarm intents are delivered with a data extra of type int called
116 * @param type One of ELAPSED_REALTIME, ELAPSED_REALTIME_WAKEUP, RTC or
119 * off, using the appropriate clock (depending on the alarm type).
135 public void set(int type, long triggerAtMillis, PendingIntent operation) { argument
137 mService.set(type, triggerAtMillis, operation);
168 * @param type One of ELAPSED_REALTIME, ELAPSED_REALTIME_WAKEUP}, RTC or
171 * go off, using the appropriate clock (depending on the alarm type).
189 public void setRepeating(int type, long triggerAtMillis, argument
192 mService.setRepeating(type, triggerAtMillis, intervalMillis, operation);
222 * @param type On
255 setInexactRepeating(int type, long triggerAtMillis, long intervalMillis, PendingIntent operation) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java37 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
77 * @param type type of socket
84 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
87 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
92 * @param type type of socket
99 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid) argument
101 mSocket = new BluetoothSocket(type,
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureLibrary.java51 public void setSequenceType(int type) { argument
52 mStore.setSequenceType(type);
/frameworks/base/core/java/android/net/
H A DNetworkIdentity.java53 int type, int subType, String subscriberId, String networkId, boolean roaming) {
54 mType = type;
80 builder.append("type=").append(getNetworkTypeName(mType));
140 final int type = state.networkInfo.getType();
150 if (isNetworkTypeMobile(type)) {
160 } else if (type == TYPE_WIFI) {
171 return new NetworkIdentity(type, subType, subscriberId, networkId, roaming);
52 NetworkIdentity( int type, int subType, String subscriberId, String networkId, boolean roaming) argument
/frameworks/base/core/java/android/os/
H A DPatternMatcher.java26 * Pattern type: the given pattern must exactly match the string it is
32 * Pattern type: the given pattern must match the
38 * Pattern type: the given pattern is interpreted with a
51 public PatternMatcher(String pattern, int type) { argument
53 mType = type;
69 String type = "? ";
72 type = "LITERAL: ";
75 type = "PREFIX: ";
78 type = "GLOB: ";
81 return "PatternMatcher{" + type
109 matchPattern(String pattern, String match, int type) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditText.java79 public void setText(CharSequence text, BufferType type) { argument
H A DExpandableListPosition.java35 * This data type represents a child position
40 * This data type represents a group position
62 * What type of position this ExpandableListPosition represents
64 public int type; field in class:ExpandableListPosition
70 type = 0;
77 if (type == CHILD) return ExpandableListView.getPackedPositionForChild(groupPos, childPos);
98 elp.type = CHILD;
101 elp.type = GROUP;
106 static ExpandableListPosition obtain(int type, int groupPos, int childPos, int flatListPos) { argument
108 elp.type
[all...]
/frameworks/base/core/jni/
H A Dandroid_backup_BackupDataInput.cpp56 int type = 0; local
58 err = reader->ReadNextHeader(&done, &type);
67 switch (type) {
83 ALOGD("Unknown header type: 0x%08x\n", type);
/frameworks/base/libs/hwui/
H A DSkiaColorFilter.cpp26 SkiaColorFilter::SkiaColorFilter(SkColorFilter *skFilter, Type type, bool blend): argument
27 mType(type), mBlend(blend), mSkFilter(skFilter) {
/frameworks/base/media/java/android/media/videoeditor/
H A DEffectColor.java61 * The effect type
71 * An object of this type cannot be instantiated by using the default
87 * @param type type of the effect. type is one of: TYPE_COLOR,
89 * @param color If type is TYPE_COLOR, color is the RGB color as 888.
90 * If type is TYPE_GRADIENT, color is the RGB color at the
94 long durationMs, int type, int color) {
96 switch (type) {
119 throw new IllegalArgumentException("Invalid type
93 EffectColor(MediaItem mediaItem, String effectId, long startTimeMs, long durationMs, int type, int color) argument
[all...]
/frameworks/base/obex/javax/obex/
H A DServerSession.java129 * Received a request type that is not recognized so I am
189 * @param type the type of request received; either 0x02 or 0x82
192 private void handlePutRequest(int type) throws IOException { argument
193 ServerOperation op = new ServerOperation(this, mInput, type, mMaxPacketLength, mListener);
234 * @param type the type of request received; either 0x03 or 0x83
237 private void handleGetRequest(int type) throws IOException { argument
238 ServerOperation op = new ServerOperation(this, mInput, type, mMaxPacketLength, mListener);
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java63 * Return the type as defined by OpenGL ES of the supplied bitmap, if there
65 * a valid OpenGL ES type.
66 * @throws IllegalArgumentException if the bitmap does not have a type.
68 * @return the OpenGL ES type of the bitmap.
79 throw new IllegalArgumentException("Unknown type");
120 * A version of texImage2D() that takes an explicit type parameter
121 * as defined by the OpenGL ES specification. The actual type and
123 * type and internalformat parameters.
129 * @param type
133 Bitmap bitmap, int type, in
132 texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
214 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
284 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
286 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DBasePermission.java35 final int type; field in class:BasePermission
50 type = _type;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowToken.java37 // The type of window this token is for, as per WindowManager.LayoutParams.
74 WindowToken(WindowManagerService _service, IBinder _token, int type, boolean _explicit) { argument
77 windowType = type;
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebData.java109 TestWebData(int length, int lastModified, String name, String type, boolean isDir) { argument
113 testType = type;
126 // The MIME type to assume for this test
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DFragmentShader.java56 public Builder setObjectConst(Type type) { argument
57 mShader.mPerObjConstants = type;
61 public Builder setShaderConst(Type type) { argument
62 mShader.mPerShaderConstants = type;
H A DVertexShader.java52 public Builder setObjectConst(Type type) { argument
53 mShader.mPerObjConstants = type;
57 public Builder setShaderConst(Type type) { argument
58 mShader.mPerShaderConstants = type;
/frameworks/base/tools/aapt/
H A DResourceIdCache.cpp50 const android::String16& type,
54 hashable += type;
61 const android::String16& type,
64 const String16 hashedName = makeHashableName(package, type, name, onlyPublic);
87 const android::String16& type,
92 const String16 hashedName = makeHashableName(package, type, name, onlyPublic);
49 makeHashableName(const android::String16& package, const android::String16& type, const android::String16& name, bool onlyPublic) argument
60 lookup(const android::String16& package, const android::String16& type, const android::String16& name, bool onlyPublic) argument
86 store(const android::String16& package, const android::String16& type, const android::String16& name, bool onlyPublic, uint32_t resId) argument
/frameworks/base/tools/preload/
H A DProc.java91 Operation.Type type) {
93 this, loadedClass, time, operationCount++, type);
90 startOperation(int threadId, LoadedClass loadedClass, long time, Operation.Type type) argument
H A DRecord.java85 final Type type; field in class:Record
102 case '>': type = Type.START_LOAD; break;
103 case '<': type = Type.END_LOAD; break;
104 case '+': type = Type.START_INIT; break;
105 case '-': type = Type.END_INIT; break;

Completed in 1000 milliseconds

1234567891011>>