HomeSort by relevance Sort by last modified time
    Searched full:path (Results 601 - 625 of 17547) sorted by null

<<21222324252627282930>>

  /external/icu/icu4j/main/classes/core/
build.xml 12 <path id="javac.classpathref">
13 <path refid="javac.classpathref.${ant.project.name}"/>
14 </path>
34 <target name="copy-data" depends="set-icuconfig-datapath" unless="icu4c.data.path" description="Extract pre-built ICU core data files and copy them to the project's binary directory">
39 <exclude name="${icu4j.data.path}/coll/**"/>
40 <exclude name="${icu4j.data.path}/curr/**"/>
41 <exclude name="${icu4j.data.path}/lang/**"/>
42 <exclude name="${icu4j.data.path}/region/**"/>
43 <exclude name="${icu4j.data.path}/translit/**"/>
56 <param name="res.dir" value="${bin.dir}/${icu4j.data.path}"/>
    [all...]
  /external/jsoncpp/devtools/
licenseupdater.py 15 def update_license( path, dry_run, show_diff ):
18 path: path of the C++ source file to update.
19 dry_run: if True, just print the path of the file that would be updated,
21 show_diff: if True, print the path of the file that would be modified,
24 with open( path, 'rt' ) as fin:
35 with open( path, 'wb' ) as fout:
37 print 'Updated', path
50 dry_run: if True, just print the path of the file that would be updated,
52 show_diff: if True, print the path of the file that would be modified
90 import os.path namespace
    [all...]
  /external/libvpx/libvpx/test/android/
