HomeSort by relevance Sort by last modified time
    Searched full:endswith (Results 1 - 25 of 3543) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/es6/
string-endswith.js 28 assertEquals(1, String.prototype.endsWith.length);
31 assertTrue(testString.endsWith(""));
32 assertTrue(testString.endsWith("World"));
33 assertFalse(testString.endsWith("world"));
34 assertFalse(testString.endsWith("Hello World!"));
35 assertFalse(testString.endsWith(null));
36 assertFalse(testString.endsWith(undefined));
38 assertTrue("null".endsWith(null));
39 assertTrue("undefined".endsWith(undefined));
42 assertTrue(georgianUnicodeString.endsWith(georgianUnicodeString))
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
EndsWith.java 14 public class EndsWith extends ArgumentMatcher<String> implements Serializable {
19 public EndsWith(String suffix) {
24 return actual != null && ((String) actual).endsWith(suffix);
28 description.appendText("endsWith(\"" + suffix + "\")");
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/utils/
AssetsFileGenerator.java 28 if (!args[0].endsWith("/")) args[0] = args[0] + "/";
42 if (fileName.endsWith(".png") || fileName.endsWith(".jpg") || fileName.endsWith(".jpeg")) {
45 } else if (fileName.endsWith(".glsl") || fileName.endsWith(".fnt") || fileName.endsWith(".pack")
46 || fileName.endsWith(".obj") || file.extension().equals("") || fileName.endsWith("txt")) {
50 if (fileName.endsWith(".mp3") || fileName.endsWith(".ogg") || fileName.endsWith(".wav")) continue;
    [all...]
  /external/hamcrest/library/src/org/hamcrest/text/
StringEndsWith.java 17 return s.endsWith(substring);
25 public static Matcher<String> endsWith(String substring) {
  /external/v8/tools/gyp/pylib/gyp/generator/
ninja_test.py 25 endswith('.exe'))
27 endswith('.dll'))
29 endswith('.lib'))
42 endswith('.so'))
44 endswith('.a'))
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
classinit.py 23 if (name.endswith('__get') or name.endswith('__set')
24 or name.endswith('__del')):
39 if name.endswith('__get') and value.__doc__:
  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 22 public class EndsWith implements IArgumentMatcher, Serializable {
28 public EndsWith(String suffix) {
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/
__main__.py 4 if sys.argv[0].endswith("__main__.py"):
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/
__main__.py 4 if sys.argv[0].endswith("__main__.py"):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
__main__.py 4 if sys.argv[0].endswith("__main__.py"):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
__main__.py 4 if sys.argv[0].endswith("__main__.py"):
  /external/autotest/client/tests/bonnie/
bonnie.py 12 if size.endswith('G') or size.endswith('g'):
15 if size.endswith('M') or size.endswith('m'):
19 if chunk.endswith('K') or chunk.endswith('k'):
  /external/chromium-trace/catapult/tracing/tracing/ui/base/
file.html 24 var is_binary = filename.endsWith('.gz') || filename.endsWith('.zip');
  /external/autotest/client/cros/cellular/wardmodem/state_machines/
__init__.py 5 if (file_name.endswith('.py') and
  /frameworks/base/test-runner/src/junit/runner/
SimpleTestCollector.java 17 classFileName.endsWith(".class") &&
  /external/chromium-trace/catapult/systrace/profile_chrome/
profiler_unittest.py 29 self.assertTrue(result.endswith('.html'))
40 self.assertFalse(result.endswith('.html'))
54 self.assertTrue(result.endswith('.zip'))
  /frameworks/native/opengl/tools/glgen/src/
ParameterChecker.java 48 (functionName.endsWith("fv") ||
49 functionName.endsWith("xv") ||
50 functionName.endsWith("iv"))) {
  /packages/apps/Settings/
wrap_alpha.py 21 if not src.endswith(".png"): continue
26 alpha = src.endswith("_alpha")
33 am = src.endswith("_am")
  /system/tools/aidl/
options_unittest.cpp 129 TEST(OptionsTests, EndsWith) {
130 EXPECT_TRUE(EndsWith("foo", ""));
131 EXPECT_TRUE(EndsWith("foo", "o"));
132 EXPECT_TRUE(EndsWith("foo", "foo"));
133 EXPECT_FALSE(EndsWith("foo", "fooo"));
134 EXPECT_FALSE(EndsWith("", "o"));
135 EXPECT_TRUE(EndsWith("", ""));
  /external/proguard/src/proguard/io/
DataEntryCopier.java 123 boolean outputIsApk = output.endsWith(".apk") ||
124 output.endsWith(".ap_");
125 boolean outputIsJar = output.endsWith(".jar");
126 boolean outputIsAar = output.endsWith(".aar");
127 boolean outputIsWar = output.endsWith(".war");
128 boolean outputIsEar = output.endsWith(".ear");
129 boolean outputIsZip = output.endsWith(".zip");
245 boolean inputIsApk = input.endsWith(".apk") ||
246 input.endsWith(".ap_");
247 boolean inputIsJar = input.endsWith(".jar")
    [all...]
  /bionic/libc/tools/
generate-NOTICE.py 19 if path.endswith(".mk") or path.endswith(".py") or path.endswith(".pyc") or path.endswith(".txt") or path.endswith(".3"):
21 if path.endswith("/notice") or path.endswith("/readme") or path.endswith("/caveats"):
23 if path.endswith("/tzdata") or path.endswith("/zoneinfo/generate")
    [all...]
  /external/deqp/framework/delibs/decpp/
deStringUtil.cpp 122 bool endsWith (const std::string& s, const std::string& suffix)
185 DE_TEST_ASSERT(endsWith("foobar", "foobar"));
186 DE_TEST_ASSERT(endsWith("foobar", "bar"));
187 DE_TEST_ASSERT(endsWith("foobar", "r"));
188 DE_TEST_ASSERT(endsWith("foobar", ""));
189 DE_TEST_ASSERT(endsWith("", ""));
190 DE_TEST_ASSERT(!endsWith("foobar", "foo"));
191 DE_TEST_ASSERT(!endsWith("foobar", "bazfoobar"));
192 DE_TEST_ASSERT(!endsWith("foobar", "foobarbaz"));
193 DE_TEST_ASSERT(!endsWith("", "foo"))
    [all...]
  /external/chromium-trace/catapult/third_party/graphy/graphy/
all_tests.py 28 if filename.endswith('.py'):
38 if dir.endswith('/.svn') or '/.svn/' in dir:
41 in files if f.endswith('_test.py'))
  /external/v8/test/js-perf-test/Strings/
harmony-string.js 11 EndsWith, WithSetup, WithTearDown),
59 function EndsWith() {
60 result = str.endsWith(substr);
  /frameworks/base/packages/DocumentsUI/
wrap_alpha.py 22 if not src.endswith(".png"): continue
27 alpha = src.endswith("_alpha")
37 am = src.endswith("_am")

Completed in 1669 milliseconds

1 2 3 4 5 6 7 8 91011>>