Searched defs:path (Results 101 - 125 of 2871) sorted by relevance

1234567891011>>

/external/ImageMagick/MagickCore/
H A Dclient.c140 % SetClientPath() sets the client path if the name is specified. Otherwise
141 % the current client path is returned. A zero-length string is returned if
142 % the client path has never been set.
146 % const char *SetClientPath(const char *path)
150 % o path: Specifies the new client path.
153 MagickExport const char *SetClientPath(const char *path)
158 if ((path != (char *) NULL) && (*path != '\0'))
159 (void) CopyMagickString(client_path,path,MagickPathExten
148 SetClientPath(const char *path) argument
[all...]
H A Dcoder.h28 *path, member in struct:_CoderInfo
H A Dconfigure.h30 *path, member in struct:_ConfigureInfo
H A Dlocale_.h30 *path, member in struct:_LocaleInfo
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DBezierLineAndPointRenderer.java32 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) { argument
33 //path.lineTo(thisPoint.x, thisPoint.y);
38 path.quadTo((lastPoint.x + mid.x) / 2, lastPoint.y, mid.x, mid.y);
39 //path.quadTo((mid.x + thisPoint.x) / 2, thisPoint.y, thisPoint.x, thisPoint.y);
40 path.quadTo((mid.x + thisPoint.x) / 2, lastPoint.y, thisPoint.x, thisPoint.y);
H A DStepRenderer.java34 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) { argument
35 //path.lineTo(thisPoint.x, thisPoint.y);
37 path.lineTo(thisPoint.x, lastPoint.y);
38 path.lineTo(thisPoint.x, thisPoint.y);
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
H A DCallCriterion.java20 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
21 assert path == null || path.getLeaf() == leaf;
22 return isSatisfiedBy(path);
27 public boolean isSatisfiedBy(TreePath path) { argument
28 if (path == null) {
32 Tree leaf = path.getLeaf();
35 int indexInSource = MethodCallScanner.indexOfMethodCallTree(path, leaf);
46 boolean b = this.isSatisfiedBy(path.getParentPath());
H A DEnclosedByCriterion.java26 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
27 assert path == null || path.getLeaf() == leaf;
28 return isSatisfiedBy(path);
33 public boolean isSatisfiedBy(TreePath path) { argument
35 if (path == null) {
39 for (Tree tree : path) {
H A DInFieldInitCriterion.java23 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
24 assert path == null || path.getLeaf() == leaf;
25 return isSatisfiedBy(path);
30 public boolean isSatisfiedBy(TreePath path) { argument
31 while (path != null) {
32 if (CommonScanner.isFieldInit(path)) {
33 return varCriterion.isSatisfiedBy(path);
35 path = path
[all...]
H A DInMethodCriterion.java34 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
35 assert path == null || path.getLeaf() == leaf;
36 return isSatisfiedBy(path);
41 public boolean isSatisfiedBy(TreePath path) { argument
43 Main.pathToString(path), this.toString());
48 if (path.getLeaf().getKind() == Tree.Kind.METHOD) {
49 boolean b = sigMethodCriterion.isSatisfiedBy(path);
53 if (path.getLeaf().getKind() == Tree.Kind.VARIABLE) {
54 ModifiersTree mods = ((VariableTree) path
[all...]
H A DInPackageCriterion.java30 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
31 assert path == null || path.getLeaf() == leaf;
32 return isSatisfiedBy(path);
37 public boolean isSatisfiedBy(TreePath path) { argument
38 if (path == null) {
43 Main.pathToString(path), this.toString());
46 Tree tree = path.getLeaf();
57 path = path
[all...]
H A DInstanceOfCriterion.java22 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
23 assert path == null || path.getLeaf() == leaf;
24 return isSatisfiedBy(path);
29 public boolean isSatisfiedBy(TreePath path) { argument
30 if (path == null) {
35 Tree leaf = path.getLeaf();
43 TreePath parentPath = path.getParentPath();
45 Criteria.dbug.debug("return: parent path null%n");
62 int indexInSource = InstanceOfScanner.indexOfInstanceOfTree(path, paren
[all...]
H A DIntersectionTypeLocationCriterion.java24 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
25 assert path == null || path.getLeaf() == leaf;
26 return isSatisfiedBy(path);
30 public boolean isSatisfiedBy(TreePath path) { argument
31 TreePath parentPath = path.getParentPath();
38 Tree leaf = path.getLeaf();
45 Tree.Kind kind = path.getLeaf().getKind();
47 return isSatisfiedBy(path.getParentPath());
H A DIsCriterion.java32 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
33 assert path == null || path.getLeaf() == leaf;
34 return isSatisfiedBy(path);
39 public boolean isSatisfiedBy(TreePath path) { argument
40 if (path == null) {
43 Tree tree = path.getLeaf();
45 return InClassCriterion.isSatisfiedBy(path, name, /*exactMatch=*/ true);
58 // return InClassCriterion.isSatisfiedBy(path, name, /*exactMatch=*/ true);
H A DLambdaCriterion.java21 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
22 assert path == null || path.getLeaf() == leaf;
23 return isSatisfiedBy(path);
28 public boolean isSatisfiedBy(TreePath path) { argument
29 if (path == null) {
34 Tree leaf = path.getLeaf();
42 TreePath parentPath = path.getParentPath();
44 Criteria.dbug.debug("return: parent path null%n");
57 int indexInSource = LambdaScanner.indexOfLambdaExpressionTree(path, paren
[all...]
H A DMemberReferenceCriterion.java20 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
21 assert path == null || path.getLeaf() == leaf;
22 return isSatisfiedBy(path);
27 public boolean isSatisfiedBy(TreePath path) { argument
28 if (path == null) {
32 Tree leaf = path.getLeaf();
36 MemberReferenceScanner.indexOfMemberReferenceTree(path, leaf);
48 boolean b = this.isSatisfiedBy(path.getParentPath());
H A DNotInMethodCriterion.java24 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
25 assert path == null || path.getLeaf() == leaf;
26 return isSatisfiedBy(path);
31 public boolean isSatisfiedBy(TreePath path) { argument
33 Tree.Kind kind = path.getLeaf().getKind();
40 path = path.getParentPath();
41 } while (path != null && path
[all...]
H A DPackageCriterion.java28 public boolean isSatisfiedBy(TreePath path, Tree tree) { argument
29 assert path == null || path.getLeaf() == tree;
30 return isSatisfiedBy(path);
35 public boolean isSatisfiedBy(TreePath path) { argument
36 Tree tree = path.getLeaf();
38 Main.pathToString(path), tree, this.toString());
H A DReceiverCriterion.java19 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
20 assert path == null || path.getLeaf() == leaf;
21 return isSatisfiedBy(path);
26 public boolean isSatisfiedBy(TreePath path) { argument
28 if (path == null) {
32 if (path.getLeaf().getKind() == Tree.Kind.METHOD) {
33 if (isSigMethodCriterion.isSatisfiedBy(path)) {
34 MethodTree leaf = (MethodTree) path.getLeaf();
48 TreePath parent = path;
[all...]
H A DTypeArgumentCriterion.java22 public boolean isSatisfiedBy(TreePath path, Tree leaf) { argument
23 assert path == null || path.getLeaf() == leaf;
24 return isSatisfiedBy(path);
29 public boolean isSatisfiedBy(TreePath path) { argument
30 if (path == null || path.getParentPath() == null) { return false; }
32 TreePath parentPath = path.getParentPath();
49 && typeArgs.get(loc.index) == path.getLeaf();
/external/autotest/client/cros/
H A Ddevice_jail_test_base.py5 import os.path namespace
21 if not (os.path.exists(device_jail_utils.JAIL_CONTROL_PATH) and
22 os.path.exists(device_jail_utils.JAIL_REQUEST_PATH)):
/external/autotest/client/site_tests/security_Minijail_seccomp/src/
H A Dopen.c29 char *path; local
34 path = "/dev/zero";
38 path = "/dev/null";
42 path = "/dev/null";
50 int fd = syscall(__NR_open, path, flags);
/external/autotest/tko/parsers/test/
H A Dexecute_parser.py6 from os import path namespace
20 scenario_dirpath = path.normpath(args[0])
23 if not path.exists(scenario_dirpath) or not path.isdir(scenario_dirpath):
/external/autotest/tko/parsers/test/templates/
H A Dbase.py8 from os import path namespace
/external/avb/examples/uefi/
H A Duefi_avb_ops.h37 EFI_DEVICE_PATH* path; member in struct:UEFIAvbOpsData

Completed in 554 milliseconds

1234567891011>>