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

12 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieAttributeHandler.java 46 public void validate(final Cookie cookie, final CookieOrigin origin)
51 public boolean match(final Cookie cookie, final CookieOrigin origin) {
BasicPathHandler.java 62 public void validate(final Cookie cookie, final CookieOrigin origin)
64 if (!match(cookie, origin)) {
67 + "\". Path of origin: \"" + origin.getPath() + "\"");
71 public boolean match(final Cookie cookie, final CookieOrigin origin) {
75 if (origin == null) {
76 throw new IllegalArgumentException("Cookie origin may not be null");
78 String targetpath = origin.getPath();
NetscapeDomainHandler.java 53 public void validate(final Cookie cookie, final CookieOrigin origin)
55 super.validate(cookie, origin);
57 String host = origin.getHost();
97 public boolean match(Cookie cookie, CookieOrigin origin) {
101 if (origin == null) {
102 throw new IllegalArgumentException("Cookie origin may not be null");
104 String host = origin.getHost();
BasicDomainHandler.java 65 public void validate(final Cookie cookie, final CookieOrigin origin)
70 if (origin == null) {
71 throw new IllegalArgumentException("Cookie origin may not be null");
77 // back to the origin-server.
78 String host = origin.getHost();
95 + "\". Domain of origin: \"" + host + "\"");
102 + "\". Domain of origin: \"" + host + "\"");
107 public boolean match(final Cookie cookie, final CookieOrigin origin) {
111 if (origin == null) {
112 throw new IllegalArgumentException("Cookie origin may not be null")
    [all...]
RFC2109DomainHandler.java 67 public void validate(final Cookie cookie, final CookieOrigin origin)
72 if (origin == null) {
73 throw new IllegalArgumentException("Cookie origin may not be null");
75 String host = origin.getHost();
105 + "\". Domain of origin: \"" + host + "\"");
117 public boolean match(final Cookie cookie, final CookieOrigin origin) {
121 if (origin == null) {
122 throw new IllegalArgumentException("Cookie origin may not be null");
124 String host = origin.getHost();
  /external/e2fsprogs/lib/blkid/
llseek.c 46 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)
82 &result, origin);
86 &result, origin);
131 blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int origin)
134 return lseek64 (fd, offset, origin);
141 return lseek(fd, (off_t) offset, origin);
  /external/skia/src/gpu/
GrGpuCommandBuffer.h 45 GrGpuCommandBuffer(GrSurfaceOrigin origin) : fOrigin(origin) {}
57 GrGpuTextureCommandBuffer(GrTexture* texture, GrSurfaceOrigin origin)
58 : INHERITED(origin)
124 GrGpuRTCommandBuffer(GrRenderTarget* rt, GrSurfaceOrigin origin)
125 : INHERITED(origin)
  /external/skqp/src/gpu/
GrGpuCommandBuffer.h 45 GrGpuCommandBuffer(GrSurfaceOrigin origin) : fOrigin(origin) {}
57 GrGpuTextureCommandBuffer(GrTexture* texture, GrSurfaceOrigin origin)
58 : INHERITED(origin)
124 GrGpuRTCommandBuffer(GrRenderTarget* rt, GrSurfaceOrigin origin)
125 : INHERITED(origin)
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ArrayType.java 57 * The origin of a pair of array brackets [].
59 public enum Origin {
73 private Origin origin; field in class:ArrayType
76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
77 this(null, componentType, origin, annotations);
81 this(type, Origin.TYPE, nodeList(annotations));
88 public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations)
177 private Origin origin; field in class:ArrayType.ArrayBracketPair
    [all...]
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
SignedCertificateTimestamp.java 41 public enum Origin {
53 // 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;
83 public Origin getOrigin() {
84 return origin;
    [all...]
  /external/skia/src/utils/
SkCanvasStack.cpp 16 void SkCanvasStack::pushCanvas(std::unique_ptr<SkCanvas> canvas, const SkIPoint& origin) {
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/
SkCanvasStack.cpp 16 void SkCanvasStack::pushCanvas(std::unique_ptr<SkCanvas> canvas, const SkIPoint& origin) {
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);
  /libcore/ojluni/src/main/java/java/util/
Random.java 96 static final String BadRange = "bound must be greater than origin";
237 * origin is greater than bound, acts as unbounded form of
240 * @param origin the least value, unless greater than bound
241 * @param bound the upper bound (exclusive), must not equal origin
244 final long internalNextLong(long origin, long bound) {
246 if (origin < bound) {
247 long n = bound - origin, m = n - 1;
249 r = (r & m) + origin;
255 r += origin;
258 while (r < origin || r >= bound
1002 final int origin; field in class:Random.RandomIntsSpliterator
1057 final long origin; field in class:Random.RandomLongsSpliterator
1113 final double origin; field in class:Random.RandomDoublesSpliterator
    [all...]
  /cts/libs/view/src/com/android/view/
Position.java 55 * {@code this} to the other {@link Position}, given the origin of the arc.
57 * @param origin The {@link Position} to use as the origin of the arc.
62 public double arcAngleTo(Position other, Position origin) {
63 // Compute the angle of the polar representation of this and other w.r.t. the arc origin.
64 double originToThisAngle = Math.atan2(origin.mY - mY, mX - origin.mX);
65 double originToOtherAngle = Math.atan2(origin.mY - other.mY, other.mX - origin.mX);
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
MockMethodAdvice.java 34 * Try to invoke the method {@code origin} on {@code instance}.
36 * @param origin method to invoke
44 private static Object tryInvoke(Method origin, Object instance, Object[] arguments)
47 return origin.invoke(instance, arguments);
172 Method origin = Class.forName(methodComponents.group(1)).getDeclaredMethod( local
175 if (isOverridden(instance, origin)) {
178 return origin;
186 * @param origin method that contains the hook
193 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable {
199 return new ReturnValueWrapper(interceptor.interceptEntryHook(instance, origin, arguments
257 private final Method origin; field in class:MockMethodAdvice.SuperMethodCall
    [all...]
  /external/webrtc/webrtc/p2p/base/
stunrequest.h 56 // Set the Origin header for outgoing stun messages.
57 void set_origin(const std::string& origin) { origin_ = origin; }
89 // the origin value
90 const std::string& origin() const { return origin_; } function in class:cricket::StunRequest
91 void set_origin(const std::string& origin) { origin_ = origin; }
  /libcore/luni/src/test/java/libcore/java/util/
RandomTest.java 79 final int origin = 128, bound = 256; local
84 rands[i] = rand.nextInt(bound - origin) + origin;
87 int[] streamRands = new Random(0).ints(origin, bound).limit(limit).toArray();
98 final int origin = 128, bound = 256; local
103 rands[i] = rand.nextInt(bound - origin) + origin;
106 int[] streamRands = new Random(0).ints(size, origin, bound).toArray();
108 assertEquals(size, new Random(0).ints(size, origin, bound).count());
154 final int origin = 128, bound = 256 local
173 final int origin = 128, bound = 256; local
229 final int origin = 128, bound = 256; local
252 final int origin = 128, bound = 256; local
    [all...]
  /external/turbine/java/com/google/turbine/binder/
Resolve.java 48 ClassSymbol origin,
61 result = resolve(env, origin, bound.superclass(), simpleName);
62 if (result != null && visible(origin, result, env.get(result))) {
67 result = resolve(env, origin, i, simpleName);
68 if (result != null && visible(origin, result, env.get(result))) {
77 * env} and {@code origin} symbol.
80 Env<ClassSymbol, ? extends HeaderBoundClass> env, ClassSymbol origin) {
85 return Resolve.resolve(env, origin, base, name);
157 Env<ClassSymbol, TypeBoundClass> env, ClassSymbol origin, ClassSymbol sym, String name) {
168 FieldInfo field = resolveField(env, origin, info.superclass(), name)
    [all...]
  /external/skia/src/core/
SkClipStackDevice.cpp 43 SkIPoint origin = this->getOrigin(); local
46 if (origin.fX | origin.fY) {
48 rgn.translate(-origin.fX, -origin.fY, &tmp);
58 SkIPoint origin = this->getOrigin(); local
59 SkIRect rect = clipRestriction->makeOffset(-origin.x(), -origin.y());
  /external/skqp/src/core/
SkClipStackDevice.cpp 43 SkIPoint origin = this->getOrigin(); local
46 if (origin.fX | origin.fY) {
48 rgn.translate(-origin.fX, -origin.fY, &tmp);
58 SkIPoint origin = this->getOrigin(); local
59 SkIRect rect = clipRestriction->makeOffset(-origin.x(), -origin.y());
  /libcore/ojluni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 203 * origin is greater than bound, acts as unbounded form of
206 * @param origin the least value, unless greater than bound
207 * @param bound the upper bound (exclusive), must not equal origin
210 final long internalNextLong(long origin, long bound) {
212 if (origin < bound) {
213 long n = bound - origin, m = n - 1;
215 r = (r & m) + origin;
221 r += origin;
224 while (r < origin || r >= bound)
235 * @param origin the least value, unless greater than boun
743 final int origin; field in class:ThreadLocalRandom.RandomIntsSpliterator
798 final long origin; field in class:ThreadLocalRandom.RandomLongsSpliterator
854 final double origin; field in class:ThreadLocalRandom.RandomDoublesSpliterator
    [all...]
  /art/dex2oat/linker/
image_test.cc 99 // only if the copied method and the origin method are located in the
112 // Test the pointer to quick code is the same in origin method
117 ArtMethod* origin = iface_klass->FindInterfaceMethod("defaultMethod", "()V", pointer_size); local
118 ASSERT_NE(nullptr, origin);
119 ASSERT_TRUE(origin->GetDeclaringClass() == iface_klass);
120 const void* code = origin->GetEntryPointFromQuickCompiledCodePtrSize(pointer_size);
121 // The origin method should have a pointer to quick code
127 ArtMethod* copied = FindCopiedMethod(origin, impl_klass);
129 // the copied method should have pointer to the same quick code as the origin method
132 // Test the origin method has pointer to quick cod
    [all...]
  /external/clang/test/Sema/
init-struct-qualified.c 6 typedef struct _NSRect { NSPoint origin; NSSize size; } NSRect; member in struct:_NSRect
  /external/dagger2/
deploy_website.sh 25 git checkout -t origin/gh-pages
45 git push origin gh-pages
  /external/mesa3d/bin/
get-extra-pick-list.sh 13 latest_branchpoint=`git merge-base origin/master HEAD`
25 git log -n1 --pretty=oneline --grep=$sha $latest_branchpoint..origin/master |\

Completed in 538 milliseconds

12 3 4 5 6 7 8 91011>>