Home
last modified time | relevance | path

Searched refs:inner (Results 251 - 275 of 508) sorted by relevance

1...<<1112131415161718192021

/third_party/rust/crates/proc-macro2/tests/
H A Dcomments.rs15 fn lit_of_doc_comment(tokens: &TokenStream, inner: bool) -> Literal { in lit_of_doc_comment()
24 if inner { in lit_of_doc_comment()
/base/notification/eventhandler/frameworks/eventhandler/src/
H A Devent_runner.cpp313 std::shared_ptr<EventRunnerImpl> inner = wp.lock(); in ThreadMain() local
314 if (inner) { in ThreadMain()
315 HILOGD("Start running for thread '%{public}s'", inner->threadName_.c_str()); in ThreadMain()
318 SystemCallSetThreadName(inner->threadName_); in ThreadMain()
321 inner->Run(); in ThreadMain()
323 HILOGD("Stopped running for thread '%{public}s'", inner->threadName_.c_str()); in ThreadMain()
/third_party/ffmpeg/libavfilter/
H A Dvsrc_mandelbrot.c73 int inner; member
111 {"inner", "set inner coloring mode", OFFSET(inner), AV_OPT_TYPE_INT, {.i64=MINCOL}, 0, INT_MAX, FLAGS, "inner" },
112 {"black", "set black mode", 0, AV_OPT_TYPE_CONST, {.i64=BLACK}, INT_MIN, INT_MAX, FLAGS, "inner"},
113 {"period", "set period mode", 0, AV_OPT_TYPE_CONST, {.i64=PERIOD}, INT_MIN, INT_MAX, FLAGS, "inner"},
114 {"convergence", "show time until convergence", 0, AV_OPT_TYPE_CONST, {.i64=CONVTIME}, INT_MIN, INT_MAX, FLAGS, "inner"},
115 {"mincol", "color based on point closest to the origin of the iterations", 0, AV_OPT_TYPE_CONST, {.i64=MINCOL}, INT_MIN, INT_MAX, FLAGS, "inner"},
283 use_zyklus= (x==0 || s->inner! in draw_mandelbrot()
[all...]
/third_party/python/Tools/scripts/
H A Dvar_access_benchmark.py37 def inner(trials=trials): function
44 inner.__name__ = 'read_nonlocal'
45 return inner
129 def inner(trials=trials): function
137 inner.__name__ = 'write_nonlocal'
138 return inner
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dmod.rs349 fn inner<F>(&mut self, cb: F) -> Vec<proc_macro2::TokenStream> in inner() functions
588 let inner_items = result.inner(|result| { in codegen()
810 TypeKind::BlockPointer(inner) => { in codegen()
816 inner.into_resolver().through_type_refs().resolve(ctx); in codegen()
845 TypeKind::TemplateAlias(inner, _) | TypeKind::Alias(inner) => { in codegen()
847 inner.into_resolver().through_type_refs().resolve(ctx); in codegen()
852 let through_type_aliases = inner in codegen()
908 // the inner type does, so fall back to an opaque blob based in codegen()
909 // on our layout if converting the inner ite in codegen()
1889 let mut inner = inner_item.to_rust_ty_or_opaque(ctx, &()); codegen() variables
[all...]
/third_party/elfutils/src/
H A Delflint.c581 for (size_t inner = 1; inner < data->d_size / sizeof (Elf32_Word); in check_scn_group()
582 ++inner) in check_scn_group()
583 if (grpdata[inner] == (Elf32_Word) idx) in check_scn_group()
1141 for (size_t inner = 0; in is_rel_dyn()
1142 inner < shdr->sh_size / shdr->sh_entsize; in is_rel_dyn()
1143 ++inner) in is_rel_dyn()
1146 GElf_Rel *rel = gelf_getrel (reldata, inner, in is_rel_dyn()
1155 if (inner >= dyn->d_un.d_val) in is_rel_dyn()
1161 else if (inner < dy in is_rel_dyn()
4582 unsigned int inner; check_program_header() local
4632 unsigned int inner; check_program_header() local
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dissue-1454.h8 struct extern_type inner; member
H A Danon_struct_in_union_1_0.h5 struct inner { struct
H A Danon_struct_in_union.h4 struct inner { struct
H A Dsize_t_template.hpp3 T inner[N]; member in Array
/third_party/skia/src/core/
H A DSkScan_Antihair.cpp888 // We want the inverse of B-T, since we're the inner-stroke
985 SkIRect inner;
986 // set inner to the inner rect of the middle section
987 inner.setLTRB(FDot8Floor(innerL), FDot8Floor(innerT), FDot8Ceil(innerR), FDot8Ceil(innerB));
990 fillcheckrect(outer.fLeft, outer.fTop, outer.fRight, inner.fTop,
992 fillcheckrect(outer.fLeft, inner.fTop, inner.fLeft, inner.fBottom,
994 fillcheckrect(inner
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dexpression.c585 struct expression *inner = alloc_expression(token->pos, EXPR_PREOP); in postfix_expression() local
586 inner->op = '*'; in postfix_expression()
587 inner->unop = expr; in postfix_expression()
588 expr = inner; in postfix_expression()
795 * This _really_ needs to be inlined, because that makes the inner
805 #define LR_BINOP_EXPRESSION(__token, tree, type, inner, compare) \
807 struct token * next = inner(__token, &left); \
817 next = inner(next->next, &right); \
H A Dscope.h65 extern int is_in_scope(struct scope *outer, struct scope *inner);
/base/useriam/user_auth_framework/services/base/src/
H A Dfinite_state_machine_impl.cpp54 Inner inner(machine); in Schedule()
55 ScheduleInner(inner); in Schedule()
161 IAM_LOGE("can not set thread handler inner"); in SetThreadHandler()
/third_party/rust/crates/nix/src/
H A Dmacros.rs60 $(#[$inner:ident $($args:tt)*])*
69 $(#[$inner $($args)*])*
/third_party/rust/crates/syn/src/
H A Dmac.rs193 pub(crate) fn surround(&self, tokens: &mut TokenStream, inner: TokenStream) {
199 token::printing::delim(delim, span.join(), tokens, inner);
H A Dtoken.rs554 let mut inner = TokenStream::new(); in surround() variables
555 f(&mut inner); in surround()
556 printing::delim(Delimiter::$delim, self.span.join(), tokens, inner); in surround()
683 let mut inner = TokenStream::new(); in surround() variables
684 f(&mut inner); in surround()
685 printing::delim(Delimiter::None, self.span, tokens, inner); in surround()
816 "!" pub struct Not/1 /// bitwise and logical NOT, macro calls, inner attributes, never type, negative impls
1132 inner: TokenStream,
1134 let mut g = Group::new(delim, inner);
/third_party/rust/crates/clap/tests/derive/
H A Dflags.rs217 mod inner { in ignore_qualified_bool_type() modules
233 arg: inner::bool, in ignore_qualified_bool_type()
238 arg: inner::bool("success".into()) in ignore_qualified_bool_type()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderTCTE.hpp76 * with inner and outer tessellation levels set to reasonably small
178 * point mode permutations, as well as over a number of inner/outer tessellation
233 glw::GLfloat inner[2]; member
262 memset(inner, 0, sizeof(inner)); in _run()
360 * of different inner/outer tessellation level configurations by reading
364 * 2. TE should output inner and output tessellation levels to a varying,
/third_party/skia/tests/
H A DStrokeTest.cpp81 SkRect inner(r); in test_strokerect()
82 inner.inset(width/2, width/2); in test_strokerect()
84 REPORTER_ASSERT(reporter, equal(nested[1], inner)); in test_strokerect()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-var-hvar-table.hh99 unsigned int inner = v & 0xFFFF; in init() local
101 if (inner > max_inners[outer]) max_inners[outer] = inner; in init()
103 inner_sets[outer]->add (inner); in init()
139 output_map[gid] = 0; /* Map unused glyph to outer/inner=0/0 */ in remap()
/third_party/python/Lib/
H A Dcontextlib.py79 def inner(*args, **kwds): function
82 return inner
95 async def inner(*args, **kwds): function
98 return inner
/third_party/rust/crates/clap/src/
H A Dmacros.rs547 $(#[$inner:ident $($args:tt)*])*
571 $(#[$inner $($args)*])*
581 $(#[$inner $($args)*])*
591 $(#[$inner $($args)*])*
/third_party/rust/crates/clap/src/error/
H A Dformat.rs36 } else if let Some(source) = error.inner.source.as_ref() { in format_error()
62 } else if let Some(source) = error.inner.source.as_ref() { in format_error()
112 try_help(&mut styled, error.inner.help_flag); in format_error()
325 if let Some(source) = error.inner.source.as_deref() { in write_dynamic_context()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dallowlist-namespaces-basic.rs15 pub mod inner { modules

Completed in 20 milliseconds

1...<<1112131415161718192021