HomeSort by relevance Sort by last modified time
    Searched refs:ssp (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /packages/apps/Contacts/src/com/android/contacts/activities/
ShowOrCreateActivity.java 106 String ssp = null; local
109 ssp = data.getSchemeSpecificPart();
122 mCreateDescrip = ssp;
130 mCreateExtras.putString(Intents.Insert.EMAIL, ssp);
132 Uri uri = Uri.withAppendedPath(Email.CONTENT_FILTER_URI, Uri.encode(ssp));
136 mCreateExtras.putString(Intents.Insert.PHONE, ssp);
138 Uri uri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, ssp);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsConfiguration.java 89 SystemServicesProxy ssp = Recents.getSystemServices(); local
99 smallestWidth = ssp.getDeviceSmallestWidth();
RecentsImpl.java 356 final SystemServicesProxy ssp = Recents.getSystemServices(); local
441 SystemServicesProxy ssp = Recents.getSystemServices(); local
442 if (ssp.isRecentsActivityVisible(isHomeStackVisible)) {
511 SystemServicesProxy ssp = Recents.getSystemServices();
512 if (!ssp.isRecentsActivityVisible(null)) {
558 SystemServicesProxy ssp = Recents.getSystemServices();
599 ssp.startInPlaceAnimationOnFrontMostApplication(
614 SystemServicesProxy ssp = Recents.getSystemServices(); local
661 ssp.startInPlaceAnimationOnFrontMostApplication(
665 ssp.startInPlaceAnimationOnFrontMostApplication
694 SystemServicesProxy ssp = Recents.getSystemServices(); local
761 SystemServicesProxy ssp = Recents.getSystemServices(); local
958 SystemServicesProxy ssp = Recents.getSystemServices(); local
    [all...]
RecentsActivity.java 231 SystemServicesProxy ssp = Recents.getSystemServices(); local
232 if (ssp.isRecentsActivityVisible()) {
243 SystemServicesProxy ssp = Recents.getSystemServices(); local
244 if (ssp.isRecentsActivityVisible()) {
257 SystemServicesProxy ssp = Recents.getSystemServices(); local
258 if (ssp.isRecentsActivityVisible()) {
292 SystemServicesProxy ssp = Recents.getSystemServices(); local
293 if (ssp.isRecentsActivityVisible()) {
309 SystemServicesProxy ssp = Recents.getSystemServices(); local
310 if (ssp == null)
763 SystemServicesProxy ssp = Recents.getSystemServices(); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mn10300/
am33.s 28 mov ssp,a1
32 mov a1,ssp
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 262 final String ssp = uri.getSchemeSpecificPart(); local
264 if (ssp.startsWith(BASE64_URI_PREFIX)) {
265 final String base64 = ssp.substring(BASE64_URI_PREFIX.length());
267 } else if (BASE64_IMAGE_URI_PATTERN.matcher(ssp).matches()){
268 final String base64 = ssp.substring(
269 ssp.indexOf(BASE64_URI_PREFIX) + BASE64_URI_PREFIX.length());
  /packages/apps/Tag/src/com/android/apps/tag/record/
UriRecord.java 86 String ssp = mUri.getSchemeSpecificPart(); local
87 int offset = ssp.indexOf('?');
89 ssp = ssp.substring(0, offset);
92 return context.getString(R.string.action_call, PhoneNumberUtils.formatNumber(ssp));
94 return context.getString(R.string.action_text, PhoneNumberUtils.formatNumber(ssp));
  /cts/tests/tests/net/src/android/net/cts/
UriTest.java 324 String ssp = sb.toString(); local
339 uriString, ssp, uri, scheme, authority, path, query, fragment);
341 uriString, ssp, uri, scheme, authority, path, query, fragment);
348 uriString, ssp, uri, scheme, authority, path, query, fragment);
350 uriString, ssp, uri, scheme, authority, path, query, fragment);
365 uriString, ssp, built, scheme, authority, path, query, fragment);
367 uriString, ssp, built, scheme, authority, path, query, fragment);
379 uriString, ssp, built, scheme, authority, path, query, fragment);
381 uriString, ssp, built, scheme, authority, path, query, fragment);
387 uriString, ssp, built, scheme, authority, path, query, fragment)
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 383 String ssp = getSchemeSpecificPart(); local
391 if (ssp != null) {
392 for (int i=0; i<ssp.length(); i++) {
393 char c = ssp.charAt(i);
404 ssp = "//" + ((getHost() != null) ? getHost() : "")
410 // the data we include -- only the ssp, not the query params or
417 if (ssp != null) {
418 builder.append(ssp);
538 // No ssp.
542 // If the ssp starts with a '/', this is hierarchical
564 private Part ssp; field in class:Uri.StringUri
861 private final Part ssp; field in class:Uri.OpaqueUri
1216 private Part ssp; field in class:Uri.HierarchicalUri
    [all...]
  /external/ltp/testcases/kernel/sched/tool/
trace_sched.c 200 struct sched_param ssp; /* set schedule priority. */ local
215 ssp.sched_priority = 0;
223 ssp.sched_priority = set_priority;
230 if ((sched_setscheduler(getpid(), sched_policy, &ssp)) == -1) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
unistd.h 38 #include <ssp.h>
stdio.h 38 #include <ssp.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
unistd.h 38 #include <ssp.h>
stdio.h 38 #include <ssp.h>
  /external/robolectric/v1/src/main/java/android/net/
Uri__FromAndroid.java 464 // No ssp.
468 // If the ssp starts with a '/', this is hierarchical.
490 private Part ssp; field in class:Uri__FromAndroid.StringUri
493 return ssp == null ? ssp = Part.fromEncoded(parseSsp()) : ssp;
742 * Creates an opaque Uri from the given components. Encodes the ssp
746 * @param ssp scheme-specific-part, everything between the
752 * @throws NullPointerException if scheme or ssp is null
753 * @return Uri composed of the given scheme, ssp, and fragmen
779 private final Part ssp; field in class:Uri__FromAndroid.OpaqueUri
1134 private Part ssp; field in class:Uri__FromAndroid.HierarchicalUri
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
UriTest.java 438 String ssp = sb.toString(); local
453 uriString, ssp, uri, scheme, authority, path, query, fragment);
455 uriString, ssp, uri, scheme, authority, path, query, fragment);
462 uriString, ssp, uri, scheme, authority, path, query, fragment);
464 uriString, ssp, uri, scheme, authority, path, query, fragment);
479 uriString, ssp, built, scheme, authority, path, query, fragment);
481 uriString, ssp, built, scheme, authority, path, query, fragment);
493 uriString, ssp, built, scheme, authority, path, query, fragment);
495 uriString, ssp, built, scheme, authority, path, query, fragment);
501 uriString, ssp, built, scheme, authority, path, query, fragment)
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 154 private static final String SSP_STR = "ssp";
1718 String ssp = parser.getAttributeValue(null, LITERAL_STR); local
    [all...]
  /external/llvm/lib/Support/
