Home
last modified time | relevance | path

Searched full:origin (Results 1 – 25 of 1956) sorted by relevance

12345678910>>...79

/external/apache-http/src/org/apache/http/impl/cookie/
DRFC2965Spec.java84 final String name, final String value, final CookieOrigin origin) { in createCookie() argument
86 cookie.setPath(getDefaultPath(origin)); in createCookie()
87 cookie.setDomain(getDefaultDomain(origin)); in createCookie()
92 final String name, final String value, final CookieOrigin origin) { in createCookie2() argument
94 cookie.setPath(getDefaultPath(origin)); in createCookie2()
95 cookie.setDomain(getDefaultDomain(origin)); in createCookie2()
96 cookie.setPorts(new int [] { origin.getPort() }); in createCookie2()
103 CookieOrigin origin) throws MalformedCookieException { in parse() argument
107 if (origin == null) { in parse()
108 throw new IllegalArgumentException("Cookie origin may not be null"); in parse()
[all …]
DCookieSpecBase.java59 protected static String getDefaultPath(final CookieOrigin origin) { in getDefaultPath() argument
60 String defaultPath = origin.getPath(); in getDefaultPath()
72 protected static String getDefaultDomain(final CookieOrigin origin) { in getDefaultDomain() argument
73 return origin.getHost(); in getDefaultDomain()
76 protected List<Cookie> parse(final HeaderElement[] elems, final CookieOrigin origin) in parse() argument
87 cookie.setPath(getDefaultPath(origin)); in parse()
88 cookie.setDomain(getDefaultDomain(origin)); in parse()
108 public void validate(final Cookie cookie, final CookieOrigin origin) in validate() argument
113 if (origin == null) { in validate()
114 throw new IllegalArgumentException("Cookie origin may not be null"); in validate()
[all …]
DBestMatchSpec.java102 final CookieOrigin origin) throws MalformedCookieException { in parse() argument
106 if (origin == null) { in parse()
107 throw new IllegalArgumentException("Cookie origin may not be null"); in parse()
125 return getStrict().parse(helems, origin); in parse()
130 return getNetscape().parse(header, origin); in parse()
132 return getCompat().parse(helems, origin); in parse()
138 final CookieOrigin origin) throws MalformedCookieException { in validate() argument
142 if (origin == null) { in validate()
143 throw new IllegalArgumentException("Cookie origin may not be null"); in validate()
146 getStrict().validate(cookie, origin); in validate()
[all …]
/external/kotlinc/license/
DREADME.md12 …- Origin: Derived from ASM: a very small and fast Java bytecode manipulation framework, Copyright …
16 …- Origin: Derived from ASM: a very small and fast Java bytecode manipulation framework, Copyright …
20 …- Origin: Derived from ASM: a very small and fast Java bytecode manipulation framework, Copyright …
24 …- Origin: Derived from PCollections, A Persistent Java Collections Library (https://pcollections.o…
28 …- Origin: Derived from ASM: a very small and fast Java bytecode manipulation framework, Copyright …
32 …- Origin: Derived from ASM: a very small and fast Java bytecode manipulation framework, Copyright …
36 - Origin: Originally part of the Dart compiler, (c) 2011 the Dart Project Authors,
40 - Origin: Originally part of the Dart compiler, (c) 2011 the Dart Project Authors,
44 - Origin: Derived from GWT, (C) 2007-08 Google Inc.
48 - Origin: Google Closure Library, Copyright 2009 The Closure Library Authors
[all …]
/external/compiler-rt/lib/msan/
Dmsan_origin.h10 // Origin id utils.
20 // Origin handling.
22 // Origin is a 32-bit identifier that is attached to any uninitialized value in
26 // There are 3 kinds of origin ids:
27 // 1xxx xxxx xxxx xxxx heap origin id
28 // 0000 xxxx xxxx xxxx stack origin id
29 // 0zzz xxxx xxxx xxxx chained origin id
31 // Heap origin id describes a heap memory allocation and contains (in the xxx
34 // Stack origin id describes a stack memory allocation and contains (in the xxx
38 // Chained origin id describes an event of storing an uninitialized value to
[all …]
Dmsan.h37 INVALID, APP, SHADOW, ORIGIN enumerator
49 {0x00c000000000ULL, 0x00e000000000ULL, MappingDesc::ORIGIN, "origin"},
69 {0x02000000000ULL, 0x03000000000ULL, MappingDesc::ORIGIN, "origin-2"},
71 {0x04000000000ULL, 0x05000000000ULL, MappingDesc::ORIGIN, "origin-1"},
78 {0x0A000000000ULL, 0x0B000000000ULL, MappingDesc::ORIGIN, "origin-3"},
85 {0x18000000000ULL, 0x19000000000ULL, MappingDesc::ORIGIN, "origin-4"},
90 {0x27000000000ULL, 0x28000000000ULL, MappingDesc::ORIGIN, "origin-5"},
92 {0x29000000000ULL, 0x2A000000000ULL, MappingDesc::ORIGIN, "origin-7"},
96 {0x2D000000000ULL, 0x2E000000000ULL, MappingDesc::ORIGIN, "origin-6"},
100 {0x3A000000000ULL, 0x3B000000000ULL, MappingDesc::ORIGIN, "origin-9"},
[all …]
Dmsan_poisoning.h21 // Return origin for the first poisoned byte in the memory range, or 0.
24 // Walk [addr, addr+size) app memory region, copying origin tags from the
29 // Copy origin from src (app address) to dst (app address), creating chained
30 // origin ids as necessary, without overriding origin for fully initialized
34 // memmove() shadow and origin. Dst and src are application addresses.
35 // See CopyOrigin() for the origin copying logic.
39 // memcpy() shadow and origin. Dst and src are application addresses.
40 // See CopyOrigin() for the origin copying logic.
45 // origin regions.
51 // Set origin for the memory region.
[all …]
Dmsan_report.cc34 const char *Origin() { return Magenta(); } in Origin() function in __msan::Decorator
45 Printf("%s", d.Origin()); in DescribeStackOrigin()
49 d.Origin(), d.Name(), s, d.Origin(), d.Name(), sep + 1, d.Origin(), in DescribeStackOrigin()
62 VPrintf(1, " raw origin id: %d\n", id); in DescribeOrigin()
64 Origin o = Origin::FromRawId(id); in DescribeOrigin()
68 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(), in DescribeOrigin()
81 d.Origin(), d.End()); in DescribeOrigin()
85 d.Origin(), d.End()); in DescribeOrigin()
88 Printf(" %sMemory was marked as uninitialized%s\n", d.Origin(), in DescribeOrigin()
92 Printf(" %sUninitialized value was created%s\n", d.Origin(), d.End()); in DescribeOrigin()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
DArrayType.java57 * The origin of a pair of array brackets [].
59 public enum Origin { enum in ArrayType
73 private Origin origin; field in ArrayType
76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) { in ArrayType() argument
77 this(null, componentType, origin, annotations); in ArrayType()
81 this(type, Origin.TYPE, nodeList(annotations)); in ArrayType()
88 …public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr… in ArrayType() argument
91 setOrigin(origin); in ArrayType()
177 private Origin origin; field in ArrayType.ArrayBracketPair
179 …public ArrayBracketPair(TokenRange tokenRange, Origin origin, NodeList<AnnotationExpr> annotations… in ArrayBracketPair() argument
[all …]
/external/llvm/test/Instrumentation/MemorySanitizer/
Dorigin-alignment.ll8 ; Check origin instrumentation of stores.
9 ; Check that debug info for origin propagation code is set correctly.
16 ; 8-aligned store => 8-aligned origin store, origin address is not realigned
24 ; CHECK-ORIGINS1: [[ORIGIN:%[01-9a-z]+]] = load {{.*}} @__msan_param_origin_tls
26 ; CHECK-ORIGINS2: [[ORIGIN:%[01-9a-z]+]] = call i32 @__msan_chain_origin(i32 [[ORIGIN0]])
27 ; CHECK: store i32 [[ORIGIN]], {{.*}}, align 8
31 ; 4-aligned store => 4-aligned origin store, origin address is not realigned
39 ; CHECK-ORIGINS1: [[ORIGIN:%[01-9a-z]+]] = load {{.*}} @__msan_param_origin_tls
41 ; CHECK-ORIGINS2: [[ORIGIN:%[01-9a-z]+]] = call i32 @__msan_chain_origin(i32 [[ORIGIN0]])
42 ; CHECK: store i32 [[ORIGIN]], {{.*}}, align 4
[all …]
/external/clang/test/Analysis/
Duninit-vals.m49 Point origin; field
66 testObj->origin = makePoint(0.0, 0.0);
69 // FIXME: Assigning to 'testObj->origin' kills the default binding for the
82 testObj->origin = makePoint(0.0, 0.0);
93 IntPoint origin; field
109 clang_analyzer_eval(testObj->origin.x == 0); // expected-warning{{TRUE}}
110 clang_analyzer_eval(testObj->origin.y == 0); // expected-warning{{TRUE}}
111 clang_analyzer_eval(testObj->origin.z == 0); // expected-warning{{TRUE}}
113 testObj->origin = makeIntPoint(1, 2);
116 // FIXME: Assigning to 'testObj->origin' kills the default binding for the
[all …]
/external/turbine/java/com/google/turbine/binder/
DResolve.java48 ClassSymbol origin, in resolve() argument
61 result = resolve(env, origin, bound.superclass(), simpleName); in resolve()
62 if (result != null && visible(origin, result, env.get(result))) { in resolve()
67 result = resolve(env, origin, i, simpleName); in resolve()
68 if (result != null && visible(origin, result, env.get(result))) { in resolve()
77 * env} and {@code origin} symbol.
80 Env<ClassSymbol, ? extends HeaderBoundClass> env, ClassSymbol origin) { in resolveFunction() argument
85 return Resolve.resolve(env, origin, base, name); in resolveFunction()
157 Env<ClassSymbol, TypeBoundClass> env, ClassSymbol origin, ClassSymbol sym, String name) {
168 FieldInfo field = resolveField(env, origin, info.superclass(), name);
[all …]
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DSignedCertificateTimestamp.java41 public enum Origin { enum in SignedCertificateTimestamp
53 // origin is implied from the SCT's source and is not encoded in it,
55 private final Origin origin; field in SignedCertificateTimestamp
59 DigitallySigned signature, Origin origin) { in SignedCertificateTimestamp() argument
65 this.origin = origin; in SignedCertificateTimestamp()
83 public Origin getOrigin() { in getOrigin()
84 return origin; in getOrigin()
90 public static SignedCertificateTimestamp decode(InputStream input, Origin origin) in decode() argument
103 origin in decode()
110 public static SignedCertificateTimestamp decode(byte[] input, Origin origin) in decode() argument
[all …]
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodAdvice.java56 @Advice.Origin Method origin, in enter() argument
59 … if (dispatcher == null || !dispatcher.isMocked(mock) || dispatcher.isOverridden(mock, origin)) { in enter()
62 return dispatcher.handle(mock, origin, arguments); in enter()
96 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable { in handle() argument
103 realMethod = new SerializableRealMethodCall(identifier, origin, instance, arguments); in handle()
105 realMethod = new RealMethodCall(selfCallInfo, origin, instance, arguments); in handle()
110 origin, in handle()
129 public boolean isOverridden(Object instance, Method origin) { in isOverridden() argument
136 …MethodGraph.Node node = methodGraph.locate(new MethodDescription.ForLoadedMethod(origin).asSignatu… in isOverridden()
137 …) || !node.getRepresentative().asDefined().getDeclaringType().represents(origin.getDeclaringClass(… in isOverridden()
[all …]
/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
DMockMethodAdvice.java34 * 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) in tryInvoke() argument
47 return origin.invoke(instance, arguments); in tryInvoke()
172 Method origin = Class.forName(methodComponents.group(1)).getDeclaredMethod( in getOrigin() local
175 if (isOverridden(instance, origin)) { in getOrigin()
178 return origin; in getOrigin()
186 * @param origin method that contains the hook
193 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable { in handle() argument
199 return new ReturnValueWrapper(interceptor.interceptEntryHook(instance, origin, arguments, in handle()
[all …]
/external/python/cpython3/Lib/test/test_importlib/
Dtest_spec.py74 origin=self.path)
82 self.assertIs(spec.origin, None)
93 self.assertIs(spec.origin, None)
105 self.assertIs(spec.origin, None)
117 self.assertIs(spec.origin, None)
125 origin='somewhere')
133 origin=None,
144 origin=self.path,
155 origin=None,
198 origin=self.path)
[all …]
/external/vulkan-validation-layers/libs/glm/gtx/
Dextend.inl15 genType const & Origin, argument
20 return Origin + (Source - Origin) * Distance;
26 detail::tvec2<T, P> const & Origin, argument
31 return Origin + (Source - Origin) * Distance;
37 detail::tvec3<T, P> const & Origin, argument
42 return Origin + (Source - Origin) * Distance;
48 detail::tvec4<T, P> const & Origin, argument
53 return Origin + (Source - Origin) * Distance;
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
DPositionMetric.java21 protected enum Origin { enum in PositionMetric
57 protected float getAbsolutePosition(float size, Origin origin) { in getAbsolutePosition() argument
58 switch(origin) { in getAbsolutePosition()
66 throw new IllegalArgumentException("Unsupported Origin: " + origin); in getAbsolutePosition()
70 protected float getRelativePosition(float size, Origin origin) { in getRelativePosition() argument
73 switch(origin) { in getRelativePosition()
81 throw new IllegalArgumentException("Unsupported Origin: " + origin); in getRelativePosition()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYPlot.java88 // the origin or boundary is set to the current value of the plot.
383 case ORIGIN: in calculateMinMaxVals()
399 case ORIGIN: in calculateMinMaxVals()
526 * Centers the domain axis on origin.
528 * @param origin
530 public void centerOnDomainOrigin(Number origin) { in centerOnDomainOrigin() argument
531 centerOnDomainOrigin(origin, null, BoundaryMode.AUTO); in centerOnDomainOrigin()
535 * Centers the domain on origin, calculating the upper and lower boundaries of the axis
538 * @param origin
542 public void centerOnDomainOrigin(Number origin, Number extent, BoundaryMode mode) { in centerOnDomainOrigin() argument
[all …]
/external/desugar/java/com/google/devtools/common/options/
DParsedOptionDescription.java32 private final OptionInstanceOrigin origin; field in ParsedOptionDescription
38 OptionInstanceOrigin origin) { in ParsedOptionDescription() argument
42 this.origin = origin; in ParsedOptionDescription()
119 return origin; in getOrigin()
123 return origin.getPriority(); in getPriority()
127 return origin.getSource(); in getSource()
131 return origin.getImplicitDependent(); in getImplicitDependent()
135 return origin.getExpandedFrom(); in getExpandedFrom()
139 return origin.getExpandedFrom() == null && origin.getImplicitDependent() == null; in isExplicit()
158 result.append("with priority ").append(origin.getPriority()); in toString()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dllseek.c47 extern long long llseek (int fd, long long offset, int origin);
72 unsigned int, origin) in _syscall5() argument
75 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin) in _syscall5()
86 &result, origin); in _syscall5()
95 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) in ext2fs_llseek() argument
98 return my_llseek (fd, offset, origin); in ext2fs_llseek()
106 result = my_llseek (fd, offset, origin); in ext2fs_llseek()
115 return lseek(fd, (off_t) offset, origin); in ext2fs_llseek()
129 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) in ext2fs_llseek() argument
132 return lseek64 (fd, offset, origin); in ext2fs_llseek()
[all …]
/external/eigen/Eigen/src/Geometry/
DParametrizedLine.h22 * A parametrized line is defined by an origin point \f$ \mathbf{o} \f$ and a unit
48 : m_origin(other.origin()), m_direction(other.direction()) in ParametrizedLine()
55 /** Initializes a parametrized line of direction \a direction and origin \a origin.
58 EIGEN_DEVICE_FUNC ParametrizedLine(const VectorType& origin, const VectorType& direction) in ParametrizedLine() argument
59 : m_origin(origin), m_direction(direction) {} in ParametrizedLine()
73 EIGEN_DEVICE_FUNC const VectorType& origin() const { return m_origin; } in origin() function
74 EIGEN_DEVICE_FUNC VectorType& origin() { return m_origin; } in origin() function
84 VectorType diff = p - origin(); in squaredDistance()
94 { return origin() + direction().dot(p-origin()) * direction(); } in projection()
124 m_origin = other.origin().template cast<Scalar>(); in ParametrizedLine()
[all …]
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dllseek.c54 unsigned long ol, llse_loff_t * result, unsigned int origin) in _llseek() argument
61 unsigned long ol, llse_loff_t * result, unsigned int origin) in _llseek() argument
63 return syscall(__NR_llseek, fd, oh, ol, result, origin); in _llseek()
68 unsigned int origin) in my_llseek() argument
75 &result, origin); in my_llseek()
82 unsigned int origin) in llse_llseek() argument
88 result = my_llseek(fd, offset, origin); in llse_llseek()
104 return lseek(fd, (off_t) offset, origin); in llse_llseek()
113 unsigned int origin) in llse_llseek() argument
120 return lseek(fd, (off_t) offset, origin); in llse_llseek()
/external/skqp/src/core/
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, in Orient() argument
48 if (origin != kTopLeft_SkEncodedOrigin) { in Orient()
50 if (ShouldSwapWidthHeight(origin)) { in Orient()
62 return Orient(dst, *tmp, OriginToOrient(origin)); in Orient()
/external/skia/src/core/
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, in Orient() argument
48 if (origin != kTopLeft_SkEncodedOrigin) { in Orient()
50 if (ShouldSwapWidthHeight(origin)) { in Orient()
62 return Orient(dst, *tmp, OriginToOrient(origin)); in Orient()

12345678910>>...79