Searched refs:origin (Results 1 - 25 of 663) sorted by relevance

1234567891011>>

/external/testng/src/main/java/org/testng/internal/
H A DParameterHolder.java22 public ParameterOrigin origin; field in class:ParameterHolder
24 public ParameterHolder(Iterator<Object[]> parameters, ParameterOrigin origin, DataProviderHolder dph) { argument
27 this.origin = origin;
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DDependencyCollector.java35 * Records that {@code origin} depends on companion class {@code target}. For the resulting
39 default void assumeCompanionClass(String origin, String target) {} argument
42 * Records that {@code origin} transitively implements {@code target} but {@code target} isn't
46 default void missingImplementedInterface(String origin, String target) {} argument
55 default void recordExtendedInterfaces(String origin, String... targets) {} argument
66 default void recordDefaultMethods(String origin, int count) {} argument
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/
H A Dllseek.h10 unsigned int origin);
H A Dllseek.c54 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);
53 _llseek(unsigned int fd, unsigned long oh, unsigned long ol, llse_loff_t * result, unsigned int origin) argument
60 _llseek(unsigned int fd, unsigned long oh, unsigned long ol, llse_loff_t * result, unsigned int origin) argument
67 my_llseek(unsigned int fd, llse_loff_t offset, unsigned int origin) argument
81 llse_llseek(unsigned int fd, llse_loff_t offset, unsigned int origin) argument
112 llse_llseek(unsigned int fd, llse_loff_t offset, unsigned int origin) argument
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DPositionMetric.java57 protected float getAbsolutePosition(float size, Origin origin) { argument
58 switch(origin) {
66 throw new IllegalArgumentException("Unsupported Origin: " + origin);
70 protected float getRelativePosition(float size, Origin origin) { argument
73 switch(origin) {
81 throw new IllegalArgumentException("Unsupported Origin: " + origin);
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpec.java46 * 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; argument
88 * @param origin details of the cookie origin
91 void validate(Cookie cookie, CookieOrigin origin) throws MalformedCookieException; argument
97 * @param origin the target to test against
102 boolean match(Cookie cookie, CookieOrigin origin); argument
H A DCookieAttributeHandler.java67 * @param origin the cookie source to validate against
70 void validate(Cookie cookie, CookieOrigin origin) argument
78 * @param origin the cookie source to match against
81 boolean match(Cookie cookie, CookieOrigin origin); argument
/external/skia/tests/
H A DExifTest.cpp21 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/
H A DExifTest.cpp21 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/
H A Dllseek.c47 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) argument
86 &result, origin);
95 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) argument
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) argument
132 return lseek64 (fd, offset, origin);
[all...]
/external/desugar/java/com/google/devtools/common/options/
H A DParsedOptionDescription.java32 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
34 ParsedOptionDescription( OptionDefinition optionDefinition, String commandLineForm, @Nullable String unconvertedValue, OptionInstanceOrigin origin) argument
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBestMatchSpec.java102 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);
100 parse( final Header header, final CookieOrigin origin) argument
136 validate( final Cookie cookie, final CookieOrigin origin) argument
152 match(final Cookie cookie, final CookieOrigin origin) argument
[all...]
H A DCookieSpecBase.java59 protected static String getDefaultPath(final CookieOrigin origin) { argument
60 String defaultPath = origin.getPath();
72 protected static String getDefaultDomain(final CookieOrigin origin) { argument
73 return origin.getHost();
76 protected List<Cookie> parse(final HeaderElement[] elems, final CookieOrigin origin) argument
87 cookie.setPath(getDefaultPath(origin));
88 cookie.setDomain(getDefaultDomain(origin));
108 public void validate(final Cookie cookie, final CookieOrigin origin) argument
113 if (origin == null) {
114 throw new IllegalArgumentException("Cookie origin ma
121 match(final Cookie cookie, final CookieOrigin origin) argument
[all...]
H A DRFC2965Spec.java84 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 ma
83 createCookie( final String name, final String value, final CookieOrigin origin) argument
91 createCookie2( final String name, final String value, final CookieOrigin origin) argument
101 parse( final Header header, CookieOrigin origin) argument
158 validate(final Cookie cookie, CookieOrigin origin) argument
171 match(final Cookie cookie, CookieOrigin origin) argument
223 adjustEffectiveHost(final CookieOrigin origin) argument
[all...]
H A DBasicSecureHandler.java59 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
63 if (origin == null) {
64 throw new IllegalArgumentException("Cookie origin may not be null");
66 return !cookie.isSecure() || origin.isSecure();
H A DAbstractCookieAttributeHandler.java46 public void validate(final Cookie cookie, final CookieOrigin origin) argument
51 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
H A DBasicPathHandler.java62 public void validate(final Cookie cookie, final CookieOrigin origin) argument
64 if (!match(cookie, origin)) {
67 + "\". Path of origin: \"" + origin.getPath() + "\"");
71 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
75 if (origin == null) {
76 throw new IllegalArgumentException("Cookie origin may not be null");
78 String targetpath = origin.getPath();
H A DNetscapeDomainHandler.java53 public void validate(final Cookie cookie, final CookieOrigin origin) argument
55 super.validate(cookie, origin);
57 String host = origin.getHost();
97 public boolean match(Cookie cookie, CookieOrigin origin) { argument
101 if (origin == null) {
102 throw new IllegalArgumentException("Cookie origin may not be null");
104 String host = origin.getHost();
/external/skia/src/core/
H A DSkPixmapPriv.h36 * 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, argument
48 if (origin != kTopLeft_SkEncodedOrigin) {
50 if (ShouldSwapWidthHeight(origin)) {
62 return Orient(dst, *tmp, OriginToOrient(origin));
/external/skqp/src/core/
H A DSkPixmapPriv.h36 * 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, argument
48 if (origin != kTopLeft_SkEncodedOrigin) {
50 if (ShouldSwapWidthHeight(origin)) {
62 return Orient(dst, *tmp, OriginToOrient(origin));
/external/e2fsprogs/lib/blkid/
H A Dllseek.c46 extern long long llseek(int fd, long long offset, int origin);
71 unsigned int, origin)
74 static blkid_loff_t my_llseek(int fd, blkid_loff_t offset, int origin) argument
82 &result, origin);
86 &result, origin);
131 blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int origin) argument
134 return lseek64 (fd, offset, origin);
141 return lseek(fd, (off_t) offset, origin);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
H A DArrayType.java57 * The origin of a pair of array brackets [].
73 private Origin origin; field in class:ArrayType
76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) { argument
77 this(null, componentType, origin, annotations);
88 public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) { argument
91 setOrigin(origin);
177 private Origin origin; field in class:ArrayType.ArrayBracketPair
179 public ArrayBracketPair(TokenRange tokenRange, Origin origin, NodeList<AnnotationExpr> annotations) { argument
182 setOrigin(origin);
204 return origin;
207 setOrigin(Origin origin) argument
224 setOrigin(final Origin origin) argument
[all...]
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
H A DSignedCertificateTimestamp.java53 // origin is implied from the SCT's source and is not encoded in it,
55 private final Origin origin; field in class:SignedCertificateTimestamp
59 DigitallySigned signature, Origin origin) {
65 this.origin = origin;
84 return origin;
90 public static SignedCertificateTimestamp decode(InputStream input, Origin origin) argument
103 origin
110 public static SignedCertificateTimestamp decode(byte[] input, Origin origin) argument
112 return decode(new ByteArrayInputStream(input), origin);
57 SignedCertificateTimestamp(Version version, byte[] logId, long timestamp, byte[] extensions, DigitallySigned signature, Origin origin) argument
[all...]
/external/skia/src/utils/
H A DSkCanvasStack.cpp16 void SkCanvasStack::pushCanvas(std::unique_ptr<SkCanvas> canvas, const SkIPoint& origin) { argument
26 data->origin = origin;
35 localBounds.offset(origin - fCanvasData[i-1].origin);
73 tempMatrix.postTranslate(SkIntToScalar(-fCanvasData[i].origin.x()),
74 SkIntToScalar(-fCanvasData[i].origin.y()));
99 deviceRgn.translate(-fCanvasData[i].origin.x(),
100 -fCanvasData[i].origin.y(), &tempRegion);
/external/skqp/src/utils/
H A DSkCanvasStack.cpp16 void SkCanvasStack::pushCanvas(std::unique_ptr<SkCanvas> canvas, const SkIPoint& origin) { argument
26 data->origin = origin;
35 localBounds.offset(origin - fCanvasData[i-1].origin);
73 tempMatrix.postTranslate(SkIntToScalar(-fCanvasData[i].origin.x()),
74 SkIntToScalar(-fCanvasData[i].origin.y()));
99 deviceRgn.translate(-fCanvasData[i].origin.x(),
100 -fCanvasData[i].origin.y(), &tempRegion);

Completed in 610 milliseconds

1234567891011>>