Searched refs:method (Results 76 - 100 of 138) sorted by relevance

123456

/frameworks/base/libs/androidfw/
H A DAsset.cpp185 int method; local
208 scanResult = ZipUtils::examineGzip(fp, &method, &uncompressedLen,
219 result = pAsset->openChunk(fd, offset, method, uncompressedLen,
293 int method, size_t uncompressedLen, AccessMode mode)
299 result = pAsset->openChunk(dataMap, method, uncompressedLen);
292 createFromCompressedMap(FileMap* dataMap, int method, size_t uncompressedLen, AccessMode mode) argument
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp1052 AString method; local
1054 data->getRequestField(0, &method);
1062 if (method.startsWith("RTSP/")) {
1100 if (method == "OPTIONS") {
1102 } else if (method == "SETUP") {
1104 } else if (method == "PLAY") {
1106 } else if (method == "PAUSE") {
1108 } else if (method == "TEARDOWN") {
1110 } else if (method == "GET_PARAMETER") {
1112 } else if (method
[all...]
/frameworks/base/core/java/android/text/format/
H A DDateFormat.java48 * this class offers the {@link #getBestDateTimePattern} method.
183 * <p>This method will automatically correct for grammatical necessity. Given the
184 * same "MMMMd" input, this method will return "d LLLL" in the {@code fa_IR} locale,
189 * <p>This method will only return patterns that are in CLDR, and is useful whenever
/frameworks/base/core/java/android/content/
H A DIContentProvider.java58 public Bundle call(String callingPkg, String method, String arg, Bundle extras) argument
H A DContentProviderClient.java389 public Bundle call(String method, String arg, Bundle extras) throws RemoteException { argument
392 return mContentProvider.call(mPackageName, method, arg, extras);
H A DContentProvider.java75 * main thread, and must avoid performing lengthy operations. See the method
322 public Bundle call(String callingPkg, String method, String arg, Bundle extras) { argument
325 return ContentProvider.this.call(method, arg, extras);
588 * this content provider. This method can be called from multiple
610 * this content provider. This method can be called from multiple
632 * this content provider. This method can be called from multiple
656 * This method is called for all registered content providers on the
673 * from this method. (Instead, override
683 * This method is always called on the application main thread, and must
687 * Override this method t
1640 call(String method, String arg, Bundle extras) argument
[all...]
H A DContentProviderNative.java271 String method = data.readString();
275 Bundle responseBundle = call(callingPkg, method, stringArg, args);
622 public Bundle call(String callingPkg, String method, String request, Bundle args) argument
630 data.writeString(method);
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java17 package android.text.method;
H A DReplacementTransformationMethod.java17 package android.text.method;
29 * This transformation method causes the characters in the {@link #getOriginal}
H A DQwertyKeyListener.java17 package android.text.method;
20 import android.text.method.TextKeyListener.Capitalize;
406 * Call this method when you have done or are about to do an
H A DLinkMovementMethod.java17 package android.text.method;
30 * A movement method that traverses links in the text buffer and scrolls if necessary.
H A DPasswordTransformationMethod.java17 package android.text.method;
H A DTextKeyListener.java17 package android.text.method;
H A DTouch.java17 package android.text.method;
/frameworks/base/core/java/android/widget/
H A DMultiAutoCompleteTextView.java24 import android.text.method.QwertyKeyListener;
86 * this subclass method filters on the range from
133 * Instead of validating the entire text, this subclass method validates
165 * override this method to filter with a different pattern, for
181 * Subclasses may override this method to do some different
H A DRemoteViews.java387 Log.e(LOG_TAG, "The method setOnClickFillInIntent is available " +
750 Method method;
763 method = methods.get(mPair);
764 if (method == null) {
767 method = klass.getMethod(methodName);
769 method = klass.getMethod(methodName, paramType);
772 throw new ActionException("view: " + klass.getName() + " doesn't have method: "
776 if (!method.isAnnotationPresent(RemotableViewMethod.class)) {
778 + " can't use method with RemoteViews: "
782 methods.put(new MutablePair<String, Class<?>>(methodName, paramType), method);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java22 import android.text.method.KeyListener;
108 // new method.
124 * Calls the {@link TextView#onCommitCorrection} method of the associated TextView.
/frameworks/base/include/androidfw/
H A DAsset.h185 * data. "method" is a Zip archive compression method constant.
189 static Asset* createFromCompressedMap(FileMap* dataMap, int method,
/frameworks/base/services/java/com/android/server/
H A DMountService.java372 final String method; field in class:MountService.UmsEnableCallBack
374 UmsEnableCallBack(String path, String method, boolean force) { argument
376 this.method = method;
382 doShareUnshareVolume(path, method, true);
621 // This method runs on the handler thread,
649 private void doShareUnshareVolume(String path, String method, boolean enable) { argument
651 if (!method.equals("ums")) {
652 throw new IllegalArgumentException(String.format("Method %s not supported", method));
656 mConnector.execute("volume", enable ? "share" : "unshare", path, method);
1099 doGetVolumeShared(String path, String method) argument
[all...]
H A DInputMethodManagerService.java205 final IInputMethod method; field in class:InputMethodManagerService.SessionState
213 + " method " + Integer.toHexString(
214 System.identityHashCode(method))
224 method = _method;
266 * Id of the currently selected input method.
277 * The client that is currently bound to an input method.
297 * The input method ID of the input method service that we are currently
303 * The current subtype of the current input method.
322 * Set if the client has asked for the input method t
570 MethodCallback(InputMethodManagerService imms, IInputMethod method, InputChannel channel) argument
1280 onSessionCreated(IInputMethod method, IInputMethodSession session, InputChannel channel) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_GraphicBuffer.cpp92 #define INVOKEV(object, method, ...) \
93 env->CallVoidMethod(object, method, __VA_ARGS__)
288 LOG_FATAL_IF(!var, "Unable to find method " methodName);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java581 public Bundle call(String method, String request, Bundle args) { argument
600 if (Settings.CALL_METHOD_GET_SYSTEM.equals(method)) {
606 if (Settings.CALL_METHOD_GET_SECURE.equals(method)) {
612 if (Settings.CALL_METHOD_GET_GLOBAL.equals(method)) {
643 if (Settings.CALL_METHOD_PUT_SYSTEM.equals(method)) {
646 } else if (Settings.CALL_METHOD_PUT_SECURE.equals(method)) {
649 } else if (Settings.CALL_METHOD_PUT_GLOBAL.equals(method)) {
653 Slog.w(TAG, "call() with invalid method: " + method);
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp769 // support the method.
955 const AString &request, AString *method, AString *url) {
962 method->setTo(request, 0, space1);
997 AString method, url; local
998 GetMethodAndURL(*request, &method, &url);
1008 A2.append(method);
954 GetMethodAndURL( const AString &request, AString *method, AString *url) argument
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp112 // bitmap will go out of scope when we return from this method.
171 // bitmap will go out of scope when we return from this method.
451 int method; local
453 if (zip.getEntryInfo(entry, &method, 0, 0, 0, 0, 0)) {
454 if (method == ZipFileRO::kCompressStored) {
/frameworks/base/core/java/android/text/util/
H A DLinkify.java20 import android.text.method.LinkMovementMethod;
21 import android.text.method.MovementMethod;
253 * are found the movement method for the TextView is set to
297 * text match areas, and the movement method for the text is changed
313 * text match areas, and the movement method for the text is changed

Completed in 1000 milliseconds

123456