regengine.inc 307 const char *ssp; /* start of string matched by subsubRE */
309 const char *oldssp; /* previous ssp */
391 ssp = sp;
392 oldssp = ssp;
394 sep = slow(m, ssp, rest, ssub, esub);
395 if (sep == NULL || sep == ssp)
397 oldssp = ssp; /* on to next try */
398 ssp = sep;
402 sep = ssp;
403 ssp = oldssp
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
regengine.inc 307 const char *ssp; /* start of string matched by subsubRE */
309 const char *oldssp; /* previous ssp */
391 ssp = sp;
392 oldssp = ssp;
394 sep = slow(m, ssp, rest, ssub, esub);
395 if (sep == NULL || sep == ssp)
397 oldssp = ssp; /* on to next try */
398 ssp = sep;
402 sep = ssp;
403 ssp = oldssp
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regengine.inc 307 const char *ssp; /* start of string matched by subsubRE */
309 const char *oldssp; /* previous ssp */
391 ssp = sp;
392 oldssp = ssp;
394 sep = slow(m, ssp, rest, ssub, esub);
395 if (sep == NULL || sep == ssp)
397 oldssp = ssp; /* on to next try */
398 ssp = sep;
402 sep = ssp;
403 ssp = oldssp
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 369 const char *ssp; /* start of string matched by subsubRE */ local
371 const char *oldssp; /* previous ssp */
464 ssp = sp;
465 oldssp = ssp;
467 sep = slow(m, ssp, rest, ssub, esub);
468 if (sep == NULL || sep == ssp)
470 oldssp = ssp; /* on to next try */
471 ssp = sep;
475 sep = ssp;
476 ssp = oldssp
575 const char *ssp; \/* start of string matched by subsubRE *\/ local
    [all...]
  /packages/apps/Car/LensPicker/src/com/android/support/car/lenspicker/
LensResolverActivity.java 254 String ssp = data.getSchemeSpecificPart(); local
255 while (ssp != null && pIt.hasNext()) {
257 if (p.match(ssp)) {
  /external/llvm/bindings/go/llvm/
ir_test.go 83 {StackProtectAttribute, "ssp"},
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
Divider.java 58 SystemServicesProxy ssp = Recents.getSystemServices(); local
59 ssp.registerDockedStackListener(mDockDividerVisibilityListener);
  /hardware/intel/bootstub/
bootstub.mk 4 BOOTSTUB_SRC_FILES := bootstub.c sfi.c ssp-uart.c imr_toc.c spi-uart.c

Completed in 1685 milliseconds

1 2 3 4 5