Searched defs:paths (Results 1 - 25 of 132) sorted by relevance

123456

/external/jsoncpp/test/
H A Dcleantests.py5 paths = [] variable
7 paths += glob.glob( 'data/' + pattern )
9 for path in paths:
/external/google-breakpad/src/processor/
H A Dsimple_symbol_supplier.h34 // created with one or more base directories, which are the root paths for all
65 // SimpleSymbolSupplier will iterate over all root paths searching for
99 // Creates a new SimpleSymbolSupplier, using paths as a list of root
100 // paths where symbols may be stored.
101 explicit SimpleSymbolSupplier(const vector<string> &paths) : paths_(paths) {} argument
/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/skia/gm/
H A Dpathmaskcache.cpp72 SkTArray<SkPath> paths; variable
73 paths.push_back();
74 paths.back().moveTo(0.f, 0.f);
75 paths.back().lineTo(98.f, 100.f);
76 paths.back().lineTo(100.f, 100.f);
77 paths.back().conicTo(150.f, 50.f, 100.f, 0.f, 0.6f);
78 paths.back().conicTo(148.f, 50.f, 100.f, 100.f, 0.6f);
79 paths.back().conicTo(50.f, 30.f, 0.f, 100.f, 0.9f);
81 paths.push_back();
82 paths
[all...]
H A Dshadowutils.cpp33 SkTArray<SkPath> paths; local
34 paths.push_back().addRoundRect(SkRect::MakeWH(50, 50), 10, 10);
37 paths.push_back().addRRect(oddRRect);
38 paths.push_back().addRect(SkRect::MakeWH(50, 50));
39 paths.push_back().addCircle(25, 25, 25);
40 paths.push_back().cubicTo(100, 50, 20, 100, 0, 0);
41 paths.push_back().addOval(SkRect::MakeWH(20, 60));
58 for (const auto& path : paths) {
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
H A DLinear.java1 package aurelienribon.tweenengine.paths;
H A DCatmullRom.java1 package aurelienribon.tweenengine.paths;
/external/jsilver/src/org/clearsilver/jni/
H A DJNI.java135 public static void setLibrarySearchPaths(String... paths) { argument
136 JNI.librarySearchPaths = paths;
/external/skia/experimental/docs/
H A DexampleSlides.js57 var paths = {
331 { "draw":"paths.wedgeXY8", "paint":"paints.gradient1" }
335 { "draw":"paths.wedgeXY6", "paint":"paints.gradient2" }
339 { "draw":"paths.wedgeXY3", "paint":"paints.gradient3" }
346 { "draw":"paths.span4", "paint":"paints.stroke" },
347 { "draw":"paths.wedge4", "paint":"paints.gradient4" },
348 { "draw":"paths.span5", "paint":"paints.stroke" },
349 { "draw":"paths.wedge5", "paint":"paints.gradient5" },
350 { "draw":"paths.span6", "paint":"paints.stroke" },
351 { "draw":"paths
[all...]
H A DsvgBackend.js20 case "paths":
42 case "paths":
71 svgCache = { "paths":{}, "pictures":{}, "text":{} };
225 case 'paths':
/external/testng/src/test/java/test/thread/
H A DParallelSuiteTest.java44 int expectedSuiteCount, Boolean randomizeSuites, List<String> paths) {
48 tng.setTestSuites(paths);
43 runTest(int suiteThreadPoolSize, int expectedThreadCount, int expectedSuiteCount, Boolean randomizeSuites, List<String> paths) argument
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
H A Dimport_statement.py125 def paths(self): member in class:Import
177 def paths(self): member in class:ImportName
241 def paths(self): member in class:ImportFrom
/external/elfutils/libdwfl/
H A Ddwfl_build_id_find_elf.c76 char *paths = path; local
77 while (fd < 0 && (dir = strsep (&paths, ":")) != NULL)
/external/flatbuffers/samples/
H A DSampleBinary.php24 $paths = array(join(DIRECTORY_SEPARATOR, array($root_dir, "php")), variable
26 foreach ($paths as $path) {
/external/parameter-framework/upstream/test/functional-tests/include/
H A DConfigFiles.hpp67 auto paths = pluginLocation.second; local
68 for (auto &path : paths) {
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DFieldMaskTree.java90 * a field path to the tree, redundant sub-paths will be removed. That is,
119 // Turn the matching node into a leaf node (i.e., remove sub-paths).
125 * Merges all field paths in a FieldMask into this tree.
139 List<String> paths = new ArrayList<String>();
140 getFieldPaths(root, "", paths);
141 return FieldMask.newBuilder().addAllPaths(paths).build();
144 /** Gathers all field paths in a sub-tree. */
145 private void getFieldPaths(Node node, String path, List<String> paths) { argument
147 paths.add(path);
152 getFieldPaths(entry.getValue(), childPath, paths);
[all...]
H A DFieldMaskUtil.java63 // Ignore empty paths.
86 * Parses from a string to a FieldMask and validates all field paths.
97 * Constructs a FieldMask for a list of field paths in a certain type.
103 Class<? extends Message> type, Iterable<String> paths) {
105 for (String path : paths) {
107 // Ignore empty field paths.
149 * Checks whether paths in a given fields mask are valid.
159 * Checks whether paths in a given fields mask are valid.
181 * Checks whether paths in a given fields mask are valid.
208 * FieldMask, all field paths ar
102 fromStringList( Class<? extends Message> type, Iterable<String> paths) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dfield_mask.pb.h100 // repeated string paths = 1;
104 const ::std::string& paths(int index) const;
113 const ::google::protobuf::RepeatedPtrField< ::std::string>& paths() const;
138 // repeated string paths = 1;
145 inline const ::std::string& FieldMask::paths(int index) const { function in class:google::protobuf::FieldMask
146 // @@protoc_insertion_point(field_get:google.protobuf.FieldMask.paths)
150 // @@protoc_insertion_point(field_mutable:google.protobuf.FieldMask.paths)
154 // @@protoc_insertion_point(field_set:google.protobuf.FieldMask.paths)
159 // @@protoc_insertion_point(field_set_char:google.protobuf.FieldMask.paths)
164 // @@protoc_insertion_point(field_set_pointer:google.protobuf.FieldMask.paths)
183 FieldMask::paths() const { function in class:google::protobuf::FieldMask
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Dfield_mask_utility.cc113 util::Status DecodeCompactFieldMaskPaths(StringPiece paths, argument
116 int length = paths.length();
131 if (paths[i] == '\\') {
135 if (paths[i] != '\"') {
139 if (i >= length - 1 || paths[i + 1] != ']') {
142 StrCat("Invalid FieldMask '", paths,
150 if (i < length - 1 && paths[i + 1] != '.' && paths[i + 1] != ',' &&
151 paths[i + 1] != ')' && paths[
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
H A DTestUtil.java80 public static File getSystemResourceDir(String... paths) throws Exception { argument
93 return file(new File(sdkDir, "platforms/android-10/data/res/"), paths);
/external/skia/tools/lua/
H A Dlua_pictures.cpp119 SkTArray<SkString> paths; local
126 paths.push_back() = SkOSPath::Join(directory.c_str(), filename.c_str());
130 paths.push_back() = FLAGS_skpPath[i];
133 for (int i = 0; i < paths.count(); i++) {
140 const char* path = paths[i].c_str();
/external/ImageMagick/MagickCore/
H A Dversion.c288 *paths;
291 paths=GetConfigurePaths(MagickURLFilename,exception);
293 if (paths == (LinkedListInfo *) NULL)
295 element=(const char *) GetNextValueInLinkedList(paths);
302 element=(const char *) GetNextValueInLinkedList(paths);
282 *paths; local
/external/chromium-trace/catapult/telemetry/telemetry/core/
H A Dmemory_cache_http_server.py155 def __init__(self, host_port, handler, paths):
158 for path in paths:
220 paths = args['paths']
221 for path in paths:
229 server_address, MemoryCacheHTTPRequestHandler, paths)
238 def __init__(self, paths):
242 for path in paths:
245 paths = list(paths)
263 def paths(self): member in class:MemoryCacheHTTPServer
[all...]
/external/libdrm/freedreno/kgsl/
H A Dkgsl_pipe.c211 static const char *paths[] = { local
222 fd = open(paths[id], O_RDWR);
225 paths[id], fd, strerror(errno));
255 INFO_MSG(" Device: %s", paths[id]);
/external/strace/tests/
H A Dfanotify_mark.c129 struct strval paths[] = { local
158 for (m = 0; m < ARRAY_SIZE(paths); m++)
166 paths[m].val,
167 paths[m].str);

Completed in 761 milliseconds

123456