Searched defs:s1 (Results 1 - 10 of 10) sorted by relevance

/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
H A DInspectorProvider.java65 public Cursor queryChildDocuments(String s, String[] projection, String s1) argument
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dnj_str.c64 NJ_INT16 nj_strcmp(NJ_CHAR *s1, NJ_CHAR *s2) { argument
66 while (*s1 == *s2) {
67 if (*s1 == NJ_CHAR_NUL) {
70 s1++;
73 return NJ_CHAR_DIFF(s1, s2);
76 NJ_INT16 nj_strncmp(NJ_CHAR *s1, NJ_CHAR *s2, NJ_UINT16 n) { argument
79 if (*s1 != *s2++) {
80 return NJ_CHAR_DIFF(s1, (s2 - 1));
82 if (*s1++ == NJ_CHAR_NUL) {
102 NJ_INT16 nj_charncmp(NJ_CHAR *s1, NJ_CHA argument
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/model/account/
H A DExternalAccountTypeTest.java226 private static int findCommonPrefixEnd(String s1, String s2) { argument
229 final boolean s1End = (s1.length() <= i);
234 if (s1.charAt(i) != s2.charAt(i)) {
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dunittest.h52 inline int StrCmp(const Ch* s1, const Ch* s2) { argument
53 while(*s1 && (*s1 == *s2)) { s1++; s2++; }
54 return (unsigned)*s1 < (unsigned)*s2 ? -1 : (unsigned)*s1 > (unsigned)*s2;
/packages/apps/TV/src/com/android/tv/data/
H A DBaseProgram.java68 public static int numberCompare(String s1, String s2) { argument
69 if (s1 == s2) {
71 } else if (s1 == null) {
75 } else if (s1.equals(s2)) {
79 return Integer.compare(Integer.parseInt(s1), Integer.parseInt(s2));
81 return s1.compareTo(s2);
/packages/apps/DevCamera/src/com/android/devcamera/
H A DCameraInterface.java102 void setNoiseEdgeText(String s1, String s2); argument
107 void setNoiseEdgeTextForReprocessing(String s1, String s2); argument
/packages/apps/Nfc/nci/jni/extns/pn54x/src/mifare/
H A DphFriNfc_MifStdFormat.cpp71 static int phFriNfc_MfStd_MemCompare(void* s1, void* s2, unsigned int n);
1326 static int phFriNfc_MfStd_MemCompare(void* s1, void* s2, unsigned int n) { argument
1328 int8_t* char_1 = (int8_t*)s1;
1330 if (NULL == s1 || NULL == s2) {
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp78 SitePointer s1, s2, s3; local
111 a = makeEdge((s1 = sp[low]), (s2 = sp[low+1]));
114 if (ccw(s1, s3, s2)) {
121 if (ccw(s1, s2, s3)) {
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DStringUtil.java2331 @Deprecated public static int compareToIgnoreCase(String s1, String s2, argument
2333 if (s1 == s2) {
2336 if (s1 == null) {
2342 return s1.compareToIgnoreCase(s2);
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 297 milliseconds