HomeSort by relevance Sort by last modified time
    Searched refs:origin (Results 1 - 25 of 1152) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
origin.mk 9 echo $(origin FOO)
10 echo $(origin FOO BAR)
11 echo $(origin FOO,BAR)
12 echo $(origin UNDEFINED)
13 echo $(origin PATH)
14 echo $(origin MAKEFILE_LIST)
15 echo $(origin CC)
16 echo $(origin $(FOOREF))
override_override.mk 15 echo $(origin A)
17 echo $(origin B)
19 echo $(origin C)
cmdline_var_makeflags.sh 26 @echo \$(ENVVAR) \$(origin ENVVAR)
27 @echo \$(MFVAR) \$(origin MFVAR)
28 @echo \$(CLVAR) \$(origin CLVAR)
29 @echo \$(FILEVAR) \$(origin FILEVAR)
autovar_assign.mk 8 $(info $(origin x))
15 $(info $(origin x))
nested_call.mk 2 {$(1)|$(origin 1),$(2)|$(origin 2)}
  /external/testng/src/main/java/org/testng/internal/
ParameterHolder.java 13 * Origin of the parameters.
22 public ParameterOrigin origin; field in class:ParameterHolder
24 public ParameterHolder(Iterator<Object[]> parameters, ParameterOrigin origin, DataProviderHolder dph) {
27 this.origin = origin;
  /external/desugar/java/com/google/devtools/build/android/desugar/
DependencyCollector.java 35 * Records that {@code origin} depends on companion class {@code target}. For the resulting
39 default void assumeCompanionClass(String origin, String target) {}
42 * Records that {@code origin} transitively implements {@code target} but {@code target} isn't
46 default void missingImplementedInterface(String origin, String target) {}
55 default void recordExtendedInterfaces(String origin, String... targets) {}
66 default void recordDefaultMethods(String origin, int count) {}
85 public void missingImplementedInterface(String origin, String target) {
88 "Couldn't find interface %s on the classpath for desugaring %s", target, origin));
  /external/ltp/testcases/kernel/fs/scsi/ltpscsi/
llseek.h 10 unsigned int origin);
llseek.c 54 unsigned long ol, llse_loff_t * result, unsigned int origin)
61 unsigned long ol, llse_loff_t * result, unsigned int origin)
63 return syscall(__NR_llseek, fd, oh, ol, result, origin);
68 unsigned int origin)
75 &result, origin);
82 unsigned int origin)
88 result = my_llseek(fd, offset, origin);
104 return lseek(fd, (off_t) offset, origin);
113 unsigned int origin)
120 return lseek(fd, (off_t) offset, origin);
    [all...]
  /frameworks/base/core/java/android/webkit/
GeolocationPermissions.java 27 * Geolocation permissions are applied to an origin, which consists of the
29 * Geolocation API, permission must be granted for that content's origin.
31 * This class stores Geolocation permissions. An origin's permission state can
33 * an origin.
35 * When an origin attempts to use the Geolocation API, but no permission state
36 * is currently set for that origin,
38 * is called. This allows the permission state to be set for that origin.
49 * permission state for an origin.
53 * Sets the Geolocation permission state for the supplied origin.
55 * @param origin the origin for which permissions are se
    [all...]
