Home
last modified time | relevance | path

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

12345678910>>...138

/external/rust/crates/url/src/
Dorigin.rs15 pub fn url_origin(url: &Url) -> Origin { in url_origin() argument
22 Err(_) => Origin::new_opaque(), in url_origin()
25 "ftp" | "http" | "https" | "ws" | "wss" => Origin::Tuple( in url_origin()
31 "file" => Origin::new_opaque(), in url_origin()
32 _ => Origin::new_opaque(), in url_origin()
36 /// The origin of an URL
38 /// Two URLs with the same origin are considered
42 /// The origin is determined based on the scheme as follows:
44 /// - If the scheme is "blob" the origin is the origin of the
46 /// it is an opaque origin.
[all …]
/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 …]
/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 …]
/external/llvm-project/compiler-rt/lib/msan/
Dmsan_origin.h9 // Origin id utils.
19 // Origin handling.
21 // Origin is a 32-bit identifier that is attached to any uninitialized value in
25 // There are 3 kinds of origin ids:
26 // 1xxx xxxx xxxx xxxx heap origin id
27 // 0000 xxxx xxxx xxxx stack origin id
28 // 0zzz xxxx xxxx xxxx chained origin id
30 // Heap origin id describes a heap memory allocation and contains (in the xxx
33 // Stack origin id describes a stack memory allocation and contains (in the xxx
37 // Chained origin id describes an event of storing an uninitialized value to
[all …]
Dmsan.h36 INVALID, APP, SHADOW, ORIGIN enumerator
53 {0x004200000000ULL, 0x006000000000ULL, MappingDesc::ORIGIN, "origin-2"},
57 {0x008200000000ULL, 0x00a000000000ULL, MappingDesc::ORIGIN, "origin-3"},
58 {0x00a000000000ULL, 0x00a200000000ULL, MappingDesc::ORIGIN, "origin-1"},
84 {0x02000000000ULL, 0x03000000000ULL, MappingDesc::ORIGIN, "origin-2"},
86 {0x04000000000ULL, 0x05000000000ULL, MappingDesc::ORIGIN, "origin-1"},
93 {0x0A000000000ULL, 0x0B000000000ULL, MappingDesc::ORIGIN, "origin-3"},
100 {0x18000000000ULL, 0x19000000000ULL, MappingDesc::ORIGIN, "origin-4"},
105 {0x27000000000ULL, 0x28000000000ULL, MappingDesc::ORIGIN, "origin-5"},
107 {0x29000000000ULL, 0x2A000000000ULL, MappingDesc::ORIGIN, "origin-7"},
[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: Originally part of GWT, (C) 2007-08 Google Inc., distributed under the Apache 2 license.…
50 - Origin: QUnit, Copyright (c) 2012 John Resig, Jörn Zaefferer,
[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-project/clang/utils/analyzer/projects/
Dprojects.json6 "origin": "https://github.com/jarro2783/cxxopts.git", string
14 "origin": "https://github.com/erincatto/box2d.git", string
22 "origin": "https://github.com/codeplea/tinyexpr.git", string
30 "origin": "https://github.com/symengine/symengine.git", string
38 "origin": "https://github.com/nsf/termbox.git", string
46 "origin": "https://github.com/jakogut/tinyvm.git", string
54 "origin": "https://github.com/msteinbeck/tinyspline.git", string
62 "origin": "https://github.com/oatpp/oatpp.git", string
70 "origin": "https://github.com/andrewrk/libsoundio.git", string
78 "origin": "https://github.com/facebook/zstd.git", string
[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/turbine/java/com/google/turbine/binder/
DResolve.java45 ClassSymbol origin, in resolve() argument
48 return resolve(env, origin, sym, simpleName, new HashSet<>()); in resolve()
53 ClassSymbol origin, in resolve() argument
71 result = resolve(env, origin, bound.superclass(), simpleName, seen); in resolve()
72 if (result != null && visible(origin, result, env.get(result))) { in resolve()
77 result = resolve(env, origin, i, simpleName, seen); in resolve()
78 if (result != null && visible(origin, result, env.get(result))) { in resolve()
87 * env} and {@code origin} symbol.
90 Env<ClassSymbol, ? extends HeaderBoundClass> env, ClassSymbol origin) { in resolveFunction() argument
95 return Resolve.resolve(env, origin, base, name); in resolveFunction()
[all …]
/external/llvm-project/llvm/test/Instrumentation/MemorySanitizer/
Dorigin-alignment.ll14 ; Check origin instrumentation of stores.
15 ; Check that debug info for origin propagation code is set correctly.
22 ; 8-aligned store => 8-aligned origin store, origin address is not realigned
30 ; CHECK-ORIGINS1: [[ORIGIN:%[01-9a-z]+]] = load {{.*}} @__msan_param_origin_tls
32 ; CHECK-ORIGINS2: [[ORIGIN:%[01-9a-z]+]] = call i32 @__msan_chain_origin(i32 [[ORIGIN0]])
33 ; CHECK: store i32 [[ORIGIN]], {{.*}}, align 8
37 ; 4-aligned store => 4-aligned origin store, origin address is not realigned
45 ; CHECK-ORIGINS1: [[ORIGIN:%[01-9a-z]+]] = load {{.*}} @__msan_param_origin_tls
47 ; CHECK-ORIGINS2: [[ORIGIN:%[01-9a-z]+]] = call i32 @__msan_chain_origin(i32 [[ORIGIN0]])
48 ; CHECK: store i32 [[ORIGIN]], {{.*}}, align 4
[all …]
Dmasked-store-load.ll5 ; RUN: -passes=msan 2>&1 | FileCheck %s "--check-prefixes=CHECK,CHECK-ORIGIN"
6 …-check-access-address=0 -msan-track-origins=1 -S | FileCheck %s --check-prefixes=CHECK,CHECK-ORIGIN
25 ; CHECK-ORIGIN: %[[O:.*]] = load i32, {{.*}}@__msan_param_origin_tls to i64), i64 8)
29 ; CHECK-ORIGIN: %[[E:.*]] = add i64 %[[C]], 17592186044416
30 ; CHECK-ORIGIN: %[[F:.*]] = and i64 %[[E]], -4
31 ; CHECK-ORIGIN: %[[G:.*]] = inttoptr i64 %[[F]] to i32*
33 ; CHECK-ORIGIN: store i32 %[[O]], i32* %[[G]], align 4
34 ; CHECK-ORIGIN: getelementptr i32, i32* %[[G]], i32 1
35 ; CHECK-ORIGIN: store i32 %[[O]], i32* {{.*}}, align 4
36 ; CHECK-ORIGIN: getelementptr i32, i32* %[[G]], i32 2
[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/oboe/samples/RhythmGame/third_party/glm/gtx/
Dextend.inl9 genType const & Origin, argument
14 return Origin + (Source - Origin) * Distance;
20 tvec2<T, P> const & Origin, argument
25 return Origin + (Source - Origin) * Distance;
31 tvec3<T, P> const & Origin, argument
36 return Origin + (Source - Origin) * Distance;
42 tvec4<T, P> const & Origin, argument
47 return Origin + (Source - Origin) * Distance;
/external/scudo/standalone/
Dwrappers_cpp.cpp27 return Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new()
30 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
34 return Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new()
38 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
41 return Allocator.allocate(size, scudo::Chunk::Origin::New, in operator new()
45 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray, in operator new[]()
50 return Allocator.allocate(size, scudo::Chunk::Origin::New, in operator new()
55 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray, in operator new[]()
60 Allocator.deallocate(ptr, scudo::Chunk::Origin::New); in operator delete()
63 Allocator.deallocate(ptr, scudo::Chunk::Origin::NewArray); in operator delete[]()
[all …]
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dwrappers_cpp.cpp27 return Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new()
30 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
34 return Allocator.allocate(size, scudo::Chunk::Origin::New); in operator new()
38 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray); in operator new[]()
41 return Allocator.allocate(size, scudo::Chunk::Origin::New, in operator new()
45 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray, in operator new[]()
50 return Allocator.allocate(size, scudo::Chunk::Origin::New, in operator new()
55 return Allocator.allocate(size, scudo::Chunk::Origin::NewArray, in operator new[]()
60 Allocator.deallocate(ptr, scudo::Chunk::Origin::New); in operator delete()
63 Allocator.deallocate(ptr, scudo::Chunk::Origin::NewArray); in operator delete[]()
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/ct/
DSignedCertificateTimestamp.java39 public enum Origin { enum in SignedCertificateTimestamp
51 // origin is implied from the SCT's source and is not encoded in it,
53 private final Origin origin; field in SignedCertificateTimestamp
57 DigitallySigned signature, Origin origin) { in SignedCertificateTimestamp() argument
63 this.origin = origin; in SignedCertificateTimestamp()
81 public Origin getOrigin() { in getOrigin()
82 return origin; in getOrigin()
88 public static SignedCertificateTimestamp decode(InputStream input, Origin origin) in decode() argument
101 origin in decode()
108 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/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/
DSignedCertificateTimestamp.java50 public enum Origin { enum in SignedCertificateTimestamp
62 // origin is implied from the SCT's source and is not encoded in it,
64 private final Origin origin; field in SignedCertificateTimestamp
68 DigitallySigned signature, Origin origin) { in SignedCertificateTimestamp() argument
74 this.origin = origin; in SignedCertificateTimestamp()
92 public Origin getOrigin() { in getOrigin()
93 return origin; in getOrigin()
99 public static SignedCertificateTimestamp decode(InputStream input, Origin origin) in decode() argument
112 origin in decode()
119 public static SignedCertificateTimestamp decode(byte[] input, Origin origin) in decode() argument
[all …]
/external/llvm-project/flang/lib/Parser/
Dprovenance.cpp155 const Origin &origin{MapToOrigin(at)}; in operator []() local
156 return origin[origin.covers.MemberOffset(at)]; in operator []()
221 const Origin &origin{MapToOrigin(range->start())}; in EmitMessage() local
226 std::size_t offset{origin.covers.MemberOffset(range->start())}; in EmitMessage()
245 if (&MapToOrigin(last) == &origin) { in EmitMessage()
246 auto endOffset{origin.covers.MemberOffset(last)}; in EmitMessage()
257 if (IsValid(origin.replaces)) { in EmitMessage()
258 EmitMessage(o, origin.replaces, in EmitMessage()
264 EmitMessage(o, origin.replaces, message, echoSourceLine); in EmitMessage()
270 origin.covers.OffsetMember(j) < range->start(); ++j) { in EmitMessage()
[all …]
/external/rust/crates/url/tests/
Durltestdata.json8 "origin": "http://example.org", string
23 "origin": "http://foo:21", string
38 "origin": "https://test", string
53 "origin": "https://test", string
68 "origin": "null", string
83 "origin": "null", string
98 "origin": "http://example.org", string
113 "origin": "http://example.org", string
128 "origin": "http://example.org", string
143 "origin": "null", string
[all …]
/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
DMockMethodAdvice.java36 * Try to invoke the method {@code origin} on {@code instance}.
38 * @param origin method to invoke
46 private static Object tryInvoke(Method origin, Object instance, Object[] arguments) in tryInvoke() argument
49 return origin.invoke(instance, arguments); in tryInvoke()
174 Method origin = Class.forName(methodComponents.group(1)).getDeclaredMethod( in getOrigin() local
177 if (isOverridden(instance, origin)) { in getOrigin()
180 return origin; in getOrigin()
188 * @param origin method that contains the hook
195 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable { in handle() argument
201 return new ReturnValueWrapper(interceptor.interceptEntryHook(instance, origin, arguments, in handle()
[all …]
/external/OpenCL-CTS/test_conformance/images/clFillImage/
Dtest_fill_generic.cpp163 size_t origin[ 3 ] = { 0, 0, 0 }; in create_image() local
166 …void* mapped = (char*)clEnqueueMapImage(queue, img, CL_TRUE, CL_MAP_WRITE, origin, region, &mapped… in create_image()
228 void *value, const size_t origin[], const size_t region[] ) in fill_region_with_value() argument
233 char *destPtr = (char *)imageValues + origin[ 2 ] * imageInfo->slicePitch in fill_region_with_value()
234 + origin[ 1 ] * imageInfo->rowPitch + pixelSize * origin[ 0 ]; in fill_region_with_value()
239 // Use pixel at origin to fill region. in fill_region_with_value()
258 … const size_t origin[], const size_t region[], ExplicitType outputType, MTdata d ) in test_fill_image_generic() argument
318 // Now fill the region defined by origin, region with the pixel value found at origin. in test_fill_image_generic()
320 …g_info( " - Filling at %d,%d,%d size %d,%d,%d\n", (int)origin[ 0 ], (int)origin[ 1 ], (int)origin[… in test_fill_image_generic()
331 … read_image_pixel_float( imgHost, imageInfo, origin[ 0 ], origin[ 1 ], origin[ 2 ], fillColor ); in test_fill_image_generic()
[all …]
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/
Dcombined_test.cpp25 static constexpr scudo::Chunk::Origin Origin = scudo::Chunk::Origin::Malloc; variable
108 void *P = Allocator->allocate(Size, Origin, Align); in testAllocator()
115 Allocator->deallocate(P, Origin, Size); in testAllocator()
125 void *P = Allocator->allocate(Size, Origin, 1U << MinAlignLog, true); in testAllocator()
130 Allocator->deallocate(P, Origin, Size); in testAllocator()
140 void *P = Allocator->allocate(Size, Origin, 1U << MinAlignLog, false); in testAllocator()
145 Allocator->deallocate(P, Origin, Size); in testAllocator()
157 void *P = Allocator->allocate(Size, Origin, 1U << MinAlignLog, false); in testAllocator()
167 Allocator->deallocate(P, Origin, Size); in testAllocator()
174 void *NeedleP = Allocator->allocate(NeedleSize, Origin); in testAllocator()
[all …]

12345678910>>...138