Searched refs:paths (Results 26 - 50 of 411) sorted by relevance

1234567891011>>

/external/tensorflow/tensorflow/stream_executor/lib/
H A Dpath.cc28 // For an array of paths of length count, append them all together,
30 string JoinPathImpl(std::initializer_list<port::StringPiece> paths) { argument
33 for (port::StringPiece path : paths) {
H A Dpath.h32 string JoinPathImpl(std::initializer_list<port::StringPiece> paths);
35 // Join multiple paths together.
36 // JoinPath unconditionally joins all paths together. For example:
45 // All paths will be treated as relative paths, regardless of whether or not
46 // they start with a leading '/'. That is, all paths will be concatenated
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
H A Dgc_test.py54 paths = [gc.Path("/foo", 8), gc.Path("/foo", 9), gc.Path("/foo", 10)]
56 n = newest(paths)
60 paths = [gc.Path("/foo", 0), gc.Path("/foo", 3)]
62 n = newest(paths)
66 paths = [
73 self.assertEqual(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 6)])
75 self.assertEqual(mod(paths), [gc.Path("/foo", 6), gc.Path("/foo", 9)])
78 paths = [
90 one_of(paths), [
100 paths
[all...]
/external/tensorflow/tensorflow/python/estimator/
H A Dgc_test.py54 paths = [gc.Path("/foo", 8), gc.Path("/foo", 9), gc.Path("/foo", 10)]
56 n = newest(paths)
60 paths = [gc.Path("/foo", 0), gc.Path("/foo", 3)]
62 n = newest(paths)
66 paths = [
71 self.assertEqual(mod(paths), [gc.Path("/foo", 4), gc.Path("/foo", 6)])
73 self.assertEqual(mod(paths), [gc.Path("/foo", 6), gc.Path("/foo", 9)])
76 paths = [
83 one_of(paths), [
91 paths
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorPreserveSpace.java64 WhitespaceInfoPaths paths = new WhitespaceInfoPaths(thisSheet);
65 setPropertiesFromAttributes(handler, rawName, attributes, paths);
67 Vector xpaths = paths.getElements();
76 paths.clearElements();
H A DProcessorStripSpace.java63 WhitespaceInfoPaths paths = new WhitespaceInfoPaths(thisSheet);
64 setPropertiesFromAttributes(handler, rawName, attributes, paths);
66 Vector xpaths = paths.getElements();
75 paths.clearElements();
/external/chromium-trace/catapult/common/eslint/eslint/
H A D__init__.py52 def RunEslint(paths, rules_dir=DEFAULT_ESLINT_RULES_DIR, extra_args=None):
53 """Runs eslint on a list of paths.
56 paths: A list of paths to run eslint on.
60 if type(paths) is not list or len(paths) == 0:
61 raise ValueError('Must specify a non-empty list of paths to lint.')
65 return True, subprocess.check_output(eslint_cmd + paths,
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DFieldMaskPartial.cs53 /// <param name="paths">Paths in the field mask</param>
56 internal static string ToJson(IList<string> paths, bool diagnosticOnly) argument
58 var firstInvalid = paths.FirstOrDefault(p => !ValidatePath(p));
62 JsonFormatter.WriteString(writer, string.Join(",", paths.Select(JsonFormatter.ToCamelCase)));
70 writer.Write("{ \"@warning\": \"Invalid FieldMask\", \"paths\": ");
71 JsonFormatter.Default.WriteList(writer, (IList)paths);
/external/chromium-trace/catapult/common/eslint/bin/
H A Drun_eslint37 parser.add_argument('--paths', '-p', default=None, nargs='+', metavar='PATH',
38 help='List of paths to lint')
45 if ((args.paths is not None and args.all is not None) or
46 (args.paths is None and args.all is None)):
47 print 'Either --paths or --all must be used, but not both.\n'
51 paths = DIRECTORIES_TO_LINT if args.all else args.paths
52 success, output = eslint.RunEslint(paths, extra_args=args.extra_args)
/external/perfetto/protos/perfetto/trace/filesystem/
H A Dinode_file_map.proto30 repeated string paths = 2;
/external/skqp/gm/
H A Dshadowutils.cpp32 SkTArray<SkPath> paths; local
33 paths.push_back().addRoundRect(SkRect::MakeWH(50, 50), 10, 10);
36 paths.push_back().addRRect(oddRRect);
37 paths.push_back().addRect(SkRect::MakeWH(50, 50));
38 paths.push_back().addCircle(25, 25, 25);
39 paths.push_back().cubicTo(100, 50, 20, 100, 0, 0);
40 paths.push_back().addOval(SkRect::MakeWH(20, 60));
61 for (const auto& path : paths) {
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DUtil.py51 def which(command, paths = None):
52 """which(command, [paths]) - Look up the given command in the paths string
55 if paths is None:
56 paths = os.environ.get('PATH','')
63 if not paths:
64 paths = os.defpath
73 # Search the paths...
74 for path in paths.split(os.pathsep):
88 def whichTools(tools, paths)
[all...]
/external/deqp/scripts/build/
H A Dcommon.py101 def which (binName, paths = None):
102 if paths == None:
103 paths = os.environ['PATH'].split(os.pathsep)
106 for path in paths:
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace("//", "/")
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace("//", "/")
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace("//", "/")
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace("//", "/")
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace('\\', '/').replace("//", "/")
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace('\\', '/').replace("//", "/")
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTest.groovy70 * Return the specified paths concatenated with the path separator in between
71 * @param paths - the varargs list of path components to concatenate
74 protected static String p(String[] paths) {
75 return paths.join("/").replace('\\', '/').replace("//", "/")
/external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/
H A DIntentFilterData.java12 private final List<String> paths; field in class:IntentFilterData
22 this.paths = new ArrayList<>();
48 return paths;
73 paths.add(path);
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
H A DLinear.java1 package aurelienribon.tweenengine.paths;
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
H A Dcommon_client.py47 def get_url(self, paths=[], params={}):
50 @param paths: Parts of a path to append to base url.
58 if paths:
59 paths_str = '/' + '/'.join([str(p) for p in paths])
/external/chromium-trace/catapult/devil/devil/android/
H A Dinstall_commands.py28 paths = [posixpath.join(BIN_DIR, c) for c in _COMMANDS]
29 paths.append(posixpath.join(_FRAMEWORK_DIR, 'chromium_commands.jar'))
30 return device.PathExists(paths)
/external/libmojo/third_party/catapult/devil/devil/android/
H A Dinstall_commands.py28 paths = [posixpath.join(BIN_DIR, c) for c in _COMMANDS]
29 paths.append(posixpath.join(_FRAMEWORK_DIR, 'chromium_commands.jar'))
30 return device.PathExists(paths)

Completed in 3177 milliseconds

1234567891011>>