Searched refs:stripComments (Results 1 – 4 of 4) sorted by relevance
/external/smali/baksmali/src/test/java/org/jf/baksmali/ |
D | BaksmaliTestUtils.java | 51 … BaksmaliOptions options, boolean stripComments) throws IOException, in assertSmaliCompiledEquals() argument 56 String normalizedActual = getNormalizedSmali(classDef, options, stripComments); in assertSmaliCompiledEquals() 57 String normalizedExpected = normalizeSmali(expected, stripComments); in assertSmaliCompiledEquals() 75 public static String normalizeSmali(@Nonnull String smaliText, boolean stripComments) { in normalizeSmali() argument 76 if (stripComments) { in normalizeSmali() 77 smaliText = TextUtils.stripComments(smaliText); in normalizeSmali() 84 boolean stripComments) in getNormalizedSmali() argument 91 return normalizeSmali(stringWriter.toString(), stripComments); in getNormalizedSmali()
|
/external/smali/util/src/test/java/org/jf/util/ |
D | TextUtilsTest.java | 40 Assert.assertEquals("", TextUtils.stripComments("#world")); in testStripComments() 41 Assert.assertEquals("hello", TextUtils.stripComments("hello#world")); in testStripComments() 42 … Assert.assertEquals("multi\nline", TextUtils.stripComments("multi#hello world\nline#world")); in testStripComments()
|
/external/smali/util/src/main/java/org/jf/util/ |
D | TextUtils.java | 77 public static String stripComments(@Nonnull String source) { in stripComments() method in TextUtils
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/WindowsManifest/ |
D | WindowsManifestMerger.cpp | 542 static void stripComments(xmlNodePtr Root) { in stripComments() function 546 stripComments(Child); in stripComments() 640 stripComments(AdditionalRoot); in merge()
|