get_files.py 18 import os.path namespace
46 path = os.path.join(local_resource_path, filename)
47 fp = open(path, "wb")
54 return get_file_sha(path) == sha
77 file_list_path = os.path.join(arg)
79 local_resource_path = os.path.join(arg)
85 if not os.path.isdir(local_resource_path):
108 path = os.path.join(local_resource_path, filename variable
    [all...]
  /external/llvm/utils/lit/lit/formats/
googletest.py 14 self.test_sub_dir = os.path.normcase(str(test_sub_dir)).split(';')
21 def getGTestTests(self, path, litConfig, localConfig):
22 """getGTestTests(path) - [name]
27 path: String path to a gtest executable
32 lines = lit.util.capture([path, '--gtest_list_tests'],
38 litConfig.error("unable to discover google-tests in %r" % path)
69 (dirname, basename) = os.path.split(execpath)
79 filepath = os.path.join(source_path, filename)
80 if os.path.isdir(filepath)
    [all...]
  /external/lzma/CPP/Windows/
FileDir.h 17 bool MyGetWindowsDirectory(CSysString &path);
18 bool MyGetSystemDirectory(CSysString &path);
20 bool MyGetWindowsDirectory(UString &path);
21 bool MyGetSystemDirectory(UString &path);
32 bool RemoveDirectoryWithSubItems(const CSysString &path);
41 bool RemoveDirectoryWithSubItems(const UString &path);
62 inline bool MySetCurrentDirectory(LPCTSTR path)
63 { return BOOLToBool(::SetCurrentDirectory(path)); }
66 bool MySetCurrentDirectory(LPCWSTR path);
70 bool MySearchPath(LPCTSTR path, LPCTSTR fileName, LPCTSTR extension, CSysString &resultPath, UINT32 &filePart);
    [all...]
  /external/skia/samplecode/
SampleTextOnPath.cpp 19 SkPath path; local
28 path.addArc(rect, SkIntToScalar(280), SkIntToScalar(350));
36 canvas->drawPath(path, paint);
43 const char* text = "DRAWING STROKED TEXT WITH A BLUR ON A PATH";
46 canvas->drawTextOnPathHV(text, len, path, 0,
53 SkPath path; local
56 path.moveTo(SkIntToScalar(050), SkIntToScalar(200));
57 path.quadTo(SkIntToScalar(250), SkIntToScalar(000),
63 canvas->drawPath(path, paint);
71 SkPathMeasure meas(path, false)
    [all...]
  /frameworks/compile/slang/lit-tests/
lit.cfg 17 # test_source_root: The path where tests are located (default is the test suite
21 # test_exec_root: The path where tests are located (default is the test suite
23 config.test_exec_root = os.path.join(config.base_path, 'out', 'tests', 'slang', 'lit-tests')
28 def inferTool(binary_name, env_var, PATH):
33 if tool and os.path.isfile(tool):
36 # Otherwise look in the path.
37 tool = lit.util.which(binary_name, PATH)
40 lit.fatal("couldn't find " + binary_name + " program in " + PATH + " , try setting "
43 return os.path.abspath(tool)
45 config.slang = inferTool('llvm-rs-cc', 'SLANG', os.path.join(config.base_path, 'out', 'host', 'linux-x86', 'bin')).replace('\\', '/'
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
get_files.py 18 import os.path namespace
46 path = os.path.join(local_resource_path, filename)
47 fp = open(path, "wb")
54 return get_file_sha(path) == sha
77 file_list_path = os.path.join(arg)
79 local_resource_path = os.path.join(arg)
85 if not os.path.isdir(local_resource_path):
108 path = os.path.join(local_resource_path, filename variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 32 path = io.filename or ""
34 path = ""
35 dir, base = os.path.split(path)
36 head, tail = os.path.splitext(base)
39 self.globvar.set(os.path.join(dir, "*" + tail))
62 path = self.globvar.get()
63 if not path:
70 self.grep_it(prog, path)
74 def grep_it(self, prog, path)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 32 path = io.filename or ""
34 path = ""
35 dir, base = os.path.split(path)
36 head, tail = os.path.splitext(base)
39 self.globvar.set(os.path.join(dir, "*" + tail))
62 path = self.globvar.get()
63 if not path:
70 self.grep_it(prog, path)
74 def grep_it(self, prog, path)
    [all...]
  /external/skia/tests/
PathOpsIssue3651.cpp 13 SkPath path; local
14 path.moveTo(SkBits2Float(0x431d8000), SkBits2Float(0x42823333)); // 157.5f, 65.1f
15 path.lineTo(SkBits2Float(0x431d8000), SkBits2Float(0x42823333)); // 157.5f, 65.1f
16 path.cubicTo(SkBits2Float(0x431e3333), SkBits2Float(0x42823333), SkBits2Float(0x431ee666), SkBits2Float(0x4282368d), SkBits2Float(0x431f999a), SkBits2Float(0x42823333)); // 158.2f, 65.1f, 158.9f, 65.1065f, 159.6f, 65.1f
17 path.cubicTo(SkBits2Float(0x43204ccd), SkBits2Float(0x42822fd9), SkBits2Float(0x43210000), SkBits2Float(0x42822861), SkBits2Float(0x4321b333), SkBits2Float(0x42821f17)); // 160.3f, 65.0935f, 161, 65.0789f, 161.7f, 65.0607f
18 path.cubicTo(SkBits2Float(0x43226666), SkBits2Float(0x428215ce), SkBits2Float(0x4323199a), SkBits2Float(0x4282071d), SkBits2Float(0x4323cccd), SkBits2Float(0x4281fb7b)); // 162.4f, 65.0426f, 163.1f, 65.0139f, 163.8f, 64.9912f
19 path.cubicTo(SkBits2Float(0x43248000), SkBits2Float(0x4281efd8), SkBits2Float(0x43253333), SkBits2Float(0x4281e467), SkBits2Float(0x4325e666), SkBits2Float(0x4281d94a)); // 164.5f, 64.9684f, 165.2f, 64.9461f, 165.9f, 64.9244f
20 path.cubicTo(SkBits2Float(0x4326999a), SkBits2Float(0x4281ce2c), SkBits2Float(0x43274ccd), SkBits2Float(0x4281c15d), SkBits2Float(0x43280000), SkBits2Float(0x4281b8cb)); // 166.6f, 64.9027f, 167.3f, 64.8777f, 168, 64.8609f
21 path.cubicTo(SkBits2Float(0x4328b333), SkBits2Float(0x4281b039), SkBits2Float(0x43296666), SkBits2Float(0x4281a66d), SkBits2Float(0x432a199a), SkBits2Float(0x4281a5dd)); // 168.7f, 64.8442f, 169.4f, 64.8251f, 170.1f, 64.824f
22 path.cubicTo(SkBits2Float(0x432acccd), SkBits2Float(0x4281a54c), SkBits2Float(0x432b8000), SkBits2Float (…)
192 SkPath path; local
371 SkPath path; local
542 SkPath path; local
713 SkPath path; local
904 SkPath path; local
1095 SkPath path = path1(); local
1101 SkPath path = path3(); local
1107 SkPath path = path5(); local
1113 SkPath path; local
1288 SkPath path; local
1351 SkPath path; local
1364 SkPath path; local
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py2/
data.py 35 def splitpath(path):
36 """ Split a path """
37 drive, path = '', _os.path.normpath(path)
39 splitunc = _os.path.splitunc
43 drive, path = splitunc(path)
45 drive, path = _os.path.splitdrive(path
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/
data.py 35 def splitpath(path):
36 """ Split a path """
37 drive, path = '', _os.path.normpath(path)
39 splitunc = _os.path.splitunc
43 drive, path = splitunc(path)
45 drive, path = _os.path.splitdrive(path
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py2/
data.py 35 def splitpath(path):
36 """ Split a path """
37 drive, path = '', _os.path.normpath(path)
39 splitunc = _os.path.splitunc
43 drive, path = splitunc(path)
45 drive, path = _os.path.splitdrive(path
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py3/
data.py 35 def splitpath(path):
36 """ Split a path """
37 drive, path = '', _os.path.normpath(path)
39 splitunc = _os.path.splitunc
43 drive, path = splitunc(path)
45 drive, path = _os.path.splitdrive(path
    [all...]
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 20 import android.graphics.Path;
37 * This sample demonstrates the use of animation interpolators and path animations for
40 * view (scale X and Y) along a path.
66 * Path for in (shrinking) animation, from 100% scale to 20%.
68 private Path mPathIn;
70 * Path for out (growing) animation, from 20% to 100%.
72 private Path mPathOut;
102 // selected: the Interpolator, duration and animation path
111 // Animation path is based on whether animating in or out
112 Path path = mIsOut ? mPathIn : mPathOut
    [all...]
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 20 import android.graphics.Path;
37 * This sample demonstrates the use of animation interpolators and path animations for
40 * view (scale X and Y) along a path.
66 * Path for in (shrinking) animation, from 100% scale to 20%.
68 private Path mPathIn;
70 * Path for out (growing) animation, from 20% to 100%.
72 private Path mPathOut;
102 // selected: the Interpolator, duration and animation path
111 // Animation path is based on whether animating in or out
112 Path path = mIsOut ? mPathIn : mPathOut
    [all...]
  /development/samples/browseable/Interpolator/src/com.example.android.interpolator/
InterpolatorFragment.java 20 import android.graphics.Path;
37 * This sample demonstrates the use of animation interpolators and path animations for
40 * view (scale X and Y) along a path.
66 * Path for in (shrinking) animation, from 100% scale to 20%.
68 private Path mPathIn;
70 * Path for out (growing) animation, from 20% to 100%.
72 private Path mPathOut;
102 // selected: the Interpolator, duration and animation path
111 // Animation path is based on whether animating in or out
112 Path path = mIsOut ? mPathIn : mPathOut
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 18 attr_accessor :path, :force
27 def depends_on( path )
28 path = File.expand_path path.to_s
29 dependencies << path if test( ?f, path )
30 return path
53 def self.global_dependency( path )
54 path = File.expand_path path.to_
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install.py 37 destination = os.path.join(builddir, "installation")
41 dist.script_name = os.path.join(builddir, "setup.py")
44 build_lib=os.path.join(builddir, "lib"),
55 got = os.path.normpath(got)
56 expected = os.path.normpath(expected)
59 libdir = os.path.join(destination, "lib", "python")
64 os.path.join(destination, "include", "python", "foopkg"))
65 check_path(cmd.install_scripts, os.path.join(destination, "bin"))
77 self.user_base = os.path.join(self.tmpdir, 'B')
78 self.user_site = os.path.join(self.tmpdir, 'S'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install.py 37 destination = os.path.join(builddir, "installation")
41 dist.script_name = os.path.join(builddir, "setup.py")
44 build_lib=os.path.join(builddir, "lib"),
55 got = os.path.normpath(got)
56 expected = os.path.normpath(expected)
59 libdir = os.path.join(destination, "lib", "python")
64 os.path.join(destination, "include", "python", "foopkg"))
65 check_path(cmd.install_scripts, os.path.join(destination, "bin"))
77 self.user_base = os.path.join(self.tmpdir, 'B')
78 self.user_site = os.path.join(self.tmpdir, 'S'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 9 import os.path namespace
71 def walk_packages(path=None, prefix='', onerror=None):
73 on path, or, if path is None, all accessible modules.
75 'path' should be either None or a list of paths to look for
82 modules!) on the given path, in order to access the __path__
105 for importer, name, ispkg in iter_modules(path, prefix):
120 path = getattr(sys.modules[name], '__path__', None) or []
122 # don't traverse path items we've seen before
123 path = [p for p in path if not seen(p)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 9 import os.path namespace
71 def walk_packages(path=None, prefix='', onerror=None):
73 on path, or, if path is None, all accessible modules.
75 'path' should be either None or a list of paths to look for
82 modules!) on the given path, in order to access the __path__
105 for importer, name, ispkg in iter_modules(path, prefix):
120 path = getattr(sys.modules[name], '__path__', None) or []
122 # don't traverse path items we've seen before
123 path = [p for p in path if not seen(p)
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 12 // path class.
268 /// @brief Make \a path an absolute path.
270 /// Makes \a path absolute using the current directory if it is not already. An
271 /// empty \a path will result in the current directory.
273 /// /absolute/path => /absolute/path
274 /// relative/../path => <current-directory>/relative/../path
276 /// @param path A path that is modified to be an absolute path
696 const std::string &path() const { return Path; } function in class:llvm::sys::fs::directory_entry
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 24 import android.graphics.Path;
28 import android.graphics.Path.Direction;
48 canvas.drawPath(path(), p); method
73 private static Path path() { method in class:PathDashPathEffectTest
74 Path p = new Path();
80 private static Path shape() {
81 Path p = new Path();
    [all...]

Completed in 198 milliseconds

<<21222324252627282930>>