/external/webkit/WebKit/mac/Misc/ |
WebNSFileManagerExtras.h | 37 - (void)_webkit_backgroundRemoveFileAtPath:(NSString *)path; 38 - (void)_webkit_backgroundRemoveLeftoverFiles:(NSString *)path; 39 - (BOOL)_webkit_removeFileOnlyAtPath:(NSString *)path; 40 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path; 42 - (NSString *)_webkit_pathWithUniqueFilenameForPath:(NSString *)path; 49 - (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error; 51 - (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)error; 52 - (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error; 53 - (NSString *)destinationOfSymbolicLinkAtPath:(NSString *)path error:(NSError **)error; 54 - (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error [all...] |
/frameworks/base/core/java/android/os/ |
StatFs.java | 26 * filesystem at <var>path</var>. Upon construction, the stat of 30 * @param path A path in the desired file system to state. 32 public StatFs(String path) { native_setup(path); } 37 * path, and the new stat values are available upon return. 39 public void restat(String path) { native_restat(path); } 71 private native void native_restat(String path); 72 private native void native_setup(String path); [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Path.java | 20 * The Path class encapsulates compound (multiple contour) geometric paths 22 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked 24 * text on a path. 26 public class Path { 29 * Create an empty path 31 public Path() { 36 * Create a new path, copying the contents from the src path. 38 * @param src The path to copy from when initializing the new path [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
PathShape.java | 21 import android.graphics.Path; 24 * Creates geometric paths, utilizing the {@link android.graphics.Path} class. 25 * The path can be drawn to a Canvas with its own draw() method, 30 private Path mPath; 40 * @param path a Path that defines the geometric paths for this shape 48 public PathShape(Path path, float stdWidth, float stdHeight) { 49 mPath = path; 71 shape.mPath = new Path(mPath) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path.java | 27 * The Path class encapsulates compound (multiple contour) geometric paths 29 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked 31 * text on a path. 33 public class Path { 50 * Create an empty path 52 public Path() { 56 * Create a new path, copying the contents from the src path. 58 * @param src The path to copy from when initializing the new path [all...] |
/bionic/libc/stdio/ |
mktemp.c | 45 mkstemps(char *path, int slen) 49 return (_gettemp(path, &fd, 0, slen) ? fd : -1); 53 mkstemp(char *path) 57 return (_gettemp(path, &fd, 0, 0) ? fd : -1); 61 mkdtemp(char *path) 63 return(_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL); 69 _mktemp(char *path) 71 return(_gettemp(path, (int *)NULL, 0, 0) ? path : (char *)NULL) [all...] |
/dalvik/dx/src/junit/runner/ |
TestCaseClassLoader.java | 26 /** scanned class path */ 40 * Constructs a TestCaseLoader. It scans the class path 44 this(System.getProperty("java.class.path")); 48 * Constructs a TestCaseLoader. It scans the class path 57 String separator= System.getProperty("path.separator"); 114 String path= (String) fPathItems.elementAt(i); local 116 if (isJar(path)) { 117 data= loadJarData(path, fileName); 119 data= loadFileData(path, fileName); 133 private byte[] loadFileData(String path, String fileName) 217 String path= p.getProperty(key); local [all...] |
/dalvik/libcore/luni/src/test/java/junit/runner/ |
TestCaseClassLoader.java | 26 /** scanned class path */ 40 * Constructs a TestCaseLoader. It scans the class path 44 this(System.getProperty("java.class.path")); 48 * Constructs a TestCaseLoader. It scans the class path 57 String separator= System.getProperty("path.separator"); 114 String path= (String) fPathItems.elementAt(i); local 116 if (isJar(path)) { 117 data= loadJarData(path, fileName); 119 data= loadFileData(path, fileName); 133 private byte[] loadFileData(String path, String fileName) 217 String path= p.getProperty(key); local [all...] |
/external/bluetooth/glib/gio/tests/ |
g-icon.c | 49 uri = "file:///some/native/path/to/an/icon.png"; 53 g_assert_cmpstr (data, ==, "/some/native/path/to/an/icon.png"); 62 uri = "file:///some/native/path/to/an/icon with spaces.png"; 66 g_assert_cmpstr (data, ==, "/some/native/path/to/an/icon with spaces.png"); 75 uri = "sftp:///some/non-native/path/to/an/icon.png"; 79 g_assert_cmpstr (data, ==, "sftp:///some/non-native/path/to/an/icon.png"); 89 uri = "sftp:///some/non-native/path/to/an/icon with spaces.png"; 93 g_assert_cmpstr (data, ==, "sftp:///some/non-native/path/to/an/icon%20with%20spaces.png"); 121 icon = g_icon_new_for_string ("/path/to/somewhere.png", &error); 123 location = g_file_new_for_commandline_arg ("/path/to/somewhere.png") [all...] |
/external/junit/src/junit/runner/ |
TestCaseClassLoader.java | 34 /** scanned class path */ 48 * Constructs a TestCaseLoader. It scans the class path 52 this(System.getProperty("java.class.path")); 56 * Constructs a TestCaseLoader. It scans the class path 65 String separator= System.getProperty("path.separator"); 122 String path= (String) fPathItems.elementAt(i); local 124 if (isJar(path)) { 125 data= loadJarData(path, fileName); 127 data= loadFileData(path, fileName); 139 private byte[] loadFileData(String path, String fileName) 231 String path= p.getProperty(key); local [all...] |
/external/webkit/WebCore/platform/wx/ |
FileSystemWx.cpp | 51 bool fileExists(const String& path) 54 return wxFileName::FileExists(path) || wxFileName::DirExists(path); 57 bool deleteFile(const String& path) 59 return wxRemoveFile(path); 62 bool deleteEmptyDirectory(const String& path) 64 return wxFileName::Rmdir(path); 67 bool getFileSize(const String& path, long long& resultSize) 69 wxULongLong size = wxFileName::GetSize(path); 79 bool getFileModificationTime(const String& path, time_t& t [all...] |
/frameworks/base/test-runner/src/junit/runner/ |
TestCaseClassLoader.java | 25 /** scanned class path */ 39 * Constructs a TestCaseLoader. It scans the class path 43 this(System.getProperty("java.class.path")); 47 * Constructs a TestCaseLoader. It scans the class path 56 String separator= System.getProperty("path.separator"); 113 String path= (String) fPathItems.elementAt(i); local 115 if (isJar(path)) { 116 data= loadJarData(path, fileName); 118 data= loadFileData(path, fileName); 132 private byte[] loadFileData(String path, String fileName) 216 String path= p.getProperty(key); local [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
PathShapeTest.java | 27 import android.graphics.Path; 44 args = {android.graphics.Path.class, float.class, float.class} 47 new PathShape(new Path(), 1f, 5f); 49 new PathShape(new Path(), -1f, -1f); 70 Path path = new Path(); local 71 path.moveTo(50, 0); 72 path.lineTo(0, 50); 73 path.lineTo(50, 100) [all...] |
/external/bluetooth/bluez/serial/ |
manager.c | 81 const gchar *path = device_get_path(device); local 87 DBG("path %s: %s", path, uuid); 108 return port_register(connection, path, &src, &dst, uuid, ch); 113 const gchar *path = device_get_path(device); local 115 DBG("path %s", path); 117 port_unregister(path); 145 const char *path = adapter_get_path(adapter); local 147 DBG("path %s", path) 154 const char *path = adapter_get_path(adapter); local [all...] |
/external/clearsilver/ |
configure.in | 188 AC_ARG_WITH(apache, [ --with-apache=path Set location of Apache installation], [cs_cv_apache_path="$withval"], [cs_cv_apache_path=]) 194 for path in $apache_search_path; do 195 if test -x $path/httpd/bin/apxs; then 196 apxs_path=$path/httpd/bin/apxs 197 httpd_path=$path/httpd/bin/httpd 200 if test -x $path/httpd/sbin/apxs; then 201 apxs_path=$path/httpd/sbin/apxs 202 httpd_path=$path/httpd/sbin/httpd 205 if test -x $path/bin/apxs; then 206 apxs_path=$path/bin/apx [all...] |
/packages/apps/Email/src/org/apache/commons/io/comparator/ |
PathFileComparator.java | 26 * Compare the <b>path</b> of two files for order (see {@link File#getPath()}).
29 * by their path either in a case-sensitive, case-insensitive or
34 * Example of a <i>case-sensitive</i> file path sort using the
41 * Example of a <i>reverse case-insensitive</i> file path sort using the
54 /** Case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */
57 /** Reverse case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */
60 /** Case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */
63 /** Reverse case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */
66 /** System sensitive path comparator instance (see {@link IOCase#SYSTEM}) */
69 /** Reverse system sensitive path comparator instance (see {@link IOCase#SYSTEM}) */ [all...] |
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.sample | 3 # "path" affects "include" directives. "path" must be specified before any 4 # "include" directive with relative file path. 5 # you can overwrite "path" directive afterwards, however, doing so may add 7 #path include "/usr/local/v6/etc" ; 11 path pre_shared_key "/usr/local/v6/etc/psk.txt" ; 15 #path certificate "/usr/local/openssl/certs" ;
|
/external/webkit/WebKitTools/Scripts/ |
roll-over-ChangeLogs | 37 `find . -type f -name 'ChangeLog'`.split.each do |path| 38 next unless File.stat(path).size > CHANGELOG_SIZE_THRESHOLD 40 old_path = "#{path}#{date_suffix}" 41 puts "Moving #{path} to #{old_path}..." 42 system "git", "mv", path, old_path 43 File.open path, "w" do |file| 46 system "git", "add", path
|
/sdk/emulator/qtools/tests/ |
macros.h | 44 /* dump name and path of threads executed before trace device created */ 45 #define TRACE_INIT_NAME(pid,path)\ 48 DEV_WRITE_WORD(TRACE_DEV_REG_INIT_NAME, (unsigned long)(path));\ 51 #define TRACE_INIT_EXEC(vstart,vend,eoff,path)\ 56 DEV_WRITE_WORD(TRACE_DEV_REG_EXECVE_EXEPATH, (unsigned long)(path));\ 59 #define TRACE_MMAP(vstart,vend,eoff,path)\ 64 DEV_WRITE_WORD(TRACE_DEV_REG_MMAP_EXEPATH, (unsigned long)(path));\
|
/external/webkit/WebKitTools/CodeCoverage/ |
run-generate-coverage-data | 53 base,ext = os.path.splitext(file) 55 sources.append( os.path.join(root, file) ) 66 Wow, the first time os.path.join is doing the right thing. We might 67 have a relative path in the depends using os.path.join(dirname of .d, dep) 77 dir = os.path.dirname(obj) 80 # Remove files outside WebKit, make path absolute 82 deps = map(lambda x: os.path.abspath(os.path.join(dir, x)), deps) 100 ### is absolute path [all...] |
/system/core/adb/ |
sysdeps.h | 88 static __inline__ int adb_unlink(const char* path) 90 int rc = unlink(path); 95 rc = chmod(path, _S_IREAD|_S_IWRITE ); 97 rc = unlink(path); 104 static __inline__ int adb_mkdir(const char* path, int mode) 106 return _mkdir(path); 111 extern int adb_open(const char* path, int options); 112 extern int adb_creat(const char* path, int mode); 140 static __inline__ int adb_open_mode(const char* path, int options, int mode) 142 return adb_open(path, options) [all...] |
/external/qemu/android/utils/ |
bufprint.c | 14 #include "android/utils/path.h" 79 char path[1024]; local 83 len = readlink("/proc/self/exe", path, sizeof(path)); 84 if (len <= 0 || len >= (int)sizeof(path)) goto Fail; 85 path[len] = 0; 87 x = strrchr(path, '/'); 91 return bufprint(buff, end, "%s", path); 175 char path[MAX_PATH]; local 178 NULL, 0, path); 205 char path[MAX_PATH]; local [all...] |
/frameworks/base/media/libmedia/ |
MediaScanner.cpp | 47 const char *path, const char *extensions, 50 int pathLength = strlen(path); 60 strcpy(pathBuffer, path); 79 static bool fileMatchesExtension(const char* path, const char* extensions) { 80 char* extension = strrchr(path, '.'); 97 char *path, int pathRemaining, const char *extensions, 101 char* fileSpot = path + strlen(path); 107 if (access(path, F_OK) == 0) { 110 client.addNoMediaFolder(path); [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/ |
IAndroidTarget.java | 28 /** OS Path to the "android.jar" file. */ 30 /** OS Path to the "framework.aidl" file. */ 32 /** OS Path to "images" folder which contains the emulator system images. */ 34 /** OS Path to the "samples" folder which contains sample projects. */ 36 /** OS Path to the "skins" folder which contains the emulator skins. */ 38 /** OS Path to the "templates" folder which contains the templates for new projects. */ 40 /** OS Path to the "data" folder which contains data & libraries for the SDK tools. */ 42 /** OS Path to the "attrs.xml" file. */ 44 /** OS Path to the "attrs_manifest.xml" file. */ 46 /** OS Path to the "data/layoutlib.jar" library. * [all...] |
/dalvik/libcore/security/src/main/java/java/security/cert/ |
CertPathValidatorException.java | 25 * The exception that is thrown when a certification path (or certificate chain) 29 * path instance that failed the validation and the index of the failed 37 * the certification path. 48 * message , cause, certification path and certificate index in the 49 * certification path. 56 * the certification path that failed the validation. 64 * referencing an certificate in the certification path. 89 * the cause why the path could not be validated. 100 * the cause why the path could not be validated. 124 * Returns the certification path that failed validation [all...] |