Searched refs:method (Results 51 - 75 of 91) sorted by relevance

1234

/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;
376 * Call this method when you have done or are about to do an
H A DArrowKeyMovementMethod.java17 package android.text.method;
H A DLinkMovementMethod.java17 package android.text.method;
H A DPasswordTransformationMethod.java17 package android.text.method;
H A DScrollingMovementMethod.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/webkit/
H A DBrowserFrame.java255 * Load a url with "POST" method from the network into the main frame.
354 * This method will be called once for the main frame.
406 * This method will be called once for the main frame.
495 // FIXME: The activity must call getTitle (a native method) to get the
532 * This method is called by WebCore to inform the frame that
548 * This method is called by WebCore to check whether application
628 * @param method The http method.
630 * @param postData If the method is "POST" postData is sent as the request
641 String method,
639 startLoadingResource(int loaderHandle, String url, String method, HashMap headers, byte[] postData, long postDataIdentifier, int cacheMode, boolean mainResource, boolean userGesture, boolean synchronous, String username, String password) argument
[all...]
H A DFrameLoader.java54 String method) {
57 mMethod = method;
53 FrameLoader(LoadListener listener, WebSettings settings, String method) argument
H A DWebTextView.java36 import android.text.method.MovementMethod;
37 import android.text.method.Touch;
71 // on the enter key. The method for blocking unmatched key ups prevents
693 * Determine whether to use the system-wide password disguising method,
/frameworks/base/core/java/android/widget/
H A DMultiAutoCompleteTextView.java29 import android.text.method.QwertyKeyListener;
96 * this subclass method filters on the range from
143 * Instead of validating the entire text, this subclass method validates
175 * override this method to filter with a different pattern, for
191 * Subclasses may override this method to do some different
H A DRemoteViews.java456 Method method;
458 method = klass.getMethod(this.methodName, getParameterType());
461 throw new ActionException("view: " + klass.getName() + " doesn't have method: "
465 if (!method.isAnnotationPresent(RemotableViewMethod.class)) {
467 + " can't use method with RemoteViews: "
474 Log.d("RemoteViews", "view: " + klass.getName() + " calling method: "
478 method.invoke(view, this.value);
772 * Call a method taking one boolean on a view in the layout for this RemoteViews.
775 * @param methodName The name of the method to call.
776 * @param value The value to pass to the method
[all...]
H A DNumberPicker.java27 import android.text.method.NumberKeyListener;
433 // soft input method!
/frameworks/base/include/utils/
H A DAsset.h183 * data. "method" is a Zip archive compression method constant.
187 static Asset* createFromCompressedMap(FileMap* dataMap, int method,
/frameworks/base/core/java/android/text/util/
H A DLinkify.java19 import android.text.method.LinkMovementMethod;
20 import android.text.method.MovementMethod;
249 * are found the movement method for the TextView is set to
293 * text match areas, and the movement method for the text is changed
309 * text match areas, and the movement method for the text is changed
/frameworks/base/media/libstagefright/rtsp/
H A DARTSPConnection.cpp709 // support the method.
891 const AString &request, AString *method, AString *url) {
898 method->setTo(request, 0, space1);
933 AString method, url; local
934 GetMethodAndURL(*request, &method, &url);
944 A2.append(method);
890 GetMethodAndURL( const AString &request, AString *method, AString *url) argument
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp100 // bitmap will go out of scope when we return from this method.
153 // bitmap will go out of scope when we return from this method.
399 int method; local
401 if (zip.getEntryInfo(entry, &method, 0, 0, 0, 0, 0)) {
402 if (method == ZipFileRO::kCompressStored) {
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java106 * class is not already loaded, or a method is not found, the entry
120 * Invokes a static "main(argv[]) method on class "className".
155 "Main method is not public and static on " + className);
160 * by invoking the exception's run() method. This arrangement
820 * Helper exception class which holds a method and arguments and
826 /** method to call */
832 public MethodAndArgsCaller(Method method, String[] args) { argument
833 mMethod = method;
/frameworks/base/services/java/com/android/server/
H A DTelephonyRegistry.java585 private boolean checkNotifyPermission(String method) { argument
590 String msg = "Modify Phone State Permission Denial: " + method + " from pid="
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java108 private CSeqHeader createCSeqHeader(String method) argument
111 return mHeaderFactory.createCSeqHeader(sequence, method);
/frameworks/base/libs/utils/
H A DAssetManager.cpp832 int method; local
837 //pZipFile->getEntryInfo(entry, &method, &uncompressedLen, &compressedLen,
839 if (!pZipFile->getEntryInfo(entry, &method, &uncompressedLen, NULL, NULL,
852 if (method == ZipFileRO::kCompressStored) {
857 pAsset = Asset::createFromCompressedMap(dataMap, method,
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java351 public Bundle call(String method, String request, Bundle args) { argument
352 if (Settings.CALL_METHOD_GET_SYSTEM.equals(method)) {
355 if (Settings.CALL_METHOD_GET_SECURE.equals(method)) {
/frameworks/base/tools/aapt/
H A DZipFile.cpp465 int method; local
468 scanResult = ZipUtils::examineGzip(inputFp, &method, &uncompressedLen,
470 if (!scanResult || method != ZipEntry::kCompressDeflated) {

Completed in 1118 milliseconds

1234