HomeSort by relevance Sort by last modified time
    Searched refs:paths (Results 126 - 150 of 1714) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/ImageMagick/MagickCore/
version.c 288 *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
configure.c 680 *paths;
693 paths=GetConfigurePaths(filename,exception);
694 if (paths != (LinkedListInfo *) NULL)
696 ResetLinkedListIterator(paths);
697 element=(const char *) GetNextValueInLinkedList(paths);
707 element=(const char *) GetNextValueInLinkedList(paths);
709 paths=DestroyLinkedList(paths,RelinquishMagickMemory);
747 % GetConfigurePaths() returns any Magick configuration paths associated
773 *paths;
666 *paths; local
758 *paths; local
    [all...]
  /external/skia/tools/lua/
lua_pictures.cpp 119 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/skqp/tools/lua/
lua_pictures.cpp 119 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();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
DumpTruck.java 75 final ArrayList<String> paths = new ArrayList<String>(); local
99 paths.add(path);
113 if (DumpTruck.zipUp(zipfile, paths)) {
154 private static boolean zipUp(String zipfilePath, ArrayList<String> paths) {
158 for (String filename : paths) {
  /external/skia/experimental/docs/
interpolatorFunctions.js 58 function interp_paths(value, paths) {
59 assert(isArray(paths));
60 assert(paths.length == 2);
61 var curves0 = paths[0];
63 var curves1 = paths[1];
  /external/skqp/experimental/docs/
interpolatorFunctions.js 58 function interp_paths(value, paths) {
59 assert(isArray(paths));
60 assert(paths.length == 2);
61 var curves0 = paths[0];
63 var curves1 = paths[1];
  /external/protobuf/src/google/protobuf/util/
field_mask_util.cc 43 return Join(mask.paths(), ",");
48 vector<string> paths = Split(str, ","); local
49 for (int i = 0; i < paths.size(); ++i) {
50 if (paths[i].empty()) continue;
51 out->add_paths(paths[i]);
104 const string& path = mask.paths(i);
119 vector<string> paths = Split(str, ","); local
120 for (int i = 0; i < paths.size(); ++i) {
121 if (paths[i].empty()) continue;
123 if (!CamelCaseToSnakeCase(paths[i], &snakecase_path))
    [all...]
  /external/squashfs-tools/squashfs-tools/
unsquashfs.c 1278 void free_path(struct pathname *paths)
1282 for(i = 0; i < paths->names; i++) {
1283 if(paths->name[i].paths)
1284 free_path(paths->name[i].paths);
1285 free(paths->name[i].name);
1286 if(paths->name[i].preg) {
1287 regfree(paths->name[i].preg);
1288 free(paths->name[i].preg)
2508 struct pathnames *paths = NULL; local
    [all...]
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 931 final List<String> paths = uri.getPathSegments(); local
944 final List<String> paths = uri.getPathSegments(); local
962 final List<String> paths = uri.getPathSegments(); local
982 final List<String> paths = rootUri.getPathSegments(); local
995 final List<String> paths = documentUri.getPathSegments(); local
1010 final List<String> paths = documentUri.getPathSegments(); local
    [all...]
  /platform_testing/libraries/app-helpers/core/src/android/platform/helpers/
HelperManager.java 85 List<String> paths = Arrays.asList(context.getPackageCodePath()); local
86 sInstance = new HelperManager(paths, instr);
95 * @param paths the dex files where the classes are included
100 public static HelperManager getInstance(List<String> paths, Instrumentation instr) {
103 for (String path : paths) {
114 sInstance = new HelperManager(paths, instr);
122 private HelperManager(List<String> paths, Instrumentation instr) {
127 for (String path : paths) {
  /toolchain/binutils/
build.py 35 import ndk.paths # pylint: disable=import-error
80 sysroot = ndk.paths.sysroot_path(ndk.abis.arch_to_toolchain(arch))
109 toolchain = ndk.paths.android_path(
114 toolchain = ndk.paths.android_path(
118 toolchain = ndk.paths.android_path(
207 out_dir = ndk.paths.get_out_dir()
208 dist_dir = ndk.paths.get_dist_dir(out_dir)
  /packages/apps/Settings/src/com/android/settings/graph/
UsageGraph.java 55 // Paths in coordinates they are passed in.
57 // Paths in local coordinates for drawing.
60 // Paths for projection in coordinates they are passed in.
62 // Paths for projection in local coordinates for drawing.
140 SparseIntArray points, SparseIntArray paths, SparseIntArray localPaths) {
143 paths.put(points.keyAt(i), points.valueAt(i));
146 paths.put(points.keyAt(points.size() - 1) + 1, PATH_DELIM);
147 calculateLocalPaths(paths, localPaths);
174 void calculateLocalPaths(SparseIntArray paths, SparseIntArray localPaths) {
184 for (int i = 0; i < paths.size(); i++)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
WorkingSetHelper.java 90 TreePath[] paths= treeSelection.getPathsFor(element); local
91 if (paths.length != 1)
94 TreePath path= paths[0];
  /sdk/find_java2/FindJava2/
FindJava2.cpp 116 std::set<CJavaPath> paths; local
117 javaFinder.findJavaPaths(&paths);
119 for (const CJavaPath &p : paths) {
  /build/make/core/tasks/
vndk.mk 39 # Returns list of file paths of the intermediate objs
45 define paths-of-intermediates
57 # Returns paths of notice files under $(TARGET_OUT_NOTICE_FILES)
62 define paths-of-notice-files
156 $(call paths-of-intermediates,$(foreach lib,$(vndk_core_libs),$(lib):$(lib).so),SHARED_LIBRARIES)
160 $(call paths-of-intermediates,$(foreach lib,$(vndk_sp_libs),$(lib):$(lib).so),SHARED_LIBRARIES)
164 $(call paths-of-intermediates,$(foreach txt,$(vndk_prebuilt_txts), \
170 $(call paths-of-notice-files,$(vndk_core_libs),vndk) \
171 $(call paths-of-notice-files,$(vndk_sp_libs),vndk-sp)
176 $(call paths-of-intermediates,$(foreach lib,$(vndk_core_libs),$(lib):$(lib).so),SHARED_LIBRARIES,true
    [all...]
  /build/soong/android/
paths.go 193 // Paths is a slice of Path objects, with helpers to operate on the collection.
194 type Paths []Path
196 // PathsForSource returns Paths rooted from SrcDir
197 func PathsForSource(ctx PathContext, paths []string) Paths {
198 ret := make(Paths, len(paths))
199 for i, path := range paths {
205 // ExistentPathsForSources returns a list of Paths rooted from SrcDir that are
208 func ExistentPathsForSources(ctx PathContext, paths []string) Paths
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
tmpfile.c 55 #include <paths.h>
  /external/mesa3d/src/hgl/
GLRendererRoster.cpp 102 const directory_which paths[] = { local
109 i < sizeof(paths) / sizeof(paths[0]); i++) {
111 status_t status = find_directory(paths[i], &path, true);
  /external/ppp/pppd/
pathnames.h 8 #include <paths.h>
  /external/tensorflow/tensorflow/contrib/tensor_forest/python/
tensor_forest_test.py 108 probs, paths, var = graph_builder.inference_graph(input_data)
110 self.assertTrue(isinstance(paths, ops.Tensor))
152 probs, paths, var = graph_builder.inference_graph(input_data)
154 self.assertTrue(isinstance(paths, ops.Tensor))
  /external/tensorflow/tensorflow/core/lib/io/
path.h 25 string JoinPathImpl(std::initializer_list<tensorflow::StringPiece> paths);
31 // Join multiple paths together, without introducing unnecessary path
70 // NOTE: This respects relative vs. absolute paths, but does not
72 // paths with respect to the actual working directory. That is, this is purely
  /frameworks/base/media/java/android/media/
MediaScannerConnection.java 192 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) {
193 mPaths = paths;
230 * @param paths Array of paths to be scanned.
238 public static void scanFile(Context context, String[] paths, String[] mimeTypes,
240 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
utmpx.h 30 # include <paths.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
mntent.h 26 #include <paths.h>

Completed in 461 milliseconds

1 2 3 4 56 7 8 91011>>