Home
last modified time | relevance | path

Searched refs:inner (Results 326 - 350 of 551) sorted by relevance

1...<<11121314151617181920>>...23

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DPropertiesTest.java268 Map<String, String> inner = new HashMap<String, String>(); in getSampleValueForType()
269 inner.put("one", "0 thousand"); in getSampleValueForType()
275 outer.put(magnitudeKey.toString(), inner); in getSampleValueForType()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DPropertiesTest.java265 Map<String, String> inner = new HashMap<String, String>(); in getSampleValueForType()
266 inner.put("one", "0 thousand"); in getSampleValueForType()
272 outer.put(magnitudeKey.toString(), inner); in getSampleValueForType()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationUtil.hpp107 float inner[2]; member
168 std::string getTessellationLevelsString (const float* inner, const float* outer);
170 std::vector<tcu::Vec3> generateReferenceTriangleTessCoords (const SpacingMode spacingMode, const int inner, const int outer0, const int outer1, const int outer2);
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DAstHelpers.cpp330 TType &inner = *new TType(type);
331 inner.toArrayBaseType();
332 return inner;
/third_party/skia/tests/
H A DPathOpsAngleTest.cpp40 for (int inner = 0; inner < 10; ++inner) { in DEF_TEST()
H A DRoundRectTest.cpp1024 // Test that an empty rrect reports empty inner bounds in test_inner_bounds()
1026 // Test that a rect rrect reports itself as the inner bounds in test_inner_bounds()
1029 // Test that a circle rrect has an inner bounds area equal to 2*radius^2 in test_inner_bounds()
1031 SkRect inner = SkRRectPriv::InnerBounds(SkRRect::MakeOval(SkRect::MakeWH(2.f * radius, in test_inner_bounds() local
1033 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(inner.width() * inner.height(), in test_inner_bounds()
1042 (width-2.f*radius) * (height-2.f*radius) + // inner area excluding corners and edges in test_inner_bounds()
1046 inner = SkRRectPriv::InnerBounds(SkRRect::MakeRectXY(r, radius, radius)); in test_inner_bounds()
1047 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(inner.width() * inner in test_inner_bounds()
[all...]
/third_party/python/Lib/test/
H A Dtest_decorators.py317 def inner(cls): member in TestDecorators.test_wrapped_descriptor_inside_classmethod.Class
328 self.assertEqual(Class.inner(), 'spam')
330 self.assertEqual(Class().inner(), 'spam')
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dranden_hwaes.cc513 Vector128 inner = Vector128Load(state);
514 inner ^= prev_inner;
515 Vector128Store(inner, state);
/third_party/skia/gm/
H A Dfilterfastbounds.cpp61 SkRRect inner = outer; in draw_drrect() local
62 inner.inset(xRad, yRad); in draw_drrect()
63 canvas->drawDRRect(outer, inner, p); in draw_drrect()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/
H A DvktTessellationUtil.hpp107 float inner[2]; member
169 std::string getTessellationLevelsString (const float* inner, const float* outer);
171 std::vector<tcu::Vec3> generateReferenceTriangleTessCoords (const SpacingMode spacingMode, const int inner, const int outer0, const int outer1, const int outer2);
/third_party/jinja2/
H A Dcompiler.py226 def inner(self, isolated: bool = False) -> "Frame": member in Frame
227 """Return an inner frame."""
615 frame = frame.inner()
1157 loop_frame = frame.inner()
1159 test_frame = frame.inner()
1160 else_frame = frame.inner()
1335 filter_frame = frame.inner()
1346 with_frame = frame.inner()
1567 block_frame = frame.inner()
1913 scope_frame = frame.inner()
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Dcompiler.py175 def inner(self, isolated=False): member in Frame
176 """Return an inner frame."""
509 frame = frame.inner()
1078 loop_frame = frame.inner()
1079 test_frame = frame.inner()
1080 else_frame = frame.inner()
1251 filter_frame = frame.inner()
1262 with_frame = frame.inner()
1463 block_frame = frame.inner()
1804 scope_frame = frame.inner()
[all...]
/third_party/node/tools/inspector_protocol/jinja2/
H A Dcompiler.py172 def inner(self, isolated=False): member in Frame
173 """Return an inner frame."""
507 frame = frame.inner()
1025 loop_frame = frame.inner()
1026 test_frame = frame.inner()
1027 else_frame = frame.inner()
1195 filter_frame = frame.inner()
1206 with_frame = frame.inner()
1376 block_frame = frame.inner()
1682 scope_frame = frame.inner()
[all...]
/third_party/skia/src/core/
H A DSkStroke.cpp206 SkPath fInner, fOuter, fCusper; // outer is our working answer, inner is temp
407 // 3x for result == inner + outer + join (swag) in SkPathStroker()
408 // 1x for inner == 'wag' (worst contour length would be better guess) in SkPathStroker()
550 Return true if the inner points is close to a line connecting the outermost points.
577 for (int inner = index + 1; inner < 4; ++inner) { in cubic_in_line()
578 SkVector testDiff = cubic[inner] - cubic[index]; in cubic_in_line()
582 outer2 = inner; in cubic_in_line()
614 for (int inner in quad_in_line()
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dcompiler.py175 def inner(self, isolated=False): member in Frame
176 """Return an inner frame."""
509 frame = frame.inner()
1078 loop_frame = frame.inner()
1079 test_frame = frame.inner()
1080 else_frame = frame.inner()
1251 filter_frame = frame.inner()
1262 with_frame = frame.inner()
1463 block_frame = frame.inner()
1804 scope_frame = frame.inner()
[all...]
/third_party/python/Modules/
H A Dmathmodule.c1425 are exactly equal to x+y. The inner loop applies hi/lo summation to each
2032 PyObject *partial, *tmp, *inner, *outer; in factorial_odd_part() local
2034 inner = PyLong_FromLong(1); in factorial_odd_part()
2035 if (inner == NULL) in factorial_odd_part()
2037 outer = inner; in factorial_odd_part()
2048 /* Here inner is the product of all odd integers j in the range (0, in factorial_odd_part()
2052 /* inner *= partial */ in factorial_odd_part()
2055 tmp = PyNumber_Multiply(inner, partial); in factorial_odd_part()
2059 Py_DECREF(inner); in factorial_odd_part()
2060 inner in factorial_odd_part()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DSystemUtilsTests.cpp78 ScopedEnvironmentVar inner("ScopedEnvironmentVarForTest", "inner"); in TEST()
79 EXPECT_THAT(GetEnvironmentVar("ScopedEnvironmentVarForTest"), Pair("inner", true)); in TEST()
/third_party/skia/include/core/
H A DSkCanvasVirtualEnforcer.h26 void onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dmd_ctx.rs144 /// A reference to the context's inner `PkeyCtx` is returned, allowing signature settings to be configured.
170 /// A reference to the context's inner `PkeyCtx` is returned, allowing signature settings to be configured.
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs15103 // Optimized join implementation that works for both Vec<T> (T: Copy) and String's inner vec
15895 inner: Arc<i32>,
16109 inner: Weak<ZeroRefs>, in test_arc_cyclic_with_zero_refs()
16111 let zero_refs = Arc::new_cyclic(|inner| { in test_arc_cyclic_with_zero_refs()
16112 assert_eq!(inner.strong_count(), 0); in test_arc_cyclic_with_zero_refs()
16113 assert!(inner.upgrade().is_none()); in test_arc_cyclic_with_zero_refs()
16114 ZeroRefs { inner: Weak::new() } in test_arc_cyclic_with_zero_refs()
16119 assert_eq!(zero_refs.inner.strong_count(), 0); in test_arc_cyclic_with_zero_refs()
16120 assert_eq!(zero_refs.inner.weak_count(), 0); in test_arc_cyclic_with_zero_refs()
16126 inner in test_arc_new_cyclic_one_ref()
19811 fn inner(&self) -> &RcBox<T> { inner() functions
21695 fn inner(&self) -> Option<WeakInner<'_>> { inner() functions
24295 fn inner(&self) -> &ArcInner<T> { inner() functions
25147 fn inner(&self) -> Option<WeakInner<'_>> { inner() functions
[all...]
/kernel/linux/linux-6.6/rust/kernel/init/
H A Dmacros.rs512 $($inner:tt)* in drop()
520 $($inner)* in drop()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dtypes.rs225 ImproperCtype::Depends(inner) => {
227 types.struct_improper_ctypes.contains(inner)
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dstruct_layout.rs170 if let TypeKind::Array(inner, len) = in saw_field()
180 if let Some(layout) = self.ctx.resolve_type(inner).layout(self.ctx) in saw_field()
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dtypes.rs225 ImproperCtype::Depends(inner) => {
227 types.struct_improper_ctypes.contains(inner)
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dtypes.rs225 ImproperCtype::Depends(inner) => {
227 types.struct_improper_ctypes.contains(inner)

Completed in 57 milliseconds

1...<<11121314151617181920>>...23