/sdk/draw9patch/etc/ |
manifest.txt | 2 Class-Path: swing-worker-1.1.jar
|
/sdk/layoutopt/app/etc/ |
manifest.txt | 2 Class-Path: groovy-all-1.7.0.jar
|
/system/vold/ |
Process.cpp | 35 int Process::readSymLink(const char *path, char *link, size_t max) { 39 if (lstat(path, &s) < 0) 45 length = readlink(path, link, max- 1); 52 int Process::pathMatchesMountPoint(const char* path, const char* mountPoint) { 54 if (length > 1 && strncmp(path, mountPoint, length) == 0) { 59 // there is one in the path to avoid partial matches. 60 return (path[length] == 0 || path[length] == '/'); 86 // compute path to process's directory of open files 87 char path[PATH_MAX] local 139 const char* path = strchr(buffer, '\/'); local 155 char path[PATH_MAX]; local [all...] |
/external/opencore/oscl/oscl/osclio/src/ |
oscl_file_dir_utils.h | 88 * oscl_getcwd function can be used to determine the full path name of the 94 OSCL_IMPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_getcwd(oscl_wchar *path, uint32 size); 98 * oscl_getcwd function can be used to determine the full path name of the 104 OSCL_IMPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_getcwd(char *path, uint32 size); 111 * @param wide character path the full path of the file to stat. 114 OSCL_IMPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_stat(const oscl_wchar *path, OSCL_STAT_BUF *statbuf); 120 * @param character path the full path of the file to stat. 123 OSCL_IMPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_stat(const char *path, OSCL_STAT_BUF *statbuf) [all...] |
oscl_file_dir_utils.cpp | 53 OSCL_EXPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_getcwd(char *path, uint32 size) 55 if (getcwd(path, size) != NULL) 60 OSCL_EXPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_getcwd(oscl_wchar *path, uint32 size) 65 if (0 == oscl_UTF8ToUnicode(convpathname, oscl_strlen(convpathname), path, size) && oscl_strlen(convpathname) != 0) 74 OSCL_EXPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_stat(const oscl_wchar *path, OSCL_STAT_BUF *statbuf) 77 if (0 == oscl_UnicodeToUTF8(path, oscl_strlen(path), convpathname, OSCL_IO_FILENAME_MAXLEN) && oscl_strlen(path) != 0) 86 OSCL_EXPORT_REF OSCL_FILEMGMT_ERR_TYPE oscl_stat(const char *path, OSCL_STAT_BUF *statbuf) 90 if (stat(path, &buf) == 0 [all...] |
/external/webkit/WebCore/platform/graphics/wx/ |
PathWx.cpp | 27 #include "Path.h" 50 Path::Path() 61 wxGraphicsPath path = renderer->CreatePath(); local 62 m_path = new wxGraphicsPath(path); 67 Path::~Path() 72 Path::Path(const Path& path 127 wxGraphicsPath path = renderer->CreatePath(); local [all...] |
/sdk/draw9patch/src/com/android/draw9patch/ui/ |
ImageTransferHandler.java | 51 final String path = convertPath(data.toString()); local 52 mainFrame.open(new File(path)).execute(); 70 private static String convertPath(String path) { 71 if (path.startsWith("file://")) path = path.substring("file://".length()); 72 if (path.indexOf('\n') != -1) path = path.substring(0, path.indexOf('\n')) [all...] |
/frameworks/base/core/java/android/gesture/ |
OrientedBoundingBox.java | 20 import android.graphics.Path; 55 public Path toPath() { 56 Path path = new Path(); local 64 path.moveTo(point[0], point[1]); 69 path.lineTo(point[0], point[1]); 74 path.lineTo(point[0], point[1]); 79 path.lineTo(point[0], point[1]); 81 path.close() [all...] |
/external/clearsilver/util/ |
neo_files.c | 30 NEOERR *ne_mkdirs (const char *path, mode_t mode) 36 strncpy (mypath, path, sizeof(mypath)); 66 NEOERR *ne_load_file_len (const char *path, char **str, int *out_len) 76 if (stat(path, &s) == -1) 79 return nerr_raise (NERR_NOT_FOUND, "File %s not found", path); 80 return nerr_raise_errno (NERR_SYSTEM, "Unable to stat file %s", path); 83 fd = open (path, O_RDONLY); 86 return nerr_raise_errno (NERR_SYSTEM, "Unable to open file %s", path); 95 "Unable to allocate memory (%d) to load file %s", len + 1, path); 101 return nerr_raise_errno (NERR_SYSTEM, "Unable to read file %s", path); [all...] |
/frameworks/base/services/jni/ |
com_android_server_BatteryService.cpp | 135 static int readFromFile(const char* path, char* buf, size_t size) 137 if (!path) 139 int fd = open(path, O_RDONLY, 0); 141 LOGE("Could not open '%s'", path); 158 static void setBooleanField(JNIEnv* env, jobject obj, const char* path, jfieldID fieldID) 164 if (readFromFile(path, buf, SIZE) > 0) { 172 static void setIntField(JNIEnv* env, jobject obj, const char* path, jfieldID fieldID) 178 if (readFromFile(path, buf, SIZE) > 0) { 184 static void setVoltageField(JNIEnv* env, jobject obj, const char* path, jfieldID fieldID) 190 if (readFromFile(path, buf, SIZE) > 0) 231 char path[PATH_MAX]; local [all...] |
/external/webkit/WebCore/platform/graphics/cg/ |
PathCG.cpp | 28 #include "Path.h" 68 Path::Path() 73 Path::~Path() 78 Path::Path(const Path& other) 83 Path& Path::operator=(const Path& other 85 CGMutablePathRef path = CGPathCreateMutableCopy(other.m_path); local 93 CGMutablePathRef path = static_cast<CGMutablePathRef>(info); local 119 CGMutablePathRef path = CGPathCreateMutable(); local 351 CGMutablePathRef path = CGPathCreateMutable(); local [all...] |
/external/bluetooth/bluez/gdbus/ |
Android.mk | 10 $(call include-path-for, glib) \ 11 $(call include-path-for, dbus)
|
/external/clearsilver/util/test/ |
listdir_test.c | 11 char *path; local 18 path = argv[1]; 20 path = "."; 23 err = ne_listdir(path, &files); 39 err = ne_listdir_match(path, &files, "*.c");
|
/external/icu4c/data/ |
cldr-icu-readme.txt | 15 export JAVA_HOME=<path>/java 16 export ANT_OPTS="-DCLDR_DTD_CACHE=<path>/temp/cldrdtd" 17 export CLDR_DIR=<path>/cldr 18 export CLDR_JAR=<path>/cldr.jar 19 export ICU4C_DIR=<path>/icu 20 export ICU4J_JAR=<path>/icu4j.jar 21 export UTILITIES_JAR=<path>/utilities.jar 22 5. Change directory to <path>/icu/source/data/ 24 <path>/ant/bin/ant clean all 31 export JAVA_HOME=<path>/jav [all...] |
/external/webkit/WebCore/platform/qt/ |
FileSystemQt.cpp | 47 bool fileExists(const String& path) 49 return QFile::exists(path); 53 bool deleteFile(const String& path) 55 return QFile::remove(path); 58 bool deleteEmptyDirectory(const String& path) 60 return QDir::root().rmdir(path); 63 bool getFileSize(const String& path, long long& result) 65 QFileInfo info(path); 70 bool getFileModificationTime(const String& path, time_t& result) 72 QFileInfo info(path); [all...] |
/external/webkit/WebKit/android/plugins/ |
ANPPathInterface.cpp | 34 static void anp_deletePath(ANPPath* path) { 35 delete path; 46 static void anp_reset(ANPPath* path) { 47 path->reset(); 50 static bool anp_isEmpty(const ANPPath* path) { 51 return path->isEmpty(); 54 static void anp_getBounds(const ANPPath* path, ANPRectF* bounds) { 55 SkANP::SetRect(bounds, path->getBounds()); 58 static void anp_moveTo(ANPPath* path, float x, float y) { 59 path->moveTo(SkFloatToScalar(x), SkFloatToScalar(y)) [all...] |
/external/srec/portable/src/UNIX/ |
PANSIFileSystemUNIXImpl.c | 31 ESR_ReturnCode PANSIFileSystemGetVirtualPathImpl(PFileSystem* self, LCHAR* path, size_t* len) 43 CHKLOG(rc, lstrtrim(path)); 44 CHKLOG(rc, PFileSystemCanonicalSlashes(path)); 45 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute)); 46 if (isAbsolute && path[0] != L('/')) 49 driveLetter = path[0]; 50 LSTRCPY(path, path + 2); 56 if (LSTRSTR(path, value)==path) [all...] |
/external/webkit/WebKitTools/wx/packaging/ |
build-mac-installer.py | 38 script_dir = os.path.abspath(os.path.dirname(__file__)) 39 sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "build"))) 45 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", "..")) 46 wxwebkit_dir = os.path.abspath(os.path.join(wxwk_root, "WebKitBuild", get_config(wxwk_root) + git_branch_name())) 59 if os.path.exists(tempdir) [all...] |
/bionic/libc/tools/ |
bionic_utils.py | 40 def find_dir_of(path): 41 '''return the directory name of 'path', or "." if there is none''' 43 if len(path) > 1 and path[-1] == '/': 44 path = path[:-1] 47 d = os.path.dirname(path) 59 path = from_path 60 if path == None [all...] |
/development/testrunner/ |
android_build.py | 37 the absolute file path of the Android build root. 83 The absolute file path of the Android host binary directory. 89 path = os.path.join(GetTop(), "out", "host", os_arch, "bin") 90 if not os.path.exists(path): 91 logger.Log("Error: Host bin path could not be found %s" % path) 93 return path 105 The absolute file path of the Android product directory [all...] |
/build/tools/atree/ |
fs.cpp | 19 is_dir(const string& path) 23 err = stat(path.c_str(), &st); 28 remove_file(const string& path) 30 int err = unlink(path.c_str()); 32 fprintf(stderr, "error deleting file %s (%s)\n", path.c_str(), 40 remove_recursively(const string& path) 44 if (is_dir(path)) { 45 DIR *d = opendir(path.c_str()); 48 path.c_str(), strerror(errno)); 61 string full = path; [all...] |
/bionic/libc/bionic/ |
dirname_r.c | 34 dirname_r(const char* path, char* buffer, size_t bufflen) 40 if (path == NULL || *path == '\0') { 41 path = "."; 47 endp = path + strlen(path) - 1; 48 while (endp > path && *endp == '/') 52 while (endp > path && *endp != '/') 56 if (endp == path) { 57 path = (*endp == '/') ? "/" : "." [all...] |
/external/webkit/WebKit/wx/ |
wscript | 33 os.path.join(wk_root, 'JavaScriptCore'), 34 os.path.join(wk_root, 'WebCore'), 35 os.path.join(output_dir), 36 os.path.join(wk_root, 'WebCore', 'page', 'wx'), 37 os.path.join(wk_root, 'WebCore', 'platform', 'network', 'curl'), 38 os.path.join(wk_root, 'WebCore', 'platform', 'wx'), 39 os.path.join(wk_root, 'WebCore', 'platform', 'bridge', 'wx'), 40 os.path.join(wk_root, 'WebCore', 'platform', 'graphics', 'wx'), 52 include_paths.append(os.path.join(wk_root, 'WebCore', dir)) 54 js_include_dirs = [os.path.join(wk_root, 'JavaScriptCore', 'assembler') [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/ |
test_files.py | 57 for path in paths: 59 path = os.path.join(port.layout_tests_dir(), path) 60 if path.find('*') > -1: 61 filenames = glob.glob(path) 64 paths_to_walk.add(path) 70 for path in paths_to_walk: 71 if os.path.isfile(path) and _has_supported_extension(path) [all...] |
/external/icu4c/common/ |
resbund_cnv.cpp | 25 ResourceBundle::ResourceBundle( const UnicodeString& path, 30 constructForLocale(path, locale, error); 33 ResourceBundle::ResourceBundle( const UnicodeString& path, 37 constructForLocale(path, Locale::getDefault(), error); 41 ResourceBundle::constructForLocale(const UnicodeString& path, 45 if (path.isEmpty()) { 49 UnicodeString nullTerminatedPath(path);
|