Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 9 of 9) sorted by relevance

/tools/dexter/slicer/
Ddex_utf8.cc49 int Utf8Cmp(const char* s1, const char* s2) { in Utf8Cmp() argument
51 if (*s1 == '\0') { in Utf8Cmp()
60 int utf1 = GetUtf16FromUtf8(&s1); in Utf8Cmp()
Ddex_bytecode.cc172 dec.vA = s1(InstAA(inst)); // sign-extend 8-bit value in DecodeInstruction()
203 dec.vC = s1(bytecode[1] >> 8); // sign-extend 8-bit value in DecodeInstruction()
/tools/tradefederation/core/src/com/android/tradefed/util/
DFixedByteArrayOutputStream.java59 InputStream s1 = new ByteArrayInputStream(mBuffer, mWritePos, in getData() local
62 return new SequenceInputStream(s1, s2); in getData()
/tools/apksig/src/test/java/com/android/apksig/internal/asn1/
DAsn1BerParserTest.java212 assertNotNull(c.s1); in testChoiceWithSameTypedOptions()
218 assertNull(c.s1); in testChoiceWithSameTypedOptions()
224 assertNull(c.s1); in testChoiceWithSameTypedOptions()
381 public EmptySequence s1; field in Asn1BerParserTest.ChoiceWithThreeSequenceOptions
/tools/external_updater/
Dregen_bp.sh140 s1=`printf "$1" "NAME" "$NAME"`
144 echo "$s1;$s2;$s3;$s4"
/tools/dexter/slicer/export/slicer/
Ddex_utf8.h31 int Utf8Cmp(const char* s1, const char* s2);
Ddex_format.h34 typedef int8_t s1; typedef
/tools/test/connectivity/acts/framework/acts/
Dutils.py1134 def string_similarity(s1, s2): argument
1144 lev = levenshtein(s1, s2)
1146 lev_ratio = float(lev) / max(len(s1), len(s2))
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/
DGTestTest.java465 String s1 = "/foo/" + expected; in testGetFileName() local
468 assertEquals(expected, mGTest.getFileName(s1)); in testGetFileName()