WebStorage.java 30 * Cache API can be attributed to an origin {@link WebStorage.Origin}, however
31 * it is not possible to set per-origin quotas. Note that there can be only
34 * The Web SQL Database API provides storage which is private to a given origin.
36 * to an origin. It is also possible to set per-origin quotas.
60 * currently used by an origin for the JavaScript storage APIs.
61 * An origin comprises the host, scheme and port of a URI.
64 public static class Origin {
71 protected Origin(String origin, long quota, long usage)
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
PositionMetric.java 21 protected enum Origin {
57 protected float getAbsolutePosition(float size, Origin origin) {
58 switch(origin) {
66 throw new IllegalArgumentException("Unsupported Origin: " + origin);
70 protected float getRelativePosition(float size, Origin origin) {
73 switch(origin) {
81 throw new IllegalArgumentException("Unsupported Origin: " + origin);
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookieSpec.java 46 * for a given host, port and path of origin
77 * @param origin details of the cookie origin
81 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException;
88 * @param origin details of the cookie origin
91 void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException;
97 * @param origin the target to test against
102 boolean match(Cookie cookie, CookieOrigin origin);
CookieAttributeHandler.java 67 * @param origin the cookie source to validate against
70 void validate(Cookie cookie, CookieOrigin origin)
78 * @param origin the cookie source to match against
81 boolean match(Cookie cookie, CookieOrigin origin);
  /external/skia/tests/
ExifTest.cpp 21 SkEncodedOrigin origin = codec->getOrigin(); local
22 REPORTER_ASSERT(r, kTopRight_SkEncodedOrigin == origin);
26 origin = codec->getOrigin();
27 REPORTER_ASSERT(r, kTopLeft_SkEncodedOrigin == origin);
  /external/skqp/tests/
ExifTest.cpp 21 SkEncodedOrigin origin = codec->getOrigin(); local
22 REPORTER_ASSERT(r, kTopRight_SkEncodedOrigin == origin);
26 origin = codec->getOrigin();
27 REPORTER_ASSERT(r, kTopLeft_SkEncodedOrigin == origin);
  /external/e2fsprogs/lib/ext2fs/
llseek.c 47 extern long long llseek (int fd, long long offset, int origin);
72 unsigned int, origin)
75 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
86 &result, origin);
95 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
98 return my_llseek (fd, offset, origin);
106 result = my_llseek (fd, offset, origin);
115 return lseek(fd, (off_t) offset, origin);
129 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
132 return lseek64 (fd, offset, origin);
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
ParsedOptionDescription.java 32 private final OptionInstanceOrigin origin; field in class:ParsedOptionDescription
38 OptionInstanceOrigin origin) {
42 this.origin = origin;
119 return origin;
123 return origin.getPriority();
127 return origin.getSource();
131 return origin.getImplicitDependent();
135 return origin.getExpandedFrom();
139 return origin.getExpandedFrom() == null && origin.getImplicitDependent() == null
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BestMatchSpec.java 102 final CookieOrigin origin) throws MalformedCookieException {
106 if (origin == null) {
107 throw new IllegalArgumentException("Cookie origin may not be null");
125 return getStrict().parse(helems, origin);
130 return getNetscape().parse(header, origin);
132 return getCompat().parse(helems, origin);
138 final CookieOrigin origin) throws MalformedCookieException {
142 if (origin == null) {
143 throw new IllegalArgumentException("Cookie origin may not be null");
146 getStrict().validate(cookie, origin);
    [all...]
CookieSpecBase.java 59 protected static String getDefaultPath(final CookieOrigin origin) {
60 String defaultPath = origin.getPath();
72 protected static String getDefaultDomain(final CookieOrigin origin) {
73 return origin.getHost();
76 protected List<Cookie> parse(final HeaderElement[] elems, final CookieOrigin origin)
87 cookie.setPath(getDefaultPath(origin));
88 cookie.setDomain(getDefaultDomain(origin));
108 public void validate(final Cookie cookie, final CookieOrigin origin)
113 if (origin == null) {
114 throw new IllegalArgumentException("Cookie origin may not be null")
    [all...]
RFC2965Spec.java 84 final String name, final String value, final CookieOrigin origin) {
86 cookie.setPath(getDefaultPath(origin));
87 cookie.setDomain(getDefaultDomain(origin));
92 final String name, final String value, final CookieOrigin origin) {
94 cookie.setPath(getDefaultPath(origin));
95 cookie.setDomain(getDefaultDomain(origin));
96 cookie.setPorts(new int [] { origin.getPort() });
103 CookieOrigin origin) throws MalformedCookieException {
107 if (origin == null) {
108 throw new IllegalArgumentException("Cookie origin may not be null")
    [all...]
BasicSecureHandler.java 59 public boolean match(final Cookie cookie, final CookieOrigin origin) {
63 if (origin == null) {
64 throw new IllegalArgumentException("Cookie origin may not be null");
66 return !cookie.isSecure() || origin.isSecure();
  /libcore/ojluni/src/main/java/java/util/
SplittableRandom.java 224 static final String BAD_RANGE = "bound must be greater than origin";
251 * the public nextX(origin, bound) methods. These exist mainly to
258 * origin is greater than bound, acts as unbounded form of
261 * @param origin the least value, unless greater than bound
262 * @param bound the upper bound (exclusive), must not equal origin
265 final long internalNextLong(long origin, long bound) {
293 if (origin < bound) {
294 long n = bound - origin, m = n - 1;
296 r = (r & m) + origin;
302 r += origin;
835 final int origin; field in class:SplittableRandom.RandomIntsSpliterator
891 final long origin; field in class:SplittableRandom.RandomLongsSpliterator
948 final double origin; field in class:SplittableRandom.RandomDoublesSpliterator
    [all...]
  /external/skia/src/core/
SkPixmapPriv.h 36 * Decode an image and then copy into dst, applying origin.
39 * applying the origin.
40 * @param origin SkEncodedOrigin to apply to the raw pixels.
42 * applying the origin.
44 static bool Orient(const SkPixmap& dst, SkEncodedOrigin origin,
48 if (origin != kTopLeft_SkEncodedOrigin) {
50 if (ShouldSwapWidthHeight(origin)) {
62 return Orient(dst, *tmp, OriginToOrient(origin));
  /external/skqp/src/core/
SkPixmapPriv.h 36 * Decode an image and then copy into dst, applying origin.
39 * applying the origin.
40 * @param origin SkEncodedOrigin to apply to the raw pixels.
42 * applying the origin.
44 static bool Orient(const SkPixmap& dst, SkEncodedOrigin origin,
48 if (origin != kTopLeft_SkEncodedOrigin) {
50 if (ShouldSwapWidthHeight(origin)) {
62 return Orient(dst, *tmp, OriginToOrient(origin));

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011>>