HomeSort by relevance Sort by last modified time
    Searched full:path (Results 51 - 75 of 4958) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clearsilver/man/man3/
cs_parse_file.3 20 NEOERR *cs_parse_file (CSPARSE *parse, const char *path);
27 path - the path to the file to parse
31 path. It will use hdf_search_path() if path does not
  /sdk/anttasks/src/com/android/ant/
ApkBuilderTask.java 29 import org.apache.tools.ant.types.Path;
30 import org.apache.tools.ant.types.Path.PathElement;
41 // ref id to the <path> object containing all the boot classpaths.
42 private final static String REF_APK_PATH = "android.apks.path";
50 private final ArrayList<Path> mZipList = new ArrayList<Path>();
51 private final ArrayList<Path> mFileList = new ArrayList<Path>();
52 private final ArrayList<Path> mSourceList = new ArrayList<Path>();
107 Path path = new Path(getProject()); local
116 Path path = new Path(getProject()); local
125 Path path = new Path(getProject()); local
134 Path path = new Path(getProject()); local
143 Path path = new Path(getProject()); local
152 Path path = new Path(getProject()); local
217 Path path = new Path(antProject); local
    [all...]
  /external/bluetooth/bluez/test/
monitor-bluetooth 8 def property_changed(name, value, path, interface):
11 print "{%s.PropertyChanged} [%s] %s = %s" % (iface, path, name, val)
13 def object_signal(value, path, interface, member):
16 print "{%s.%s} [%s] Path = %s" % (iface, member, path, val)
25 path_keyword="path",
30 path_keyword="path",
35 path_keyword="path",
40 path_keyword="path",
46 path_keyword="path",
    [all...]
  /external/clearsilver/util/
rcfs.h 23 NEOERR * rcfs_load (const char *path, int version, char **data);
24 NEOERR * rcfs_save (const char *path, const char *data, const char *user,
26 NEOERR * rcfs_lock (const char *path, int *lock);
28 NEOERR * rcfs_meta_load (const char *path, HDF **meta);
29 NEOERR * rcfs_meta_save (const char *path, HDF *meta);
30 NEOERR * rcfs_listdir (const char *path, ULIST **list);
32 NEOERR * rcfs_unlink (const char *path);
  /external/srec/portable/include/
PFileSystem.h 73 * @param path Fully qualified file path
77 ESR_ReturnCode(*createPFile)(struct PFileSystem_t* self, const LCHAR* path, ESR_BOOL littleEndian, PFile** file);
83 * @param path Fully qualified directory path
84 * @return ESR_INVALID_ARGUMENT if path is null; ESR_IDENTIFIER_COLLISION if directory already exists;
87 ESR_ReturnCode(*mkdir)(struct PFileSystem_t* self, const LCHAR* path);
93 * @param path Fully qualified file path
96 ESR_ReturnCode(*chdir)(struct PFileSystem_t* self, const LCHAR* path);
    [all...]
  /bionic/libc/kernel/tools/
utils.py 45 return os.path.basename(sys.argv[0])
48 return os.path.dirname(sys.argv[0])
53 path = from_path
54 if path == None:
55 path = os.path.realpath(sys.argv[0])
56 path = os.path.dirname(path)
57 D("this script seems to be located in: %s" % path)
    [all...]
  /external/webkit/WebCore/platform/graphics/
Path.cpp 30 #include "Path.h"
86 float Path::length()
93 FloatPoint Path::pointAtLength(float length, bool& ok)
102 float Path::normalAngleAtLength(float length, bool& ok)
111 Path Path::createRoundedRectangle(const FloatRect& rectangle, const FloatSize& roundingRadii)
113 Path path; local
121 return path;
134 path.moveTo(FloatPoint(x + dx, y))
163 Path path; local
205 Path path; local
226 Path path; local
266 Path path; local
    [all...]
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
dispatch.py 53 def _normalize_path(path):
54 """Normalize path.
57 path: the path to normalize.
59 Path is converted to the absolute path.
60 The input path can use either '\\' or '/' as the separator.
61 The normalized path always uses '/' regardless of the platform.
64 path = path.replace('\\', os.path.sep
    [all...]
  /external/clearsilver/python/examples/trans/
tstart.py 8 sys.path.insert(0, "../base") # pickup base libs
10 sys.path.insert(0, "../../") # pickup neo_cgi.so
12 # don't put anything above this because the path isn't
  /external/webkit/LayoutTests/http/tests/appcache/resources/
non-html.manifest 3 /resources/network-simulator.php?path=/appcache/resources/simple.txt
4 /resources/network-simulator.php?path=/appcache/resources/abe.png
5 /resources/network-simulator.php?path=/appcache/resources/non-html.manifest
  /external/srec/portable/src/
PFileSystem.c 37 * [file path, PFileSystem*] mapping.
46 PORTABLE_API ESR_ReturnCode PFileSystemCanonicalSlashes(LCHAR* path)
50 if (path == NULL)
57 lstrtrim(path);
58 CHKLOG(rc, lstrreplace(path, L('\\'), L('/')));
64 ESR_ReturnCode PFileSystemLinearToPathTokens(const LCHAR* path, LCHAR*** tokenArray, size_t* count)
74 if (path == NULL || tokenArray == NULL || count == NULL)
80 LSTRCPY(linear, path);
156 ESR_ReturnCode PFileSystemIsAbsolutePath(const LCHAR* path, ESR_BOOL* isAbsolute)
167 LSTRCPY(canonical, path);
    [all...]
  /external/proguard/src/proguard/gui/
MANIFEST.MF 3 Class-Path: proguard.jar retrace.jar
  /external/proguard/src/proguard/retrace/
MANIFEST.MF 3 Class-Path: proguard.jar
  /external/webkit/WebCore/platform/chromium/
FileSystemChromium.cpp 40 bool deleteFile(const String& path)
42 return ChromiumBridge::deleteFile(path);
45 bool deleteEmptyDirectory(const String& path)
47 return ChromiumBridge::deleteEmptyDirectory(path);
50 bool getFileSize(const String& path, long long& result)
52 return ChromiumBridge::getFileSize(path, result);
55 bool getFileModificationTime(const String& path, time_t& result)
57 return ChromiumBridge::getFileModificationTime(path, result);
60 String directoryName(const String& path)
62 return ChromiumBridge::directoryName(path);
    [all...]
  /frameworks/base/docs/html/sdk/1.0_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.0_r2/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.1_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.5_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.5_r2/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.5_r3/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/1.6_r1/
index.jd 3 sdk.redirect.path=index.html
  /frameworks/base/docs/html/sdk/
adt-notes.jd 3 sdk.redirect.path=eclipse-adt.html
  /frameworks/base/docs/html/sdk/ndk/1.5_r1/
index.jd 3 sdk.redirect.path=ndk/index.html
  /frameworks/base/docs/html/sdk/ndk/1.6_r1/
index.jd 3 sdk.redirect.path=ndk/index.html
  /frameworks/base/graphics/java/android/graphics/
PathMeasure.java 23 * of a path, and/or to find the position and tangent along it, call
26 * Note that once a path is associated with the measure object, it is
27 * undefined if the path is subsequently modified and the the measure object
28 * is used. If the path is modified, you must call setPath with the path.
35 * Create a PathMeasure object associated with the specified path object
37 * path's length, and the position and tangent of any position along the
38 * path.
40 * Note that once a path is associated with the measure object, it is
41 * undefined if the path is subsequently modified and the the measure objec
    [all...]

Completed in 100 milliseconds

1 23 4 5 6 7 8 91011>>