Home
last modified time | relevance | path

Searched refs:inner (Results 76 - 100 of 552) sorted by relevance

12345678910>>...23

/third_party/elfutils/tests/
H A Dsectiondump.c150 size_t inner; in print_bytes() local
154 for (inner = 0; inner < 16 && cnt + inner < size; ++inner) in print_bytes()
155 printf (" %02hhx", buf[cnt + inner]); in print_bytes()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dtypedef-pointer-overlap.rs11 pub inner: ::std::os::raw::c_char,
29 unsafe { ::std::ptr::addr_of!((*ptr).inner) as usize - ptr as usize }, in bindgen_test_layout_foo()
35 stringify!(inner) in bindgen_test_layout_foo()
43 pub inner: ::std::os::raw::c_char,
61 unsafe { ::std::ptr::addr_of!((*ptr).inner) as usize - ptr as usize }, in bindgen_test_layout_bar()
67 stringify!(inner) in bindgen_test_layout_bar()
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dwindow_focus_changed_listener.cpp39 auto task = [inner = owner_, focusChangeInfo] { in OnFocused()
40 auto owner = inner.lock(); in OnFocused()
42 TAG_LOGW(AAFwkTag::APPMGR, "get app mgr service inner fail"); in OnFocused()
59 auto task = [inner = owner_, focusChangeInfo] { in OnUnfocused()
60 auto owner = inner.lock(); in OnUnfocused()
/third_party/typescript/tests/baselines/reference/
H A DthisInPropertyBoundDeclarations.js23 function inner() {
30 function inner() {
92 function inner() {
98 function inner() {
/third_party/rust/crates/syn/tests/regression/
H A Dissue1235.rs16 let inner = Group::new( in main()
20 let tokens = quote!(pub #inner;); in main()
25 let inner = Group::new( in main()
29 let tokens = quote!(pub #inner;); in main()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderVertexSpacing.cpp216 * converts it into a set of edges that define the outer and inner quad.
243 /* Data set is expected to describe an outer and inner rectangles. We will execute the quad extraction in getEdgesForQuadsTessellation()
247 * - second iteration will focus on the inner quad. in getEdgesForQuadsTessellation()
262 const unsigned int n_iterations = (run.inner[0] > 1) ? 2 : 1; in getEdgesForQuadsTessellation()
352 * Note: for inner quad, we need to subtract 2 segments connecting outer and inner coordinates */ in getEdgesForQuadsTessellation()
385 tl_tr_edge.tess_level = run.inner[0] - 2 /* segments between inner and outer edges */; in getEdgesForQuadsTessellation()
386 br_bl_edge.tess_level = run.inner[0] - 2 /* segments between inner an in getEdgesForQuadsTessellation()
[all...]
/third_party/skia/src/core/
H A DSkPathEffect.cpp83 /** Construct a pathEffect whose effect is to apply first the inner pathEffect
84 and the the outer pathEffect (e.g. outer(inner(path)))
85 The reference counts for outer and inner are both incremented in the constructor,
88 static sk_sp<SkPathEffect> Make(sk_sp<SkPathEffect> outer, sk_sp<SkPathEffect> inner) { in Make() argument
90 return inner; in Make()
92 if (!inner) { in Make()
95 return sk_sp<SkPathEffect>(new SkComposePathEffect(outer, inner)); in Make()
98 SkComposePathEffect(sk_sp<SkPathEffect> outer, sk_sp<SkPathEffect> inner) in SkComposePathEffect() argument
99 : INHERITED(outer, inner) {} in SkComposePathEffect()
115 // inner (fPE
199 MakeCompose(sk_sp<SkPathEffect> outer, sk_sp<SkPathEffect> inner) MakeCompose() argument
[all...]
/third_party/skia/gm/
H A Dshapes.cpp28 * (zero radius, near-zero radius, inner shape overlap, etc.) It uses an xfermode of darken to help
141 const SkRRect& inner = fShapes[(i * 7 + 11) % fSimpleShapeCount]; variable
142 float s = 0.95f * std::min(outer.rect().width() / inner.rect().width(),
143 outer.rect().height() / inner.rect().height());
145 float dx = (rand.nextF() - 0.5f) * (outer.rect().width() - s * inner.rect().width());
146 float dy = (rand.nextF() - 0.5f) * (outer.rect().height() - s * inner.rect().height());
147 // Fixup inner rects so they don't reach outside the outer rect.
170 innerXform.preTranslate(-inner.rect().centerX(), -inner.rect().centerY());
172 inner
[all...]
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dtokens.rs64 inner, in to_tokens()
82 inner.to_tokens(tokens); in to_tokens()
94 inner, in to_tokens()
105 inner.to_tokens(tokens); in to_tokens()
117 inner, in to_tokens()
124 inner.to_tokens(tokens); in to_tokens()
135 inner, in to_tokens()
142 inner.to_tokens(tokens); in to_tokens()
151 inner, in to_tokens()
157 inner in to_tokens()
[all...]
H A Dcheck.rs96 if let Type::Ident(ident) = &ptr.inner { in check_type_box()
114 match &ty.inner { in check_type_rust_vec()
140 if let Type::Ident(ident) = &ptr.inner { in check_type_unique_ptr()
150 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_unique_ptr()
158 if let Type::Ident(ident) = &ptr.inner { in check_type_shared_ptr()
170 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_shared_ptr()
179 if let Type::Ident(ident) = &ptr.inner { in check_type_weak_ptr()
191 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_weak_ptr()
200 if let Type::Ident(ident) = &ptr.inner { in check_type_cxx_vector()
223 if let Some(requires_pin) = match &ty.inner { in check_type_ref()
[all...]
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dtokens.rs64 inner, in to_tokens()
82 inner.to_tokens(tokens); in to_tokens()
94 inner, in to_tokens()
105 inner.to_tokens(tokens); in to_tokens()
117 inner, in to_tokens()
124 inner.to_tokens(tokens); in to_tokens()
135 inner, in to_tokens()
142 inner.to_tokens(tokens); in to_tokens()
151 inner, in to_tokens()
157 inner in to_tokens()
[all...]
H A Dcheck.rs96 if let Type::Ident(ident) = &ptr.inner { in check_type_box()
114 match &ty.inner { in check_type_rust_vec()
140 if let Type::Ident(ident) = &ptr.inner { in check_type_unique_ptr()
150 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_unique_ptr()
158 if let Type::Ident(ident) = &ptr.inner { in check_type_shared_ptr()
170 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_shared_ptr()
179 if let Type::Ident(ident) = &ptr.inner { in check_type_weak_ptr()
191 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_weak_ptr()
200 if let Type::Ident(ident) = &ptr.inner { in check_type_cxx_vector()
223 if let Some(requires_pin) = match &ty.inner { in check_type_ref()
[all...]
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dtokens.rs64 inner, in to_tokens()
82 inner.to_tokens(tokens); in to_tokens()
94 inner, in to_tokens()
105 inner.to_tokens(tokens); in to_tokens()
117 inner, in to_tokens()
124 inner.to_tokens(tokens); in to_tokens()
135 inner, in to_tokens()
142 inner.to_tokens(tokens); in to_tokens()
151 inner, in to_tokens()
157 inner in to_tokens()
[all...]
/third_party/python/Lib/test/test_asyncio/
H A Dtest_waitfor.py167 async def inner(): function
172 result = await asyncio.wait_for(inner(), timeout=.01)
178 async def inner(): function
188 inner_task = asyncio.create_task(inner())
201 async def inner(): function
211 inner_task = asyncio.create_task(inner())
227 async def inner(): function
233 inner_task = asyncio.create_task(inner())
241 async def inner(): function
252 inner_task = asyncio.create_task(inner())
[all...]
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dtokens.rs64 inner, in to_tokens()
82 inner.to_tokens(tokens); in to_tokens()
94 inner, in to_tokens()
105 inner.to_tokens(tokens); in to_tokens()
117 inner, in to_tokens()
124 inner.to_tokens(tokens); in to_tokens()
135 inner, in to_tokens()
142 inner.to_tokens(tokens); in to_tokens()
151 inner, in to_tokens()
157 inner in to_tokens()
[all...]
/third_party/rust/crates/cxx/syntax/
H A Dtokens.rs64 inner, in to_tokens()
82 inner.to_tokens(tokens); in to_tokens()
94 inner, in to_tokens()
105 inner.to_tokens(tokens); in to_tokens()
117 inner, in to_tokens()
124 inner.to_tokens(tokens); in to_tokens()
135 inner, in to_tokens()
142 inner.to_tokens(tokens); in to_tokens()
151 inner, in to_tokens()
157 inner in to_tokens()
[all...]
H A Dcheck.rs96 if let Type::Ident(ident) = &ptr.inner { in check_type_box()
114 match &ty.inner { in check_type_rust_vec()
140 if let Type::Ident(ident) = &ptr.inner { in check_type_unique_ptr()
150 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_unique_ptr()
158 if let Type::Ident(ident) = &ptr.inner { in check_type_shared_ptr()
170 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_shared_ptr()
179 if let Type::Ident(ident) = &ptr.inner { in check_type_weak_ptr()
191 } else if let Type::CxxVector(_) = &ptr.inner { in check_type_weak_ptr()
200 if let Type::Ident(ident) = &ptr.inner { in check_type_cxx_vector()
223 if let Some(requires_pin) = match &ty.inner { in check_type_ref()
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dderive-custom-cli.h3 int inner; member
6 inner = 0 enumerator
13 int inner; member
/foundation/systemabilitymgr/safwk/interfaces/innerkits/safwk/rust/src/
H A Dability.rs60 inner: Box::new(self), in build_system_ability()
73 pub(crate) inner: *mut SystemAbilityWrapper,
79 let system_ability = unsafe { Pin::new_unchecked(&mut *self.inner) };
84 let system_ability = unsafe { Pin::new_unchecked(&mut *self.inner) }; in cancel_idle()
89 let system_ability = unsafe { Pin::new_unchecked(&mut *self.inner) }; in add_system_ability_listen()
94 let system_ability = unsafe { Pin::new_unchecked(&mut *self.inner) }; in remove_system_ability_listen()
H A Dexts.rs20 inner: UniquePtr<SystemAbilityWrapper>,
25 Self { inner: c_wrapper } in new()
31 RegisterAbility(self.inner.into_raw()); in register()
45 inner: Box::new(ability), in build_system_ability()
49 inner: BuildSystemAbility(ability, said, run_on_create), in build_system_ability()
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
H A DComposeColorFilter.java11 public ComposeColorFilter(ColorFilter outer, ColorFilter inner) { in ComposeColorFilter() argument
12 super(nMakeCompose(outer.getNativeInstance(), inner.getNativeInstance())); in ComposeColorFilter()
15 private static native long nMakeCompose(long outer, long inner); in nMakeCompose() argument
/third_party/skia/src/pathops/
H A DSkOpSpan.cpp326 SkOpPtT* inner = opp->ptT(); in mergeMatches() local
327 const SkOpPtT* innerStop = inner; in mergeMatches()
329 if (inner->segment() != segment) { in mergeMatches()
332 if (inner->deleted()) { in mergeMatches()
335 SkOpSpanBase* innerBase = inner->span(); in mergeMatches()
336 SkASSERT(innerBase->ptT() == inner); in mergeMatches()
339 if (!zero_or_one(inner->fT)) { in mergeMatches()
342 SkOPASSERT(inner->fT != test->fT); in mergeMatches()
344 testBase->upCast()->release(inner); in mergeMatches()
350 inner in mergeMatches()
[all...]
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_tuple_params.py41 lambdef< 'lambda' args=vfpdef< '(' inner=any ')' >
113 inner = simplify_args(results["inner"])
116 if inner.type == token.NAME:
117 inner = inner.clone()
118 inner.prefix = " "
119 args.replace(inner)
/third_party/ffmpeg/libavformat/
H A Dcache.c64 URLContext *inner; member
95 return ffurl_open_whitelist(&c->inner, arg, flags, &h->interrupt_callback, in cache_open()
201 r = ffurl_seek(c->inner, c->logical_pos, SEEK_SET); in cache_read()
209 r = ffurl_read(c->inner, buf, size); in cache_read()
233 pos= ffurl_seek(c->inner, pos, whence); in cache_seek()
235 pos= ffurl_seek(c->inner, -1, SEEK_END); in cache_seek()
236 if (ffurl_seek(c->inner, c->inner_pos, SEEK_SET) < 0) in cache_seek()
261 ret= ffurl_seek(c->inner, pos, whence); in cache_seek()
313 ffurl_closep(&c->inner); in cache_close()
/third_party/python/Lib/
H A Dhashlib.py209 inner = new(hash_name)
211 blocksize = getattr(inner, 'block_size', 64)
215 inner.update(password.translate(_trans_36))
218 def prf(msg, inner=inner, outer=outer):
221 icpy = inner.copy()
246 dkey += rkey.to_bytes(inner.digest_size)

Completed in 10 milliseconds

12345678910>>...23