/system/extras/tests/bionic/libc/common/ |
test_libgen.c | 10 test_basename(char* _input, const char* _expected, int _errno) function 178 test_basename( "", ".", 0 ); 179 test_basename( "/usr/lib", "lib", 0 ); 180 test_basename( "/usr/", "usr", 0 ); 181 test_basename( "usr", "usr", 0 ); 182 test_basename( "/", "/", 0 ); 183 test_basename( ".", ".", 0 ); 184 test_basename( "..", "..", 0 );
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/ |
test_importer.py | 245 test_basename = os.path.basename(test_info['test']) 252 ref_file = os.path.splitext(test_basename)[0] + '-expected' 253 ref_file += os.path.splitext(test_basename)[1]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_posixpath.py | 79 def test_basename(self): member in class:PosixPathTest
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_posixpath.py | 79 def test_basename(self): member in class:PosixPathTest
|