HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 276 - 300 of 877) sorted by null

<<11121314151617181920>>

  /external/apache-http/android/src/android/net/http/
AndroidHttpClient.java 34 import org.apache.http.conn.scheme.PlainSocketFactory;
35 import org.apache.http.conn.scheme.Scheme;
36 import org.apache.http.conn.scheme.SchemeRegistry;
131 schemeRegistry.register(new Scheme("http",
133 schemeRegistry.register(new Scheme("https",
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiTransform.java 120 * input ordering scheme to the bidi layout defined by the output ordering
121 * scheme, and applies character mirroring and Arabic shaping operations.
138 * An "ordering scheme" encompasses the base direction and the order of
166 * All combinations that involve the Visual RTL scheme are unsupported by
244 text scheme at the time shaping is invoked. */
278 * caller-defined scheme.
284 for (ReorderingScheme scheme : ReorderingScheme.values()) {
285 if (scheme.matches(inLevel, inOrder, outLevel, outOrder)) {
286 return scheme;
602 * Indicates whether this scheme matches another one in terms o
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiTransform.java 126 * input ordering scheme to the bidi layout defined by the output ordering
127 * scheme, and applies character mirroring and Arabic shaping operations.
144 * An "ordering scheme" encompasses the base direction and the order of
172 * All combinations that involve the Visual RTL scheme are unsupported by
251 text scheme at the time shaping is invoked. */
285 * caller-defined scheme.
291 for (ReorderingScheme scheme : ReorderingScheme.values()) {
292 if (scheme.matches(inLevel, inOrder, outLevel, outOrder)) {
293 return scheme;
609 * Indicates whether this scheme matches another one in terms o
    [all...]
  /external/pdfium/third_party/libtiff/
tif_zip.c 41 * be read; they should be converted to a different compression scheme
396 TIFFInitZIP(TIFF* tif, int scheme)
401 assert( (scheme == COMPRESSION_DEFLATE)
402 || (scheme == COMPRESSION_ADOBE_DEFLATE));
  /frameworks/base/media/java/android/media/
Utils.java 359 String scheme = uri.getScheme();
361 if (ContentResolver.SCHEME_FILE.equals(scheme)) {
363 } else if (ContentResolver.SCHEME_CONTENT.equals(scheme)) {
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java 646 * @param scheme
647 * Expected scheme, for example, "file". If null, scheme is
672 String scheme,
722 if (scheme != null) {
723 assertEquals(assertID, scheme, actualScheme);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupUtil.java 107 public static List<String> getSendToDataForIds(Context context, long[] ids, String scheme) {
110 final String select = (ContactsUtils.SCHEME_MAILTO.equals(scheme)
117 ContactsUtils.SCHEME_MAILTO.equals(scheme)
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MoviePlayer.java 324 String scheme = mUri.getScheme(); local
325 if ("http".equalsIgnoreCase(scheme) || "rtsp".equalsIgnoreCase(scheme)) {
  /system/tpm/trunks/
tpm_generated_test.cc 395 std::string scheme("\x00\x10", 2); // scheme=TPM_ALG_NULL
414 expected_command += auth_in + user_data + scheme;
437 null_scheme.scheme = TPM_ALG_NULL;
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/1.0.1/
grpc-netty-1.0.1.jar 
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodProvisioningTestActivity.java 112 return new Uri.Builder().scheme(ContentResolver.SCHEME_ANDROID_RESOURCE)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
SearchUtil.java 125 .scheme(ContentResolver.SCHEME_CONTENT)
  /cts/tests/app/src/android/app/cts/
NotificationChannelTest.java 128 Uri expected = new Uri.Builder().scheme("fruit").appendQueryParameter("favorite", "bananas")
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/util/
DigitalWatchFaceUtil.java 129 .scheme("wear")
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/util/
DigitalWatchFaceUtil.java 129 .scheme("wear")
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DigitalWatchFaceUtil.java 127 .scheme("wear")
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
actions.rb 191 @token::scheme {
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ThreadSafeClientConnManager.java 41 import org.apache.http.conn.scheme.SchemeRegistry;
93 * @param schreg the scheme registry
139 * @param schreg the scheme registry to use, or <code>null</code>
  /external/libcups/cups/
http.h 361 HTTP_URI_STATUS_BAD_SCHEME = -2, /* Bad scheme in URI (error) */
364 HTTP_URI_STATUS_MISSING_SCHEME, /* Missing scheme in URI (warning) */
365 HTTP_URI_STATUS_UNKNOWN_SCHEME, /* Unknown scheme in URI (warning) */
533 const char *scheme,
539 const char *scheme,
556 char *scheme, int schemelen,
567 extern void httpSetAuthString(http_t *http, const char *scheme,
  /external/libmicrohttpd/src/examples/
mhd2spdy.c 131 glob_opt.spdy_connection = spdy_connect(spdy2http_uri, spdy2http_uri->port, strcmp("https", spdy2http_uri->scheme)==0);
mhd2spdy_structures.h 89 char * scheme; member in struct:URI
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Address.java 56 .scheme(sslSocketFactory != null ? "https" : "http")
  /external/wpa_supplicant_8/src/wps/
upnp_xml.c 186 * schema following actionName will be WFA scheme instead
  /frameworks/base/core/java/android/nfc/
NfcAdapter.java 80 * so that MIME, URI scheme and URI host are always lower-case.
812 * Uri you provide must have either scheme 'file' or scheme 'content'.
884 String scheme = uri.getScheme(); local
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
IntentUtilities.java 48 b.scheme(ACTIVITY_INTENT_SCHEME);

Completed in 2407 milliseconds

<<11121314151617181920>>