/third_party/rust/crates/proc-macro2/src/ |
H A D | rcvec.rs | 8 inner: Rc<Vec<T>>, 12 inner: Vec<T>, 16 inner: &'a mut Vec<T>, 21 inner: vec::IntoIter<T>, 26 self.inner.is_empty() in is_empty() 30 self.inner.len() in len() 34 self.inner.iter() in iter() 42 inner: Rc::make_mut(&mut self.inner), in make_mut() 47 let inner in get_mut() [all...] |
H A D | lib.rs | 186 inner: imp::TokenStream, 192 inner: imp::LexError, 197 fn _new(inner: imp::TokenStream) -> Self { in _new() 199 inner, in _new() 204 fn _new_fallback(inner: fallback::TokenStream) -> Self { in _new_fallback() 206 inner: inner.into(), in _new_fallback() 218 self.inner.is_empty() in is_empty() 243 inner: e, in from_str() 253 fn from(inner [all...] |
/third_party/skia/tests/ |
H A D | PathOpsBuilderTest.cpp | 212 SkPath inner; in DEF_TEST() local 215 inner.addRect(10, 30, 10+0, 30+60); // <rect x="10" y="30" width="0" height="60" /> in DEF_TEST() 216 inner.addRect(10, 30, 10+0, 30+60); // <rect x="10" y="30" width="0" height="60" /> in DEF_TEST() 217 inner.addRect(10, 30, 10+100, 30+60); // <rect x="10" y="30" width="100" height="60" /> in DEF_TEST() 218 inner.addRect(10, 30, 10+32668, 30+0); // <rect x="10" y="30" width="32668" /> in DEF_TEST() 219 inner.addRect(10, 30, 10+100, 30+18446744073709551615.f); // <rect x="10" y="30" width="100" height="18446744073709551615" /> in DEF_TEST() 220 inner.addRect(10, 255, 10+100, 255+60); // <rect x="10" y="255" width="100" height="60" /> in DEF_TEST() 221 inner.addRect(0, 0, 0+100, 0+60); // <rect width="100" height="60" /> in DEF_TEST() 222 inner.addRect(10, 30, 10+100, 30+60); // <rect x="10" y="30" width="100" height="60" /> in DEF_TEST() 223 inner in DEF_TEST() [all...] |
H A D | PathOpsLineParametetersTest.cpp | 52 size_t inner; in DEF_TEST() local 53 for (inner = 0; inner < 2; ++inner) { in DEF_TEST() 54 double distSq = denormalizedDistance[inner]; in DEF_TEST() 56 double answersSq = answers[index][inner]; in DEF_TEST() 63 __FUNCTION__, static_cast<int>(index), (int)inner, in DEF_TEST() 64 denormalizedDistance[inner], answers[index][inner], in DEF_TEST() 71 for (inner in DEF_TEST() [all...] |
/third_party/rust/crates/either/src/ |
H A D | lib.rs | 137 Left(inner) => Left(inner.clone()), in clone() 138 Right(inner) => Right(inner.clone()), in clone() 230 Left(ref inner) => Left(inner), in as_ref() 231 Right(ref inner) => Right(inner), in as_ref() 255 Left(ref mut inner) => Left(inner), in as_mut() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | narrowCommaOperatorNestedWithinLHS.js | 3 const value: { inner: number | string } = null as any; 9 if (typeof (otherValue(), value).inner === 'number') { 10 const a = value.inner; // number 11 const b: number = (otherValue(), value).inner; // string | number , but should be number 14 if (isNumber((otherValue(), value).inner)) { 15 const a = value.inner; // number 16 const b: number = (otherValue(), value).inner; // string | number , but should be number 25 if (typeof (otherValue(), value).inner === 'number') {
26 var a = value.inner; // number
27 var b = (otherValue(), value).inner; // strin [all...] |
/third_party/rust/crates/syn/src/ |
H A D | punctuated.rs | 47 inner: Vec<(T, P)>, 55 inner: Vec::new(), 63 self.inner.len() == 0 && self.last.is_none() in is_empty() 71 self.inner.len() + if self.last.is_some() { 1 } else { 0 } in len() 97 inner: Box::new(NoDrop::new(PrivateIter { in iter() 98 inner: self.inner.iter(), in iter() 108 inner: Box::new(NoDrop::new(PrivateIterMut { in iter_mut() 109 inner: self.inner in iter_mut() [all...] |
/third_party/rust/crates/which-rs/src/ |
H A D | lib.rs | 404 inner: path::PathBuf, 412 which(binary_name).map(|inner| Path { inner }) in new() 419 which_all(binary_name).map(|inner| inner.map(|inner| Path { inner })) in all() 432 which_in(binary_name, paths, cwd).map(|inner| Path { inner }) in new_in() 449 which_in_all(binary_name, paths, cwd).map(|inner| inne in all_in() [all...] |
/third_party/skia/third_party/externals/tint/src/ |
H A D | program_builder_test.cc | 34 Program inner([] { in TEST_F() 41 ASSERT_EQ(inner.AST().Functions().size(), 1u); in TEST_F() 42 ASSERT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F() 43 ASSERT_FALSE(inner.Symbols().Get("b").IsValid()); in TEST_F() 45 ProgramBuilder outer = ProgramBuilder::Wrap(&inner); in TEST_F() 47 ASSERT_EQ(inner.AST().Functions().size(), 1u); in TEST_F() 49 EXPECT_EQ(inner.AST().Functions()[0], outer.AST().Functions()[0]); in TEST_F() 50 EXPECT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F() 51 EXPECT_EQ(inner.Symbols().Get("a"), outer.Symbols().Get("a")); in TEST_F() 52 EXPECT_TRUE(inner in TEST_F() [all...] |
/third_party/rust/crates/cxx/gen/cmd/src/gen/ |
H A D | write.rs | 934 write_type_space(out, &ret.inner); in write_rust_function_decl_impl() 1041 write_type_space(out, &ret.inner); in write_rust_function_shim_impl() 1160 write_type_space(out, &ty.inner); in write_indirect_return_type() 1164 write_type_space(out, &ty.inner); in write_indirect_return_type() 1186 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1190 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1208 write_type_space(out, &ty.inner); in write_extern_arg() 1231 write_type(out, &ty.inner); in write_type() 1236 write_type(out, &ty.inner); in write_type() 1241 write_type(out, &ptr.inner); in write_type() [all...] |
/third_party/rust/crates/cxx/gen/src/ |
H A D | write.rs | 934 write_type_space(out, &ret.inner); in write_rust_function_decl_impl() 1041 write_type_space(out, &ret.inner); in write_rust_function_shim_impl() 1160 write_type_space(out, &ty.inner); in write_indirect_return_type() 1164 write_type_space(out, &ty.inner); in write_indirect_return_type() 1186 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1190 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1208 write_type_space(out, &ty.inner); in write_extern_arg() 1231 write_type(out, &ty.inner); in write_type() 1236 write_type(out, &ty.inner); in write_type() 1241 write_type(out, &ptr.inner); in write_type() [all...] |
/third_party/rust/crates/cxx/gen/lib/src/gen/ |
H A D | write.rs | 934 write_type_space(out, &ret.inner); in write_rust_function_decl_impl() 1041 write_type_space(out, &ret.inner); in write_rust_function_shim_impl() 1160 write_type_space(out, &ty.inner); in write_indirect_return_type() 1164 write_type_space(out, &ty.inner); in write_indirect_return_type() 1186 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1190 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1208 write_type_space(out, &ty.inner); in write_extern_arg() 1231 write_type(out, &ty.inner); in write_type() 1236 write_type(out, &ty.inner); in write_type() 1241 write_type(out, &ptr.inner); in write_type() [all...] |
/third_party/rust/crates/cxx/gen/build/src/gen/ |
H A D | write.rs | 934 write_type_space(out, &ret.inner); in write_rust_function_decl_impl() 1041 write_type_space(out, &ret.inner); in write_rust_function_shim_impl() 1160 write_type_space(out, &ty.inner); in write_indirect_return_type() 1164 write_type_space(out, &ty.inner); in write_indirect_return_type() 1186 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1190 write_type_space(out, &ty.inner); in write_extern_return_type_space() 1208 write_type_space(out, &ty.inner); in write_extern_arg() 1231 write_type(out, &ty.inner); in write_type() 1236 write_type(out, &ty.inner); in write_type() 1241 write_type(out, &ptr.inner); in write_type() [all...] |
/third_party/elfutils/libdw/ |
H A D | dwarf_getsrc_file.c | 116 size_t inner; in dwarf_getsrc_file() local 117 for (inner = 0; inner < cur_match; ++inner) in dwarf_getsrc_file() 118 if (match[inner]->files == line->files in dwarf_getsrc_file() 119 && match[inner]->file == line->file) in dwarf_getsrc_file() 121 if (inner < cur_match in dwarf_getsrc_file() 122 && (match[inner]->line != line->line in dwarf_getsrc_file() 123 || match[inner]->line != lineno in dwarf_getsrc_file() 125 && (match[inner] in dwarf_getsrc_file() [all...] |
/third_party/elfutils/libdwfl/ |
H A D | dwfl_module_getsrc_file.c | 121 size_t inner; in dwfl_module_getsrc_file() local 122 for (inner = 0; inner < cur_match; ++inner) in dwfl_module_getsrc_file() 123 if (dwfl_line_file (match[inner]) in dwfl_module_getsrc_file() 126 if (inner < cur_match in dwfl_module_getsrc_file() 127 && (dwfl_line (match[inner])->line != line->line in dwfl_module_getsrc_file() 128 || dwfl_line (match[inner])->line != lineno in dwfl_module_getsrc_file() 130 && (dwfl_line (match[inner])->column != line->column in dwfl_module_getsrc_file() 131 || dwfl_line (match[inner]) in dwfl_module_getsrc_file() [all...] |
/third_party/rust/crates/clap/src/error/ |
H A D | mod.rs | 60 inner: Box<ErrorInner>, 95 if let Some(message) = self.inner.message.as_mut() { in format() 126 inner: Box::new(ErrorInner { in new() 167 inner: self.inner, in apply() 174 self.inner.kind in kind() 180 self.inner.context.iter().map(|(k, v)| (*k, v)) in context() 187 self.inner.context.get(&kind) in get() 194 self.inner.context.insert(kind, value) in insert() 249 self.inner in print() [all...] |
/third_party/elfutils/tests/ |
H A D | asm-tst3.c | 240 size_t inner; in main() local 242 for (inner = 1; in main() 243 inner < (shdr->sh_size in main() 245 ++inner) in main() 250 sym = gelf_getsym (data, inner, &sym_mem); in main() 254 inner, elf_errmsg (-1)); in main() 283 if (strcmp (names[inner], in main() 287 printf ("symbol %zu has different name\n", inner); in main() 291 if (sym->st_value != value[inner]) in main() 293 printf ("symbol %zu has wrong value\n", inner); in main() [all...] |
/third_party/rust/crates/once_cell/src/ |
H A D | race.rs | 35 inner: AtomicUsize, 42 OnceNonZeroUsize { inner: AtomicUsize::new(0) } 48 let val = self.inner.load(Ordering::Acquire); in get() 59 self.inner.compare_exchange(0, value.get(), Ordering::AcqRel, Ordering::Acquire); in set() 94 let val = self.inner.load(Ordering::Acquire); in get_or_try_init() 100 self.inner.compare_exchange(0, val, Ordering::AcqRel, Ordering::Acquire); in get_or_try_init() 114 inner: OnceNonZeroUsize, 121 OnceBool { inner: OnceNonZeroUsize::new() } 127 self.inner.get().map(OnceBool::from_usize) in get() 136 self.inner in set() [all...] |
/third_party/rust/crates/quote/src/ |
H A D | lib.rs | 698 ($call:ident! $extra:tt $b1:tt ( $($inner:tt)* )) => { 699 $crate::pounded_var_names!{$call! $extra $($inner)*} 702 ($call:ident! $extra:tt $b1:tt [ $($inner:tt)* ]) => { 703 $crate::pounded_var_names!{$call! $extra $($inner)*} 706 ($call:ident! $extra:tt $b1:tt { $($inner:tt)* }) => { 707 $crate::pounded_var_names!{$call! $extra $($inner)*} 879 ($tokens:ident $b3:tt $b2:tt $b1:tt (#) ( $($inner:tt)* ) * $a3:tt) => {{ 882 $crate::pounded_var_names!{quote_bind_into_iter!(has_iter) () $($inner)*} 891 $crate::pounded_var_names!{quote_bind_next_or_break!() () $($inner)*} 892 $crate::quote_each_token!{$tokens $($inner)*} [all...] |
/third_party/elfutils/src/ |
H A D | objdump.c | 579 for (size_t inner = 0; inner < 16; inner += 4) in show_full_content() 581 cp[inner], cp[inner + 1], cp[inner + 2], in show_full_content() 582 cp[inner + 3]); in show_full_content() 585 for (size_t inner = 0; inner < 16; ++inner) in show_full_content() 594 size_t inner; show_full_content() local [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A D | SkComposeImageFilter.cpp | 42 sk_sp<SkImageFilter> inner) { in Compose() 44 return inner; in Compose() 46 if (!inner) { in Compose() 49 sk_sp<SkImageFilter> inputs[2] = { std::move(outer), std::move(inner) }; in Compose() 68 const SkImageFilter* inner = this->getInput(1); in computeFastBounds() local 70 return outer->computeFastBounds(inner->computeFastBounds(src)); in computeFastBounds() 75 // The bounds passed to the inner filter must be filtered by the outer in onFilterImage() 76 // filter, so that the inner filter produces the pixels that the outer in onFilterImage() 83 sk_sp<SkSpecialImage> inner(this->filterInput(1, innerContext, &innerOffset)); in onFilterImage() 84 if (!inner) { in onFilterImage() 41 Compose(sk_sp<SkImageFilter> outer, sk_sp<SkImageFilter> inner) Compose() argument 116 const SkImageFilter* inner = this->getInput(1); onFilterBounds() local [all...] |
/third_party/rust/crates/syn/tests/ |
H A D | test_meta.rs | 30 let (inner, meta) = (input, input); in test_parse_meta_name_value() 32 snapshot!(inner as MetaNameValue, @r###" in test_parse_meta_name_value() 62 assert_eq!(meta, inner.into()); in test_parse_meta_name_value() 68 let (inner, meta) = (input, input); in test_parse_meta_item_list_lit() 70 snapshot!(inner as MetaList, @r###" in test_parse_meta_item_list_lit() 98 assert_eq!(meta, inner.into()); in test_parse_meta_item_list_lit() 104 let (inner, meta) = (input, input); in test_parse_meta_item_multiple() 106 snapshot!(inner as MetaList, @r###" in test_parse_meta_item_multiple() 134 assert_eq!(meta, inner.into()); in test_parse_meta_item_multiple()
|
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | impls.rs | 125 inner, in eq() 131 inner: inner2, in eq() 134 name == name2 && inner == inner2 in eq() 143 inner, in hash() 147 inner.hash(state); in hash() 160 inner, in eq() 169 inner: inner2, in eq() 173 pinned == pinned2 && lifetime == lifetime2 && mutable == mutable2 && inner == inner2 in eq() 184 inner, in hash() 191 inner in hash() [all...] |
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | impls.rs | 125 inner, in eq() 131 inner: inner2, in eq() 134 name == name2 && inner == inner2 in eq() 143 inner, in hash() 147 inner.hash(state); in hash() 160 inner, in eq() 169 inner: inner2, in eq() 173 pinned == pinned2 && lifetime == lifetime2 && mutable == mutable2 && inner == inner2 in eq() 184 inner, in hash() 191 inner in hash() [all...] |
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | impls.rs | 125 inner, in eq() 131 inner: inner2, in eq() 134 name == name2 && inner == inner2 in eq() 143 inner, in hash() 147 inner.hash(state); in hash() 160 inner, in eq() 169 inner: inner2, in eq() 173 pinned == pinned2 && lifetime == lifetime2 && mutable == mutable2 && inner == inner2 in eq() 184 inner, in hash() 191 inner in hash() [all...] |