OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:endswith
(Results
126 - 150
of
3543
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/skia/tools/
imgconv.cpp
20
if (src.
endsWith
(".png")) {
/external/skia/tools/lua/
bitmap_statistics.lua
5
function string.
endsWith
(String,End)
/frameworks/base/packages/SystemUI/src/com/android/systemui/
SystemUISecondaryUserService.java
54
if (name.
endsWith
(svc)) {
SystemUIService.java
51
if (name.
endsWith
(svc)) {
/frameworks/base/test-runner/src/junit/runner/
LoadingTestCollector.java
23
if (classFileName.
endsWith
(".class")) {
TestCaseClassLoader.java
127
return pathEntry.
endsWith
(".jar") ||
128
pathEntry.
endsWith
(".apk") ||
129
pathEntry.
endsWith
(".zip");
218
if (path.
endsWith
("*"))
/libcore/luni/src/main/java/java/net/
DefaultFileNameMap.java
27
if (filename.
endsWith
("/")) {
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportListActivity.java
114
if (file.getName().
endsWith
(".gz")) {
116
} else if (file.getName().
endsWith
(".txt")) {
161
if (name.
endsWith
(".gz")) name = name.substring(0, name.length() - 3);
162
if (!name.startsWith("bugreport-") || !name.
endsWith
(".txt")) {
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_macholib.py
56
self.assertTrue(result.
endswith
('.dylib'))
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/
result.py
90
if not output.
endswith
('\n'):
94
if not error.
endswith
('\n'):
170
if not output.
endswith
('\n'):
174
if not error.
endswith
('\n'):
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_macholib.py
56
self.assertTrue(result.
endswith
('.dylib'))
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/
result.py
90
if not output.
endswith
('\n'):
94
if not error.
endswith
('\n'):
170
if not output.
endswith
('\n'):
174
if not error.
endswith
('\n'):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_macholib.py
56
self.assertTrue(result.
endswith
('.dylib'))
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
__init__.py
27
if fn.startswith("test") and fn.
endswith
(".py"):
setuptools_extension.py
38
if s.
endswith
('.pyx'):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
result.py
90
if not output.
endswith
('\n'):
94
if not error.
endswith
('\n'):
170
if not output.
endswith
('\n'):
174
if not error.
endswith
('\n'):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_macholib.py
56
self.assertTrue(result.
endswith
('.dylib'))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
__init__.py
27
if fn.startswith("test") and fn.
endswith
(".py"):
setuptools_extension.py
38
if s.
endswith
('.pyx'):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
result.py
90
if not output.
endswith
('\n'):
94
if not error.
endswith
('\n'):
170
if not output.
endswith
('\n'):
174
if not error.
endswith
('\n'):
/frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java
82
if (className.
endsWith
(".R") || className.
endsWith
(".Manifest")) {
120
if (entryName.
endsWith
(".apk")) {
139
if (source.getPath().
endsWith
(".apk")) {
164
if (name.
endsWith
(CLASS_EXTENSION) && isToplevelClass(name)) {
188
if (entryName.
endsWith
(CLASS_EXTENSION)) {
256
if (entryName.
endsWith
(CLASS_EXTENSION)) {
/external/libcxx/test/libcxx/test/
format.py
43
if any([filename.
endswith
(ext)
59
is_sh_test = name.
endswith
('.sh.cpp')
60
is_pass_test = name.
endswith
('.pass.cpp')
61
is_fail_test = name.
endswith
('.fail.cpp')
127
for f in os.listdir(local_cwd) if f.
endswith
('.dat')]
/external/protobuf/python/
setup.py
109
if filepath.
endswith
("_pb2.py") or filepath.
endswith
(".pyc") or \
110
filepath.
endswith
(".so") or filepath.
endswith
(".o") or \
111
filepath.
endswith
('google/protobuf/compiler/__init__.py'):
/external/skia/tests/
StringTest.cpp
62
REPORTER_ASSERT(reporter, a.
endsWith
("llo"));
63
REPORTER_ASSERT(reporter, a.
endsWith
('o'));
64
REPORTER_ASSERT(reporter, !a.
endsWith
("ll" ));
65
REPORTER_ASSERT(reporter, !a.
endsWith
('l'));
66
REPORTER_ASSERT(reporter, a.
endsWith
(""));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/
format.py
43
if any([filename.
endswith
(ext)
59
is_sh_test = name.
endswith
('.sh.cpp')
60
is_pass_test = name.
endswith
('.pass.cpp')
61
is_fail_test = name.
endswith
('.fail.cpp')
127
for f in os.listdir(local_cwd) if f.
endswith
('.dat')]
Completed in 1823 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>