Home
last modified time | relevance | path

Searched +full:foreground +full:- +full:child (Results 1 – 25 of 1020) sorted by relevance

12345678910>>...41

/aosp_15_r20/frameworks/native/services/surfaceflinger/tests/
H A DLayerUpdate_test.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
19 #pragma clang diagnostic ignored "-Wconversion"
34 ASSERT_EQ(NO_ERROR, mClient->initCheck()); in SetUp()
49 ASSERT_TRUE(mBGSurfaceControl->isValid()); in SetUp()
52 // Foreground surface in SetUp()
56 ASSERT_TRUE(mFGSurfaceControl->isValid()); in SetUp()
63 ASSERT_TRUE(mSyncSurfaceControl->isValid()); in SetUp()
70 t.setLayer(mBGSurfaceControl, INT32_MAX - 2).show(mBGSurfaceControl); in SetUp()
72 t.setLayer(mFGSurfaceControl, INT32_MAX - 1) in SetUp()
76 t.setLayer(mSyncSurfaceControl, INT32_MAX - 1) in SetUp()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/os/signal/
Dsignal_cgo_test.go2 // Use of this source code is governed by a BSD-style
30 ptyFD = 3 // child end of pty.
31 controlFD = 4 // child end of control pipe.
34 // TestTerminalSignal tests that read from a pseudo-terminal does not return an
48 // 1. Creating a new PTY parent/child FD pair.
49 …// 2. Create a child that is in the foreground process group of the PTY, and read() from that proc…
50 // 3. Stop the child with ^Z.
51 // 4. Take over as foreground process group of the PTY from the parent.
52 // 5. Make the child foreground process group again.
53 // 6. Continue the child.
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/syscall/
Dexec_unix_test.go2 // Use of this source code is governed by a BSD-style
81 t.Fatalf("Parent and child have the same process ID")
85 t.Fatalf("Child is not in parent's process group")
101 t.Fatalf("Parent and child have the same process ID")
105 t.Fatalf("Parent and child are in the same process group")
109 t.Fatalf("Child's process group is not the child's process ID")
125 t.Fatalf("Parent and child 1 have the same process ID")
129 t.Fatalf("Parent and child 1 are in the same process group")
133 t.Fatalf("Child 1's process group is not its process ID")
148 t.Fatalf("Parent and child 2 have the same process ID")
[all …]
Dexec_freebsd.go2 // Use of this source code is governed by a BSD-style
17 // Setpgid sets the process group ID of the child to Pgid,
18 // or, if Pgid == 0, to the new child's process ID.
20 // Setctty sets the controlling terminal of the child to
22 // in the child process: an index into ProcAttr.Files.
27 // Foreground places the child process group in the foreground.
32 Foreground bool member
33 Pgid int // Child's process group ID if Setpgid.
35 Jail int // Jail to which the child process is attached (FreeBSD only).
49 // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
[all …]
Dexec_libc.go2 // Use of this source code is governed by a BSD-style
20 // Setpgid sets the process group ID of the child to Pgid,
21 // or, if Pgid == 0, to the new child's process ID.
23 // Setctty sets the controlling terminal of the child to
25 // in the child process: an index into ProcAttr.Files.
30 // Foreground places the child process group in the foreground.
35 Foreground bool member
36 Pgid int // Child's process group ID if Setpgid.
67 // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
69 // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
[all …]
Dexec_libc2.go2 // Use of this source code is governed by a BSD-style
20 // Setpgid sets the process group ID of the child to Pgid,
21 // or, if Pgid == 0, to the new child's process ID.
23 // Setctty sets the controlling terminal of the child to
25 // in the child process: an index into ProcAttr.Files.
30 // Foreground places the child process group in the foreground.
35 Foreground bool member
36 Pgid int // Child's process group ID if Setpgid.
44 // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
46 // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
[all …]
Dexec_bsd.go2 // Use of this source code is governed by a BSD-style
19 // Setpgid sets the process group ID of the child to Pgid,
20 // or, if Pgid == 0, to the new child's process ID.
22 // Setctty sets the controlling terminal of the child to
24 // in the child process: an index into ProcAttr.Files.
29 // Foreground places the child process group in the foreground.
34 Foreground bool member
35 Pgid int // Child's process group ID if Setpgid.
43 // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
45 // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
[all …]
Dexec_linux.go2 // Use of this source code is governed by a BSD-style
15 // Linux unshare/clone/clone2/clone3 flags, architecture-independent,
23 CLONE_PTRACE = 0x00002000 // set if we want to let tracing continue on the child too
24 CLONE_VFORK = 0x00004000 // set if the parent wants the child to wake it up on mm_release
29 CLONE_SETTLS = 0x00080000 // create a new TLS for the child
31 CLONE_CHILD_CLEARTID = 0x00200000 // clear the TID in the child
34 CLONE_CHILD_SETTID = 0x01000000 // set the TID in the child
69 // Ptrace tells the child to call ptrace(PTRACE_TRACEME).
74 // Setpgid sets the process group ID of the child to Pgid,
75 // or, if Pgid == 0, to the new child's process ID.
[all …]
Dexec_unix.go2 // Use of this source code is governed by a BSD-style
22 // We want the child in a fork/exec sequence to inherit only the
24 // descriptors close-on-exec and then, in the child, explicitly
27 // allocate a new file descriptor close-on-exec. Instead you
28 // have to allocate the descriptor and then mark it close-on-exec.
29 // If a fork happens between those two events, the child's exec
32 // This lock solves that race: the create new fd/mark close-on-exec
43 // If a non-malicious child accidentally inherits an open ordinary file,
44 // that's not a big deal. On the other hand, if a long-lived child
46 // of that pipe will not see EOF until that child exits, potentially
[all …]
/aosp_15_r20/frameworks/base/core/java/android/widget/
H A DFrameLayout.java8 * http://www.apache.org/licenses/LICENSE-2.0
43 * a single item. Generally, FrameLayout should be used to hold a single child view, because it can
44 * be difficult to organize child views in a way that's scalable to different screen sizes without
46 * and control their position within the FrameLayout by assigning gravity to each child, using the
49 * <p>Child views are drawn in a stack, with the most recently added child on top.
50 * The size of the FrameLayout is the size of its largest child (plus padding), visible
114 * Describes how the foreground is positioned. Defaults to START and TOP.
128 final Drawable foreground = getForeground(); in setForegroundGravity() local
129 if (getForegroundGravity() == Gravity.FILL && foreground != null) { in setForegroundGravity()
131 if (foreground.getPadding(padding)) { in setForegroundGravity()
[all …]
/aosp_15_r20/external/coreboot/util/kconfig/
H A Dgconf.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2002-2003 Romain Lievin <[email protected]>
101 buf[strlen(buf) - 1] = '\0'; in dbg_sym_flags()
116 &style->bg[GTK_STATE_NORMAL], in replace_button_icon()
167 replace_button_icon(xml, main_wnd->window, style, in init_main_window()
169 replace_button_icon(xml, main_wnd->window, style, in init_main_window()
171 replace_button_icon(xml, main_wnd->window, style, in init_main_window()
176 "foreground", "red", in init_main_window()
183 gtk_window_set_title(GTK_WINDOW(main_wnd), rootmenu.prompt->text); in init_main_window()
248 "foreground-gdk", in init_left_tree()
[all …]
/aosp_15_r20/frameworks/base/core/java/com/android/internal/widget/
H A DWatchListDecorLayout.java8 * http://www.apache.org/licenses/LICENSE-2.0
32 * Layout for the decor for ListViews on watch-type devices with small screens.
36 * Use with one ListView child. The top and bottom panels will track the ListView's scrolling.
37 * If there is no ListView child, it will act like a normal FrameLayout.
77 View child = getChildAt(i); in onAttachedToWindow() local
78 if (child instanceof ListView) { in onAttachedToWindow()
80 throw new IllegalArgumentException("only one ListView child allowed"); in onAttachedToWindow()
82 mListView = (ListView) child; in onAttachedToWindow()
88 int gravity = (((LayoutParams) child.getLayoutParams()).gravity in onAttachedToWindow()
91 mTopPanel = child; in onAttachedToWindow()
[all …]
/aosp_15_r20/external/angle/third_party/vulkan_memory_allocator/docs/html/
H A Dtabs.css1-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;…
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/drawable/
H A DAdaptiveIconDrawable.java8 * http://www.apache.org/licenses/LICENSE-2.0
56 * <p>This class can also be created via XML inflation using <code>&lt;adaptive-icon></code> tag
59 * <p>This drawable supports two drawable layers: foreground and background. The layers are clipped
63 * <li>Both foreground and background layers should be sized at 108 x 108 dp.</li>
69 * Such motion effect is achieved by internally setting the bounds of the foreground and
72 * Rect(getBounds().left - getBounds().getWidth() * #getExtraInsetFraction(),
73 * getBounds().top - getBounds().getHeight() * #getExtraInsetFraction(),
79 * drawn in place of the two (background and foreground) layers. This drawable is tinted
122 * Indices used to access {@link #mLayerState.mChildDrawable} array for foreground and
166 // get rid of it all-together in layoutlib in AdaptiveIconDrawable()
[all …]
/aosp_15_r20/packages/apps/ThemePicker/src/com/android/customization/widget/
DDynamicAdaptiveIconDrawable.java70 * Indices used to access {@link #mLayerState.mChildren} array for foreground and
134 * @param foregroundDrawable drawable that should be rendered in the foreground
185 * Returns the foreground drawable managed by this class.
187 * @return the foreground drawable managed by this drawable
194 * Returns the foreground drawable managed by this class. The bound of this drawable is
226 * Set the child layer bounds bigger than the view port size by {@link #DEFAULT_VIEW_PORT_SCALE}
245 outRect.set(cX - insetWidth, cY - insetHeight, cX + insetWidth, cY + insetHeight); in updateLayerBoundsInternal()
293 canvas.translate(-bounds.left, -bounds.top); in draw()
336 // Update cached mask of child changing configurations. in applyTheme()
343 * Inflates child layers using the specified parser.
[all …]
/aosp_15_r20/external/tinyxml2/docs/
H A Dtabs.css1-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;…
/aosp_15_r20/external/toybox/toys/other/
H A Dtimeout.c1 /* timeout.c - Run command line with a timeout
7 USE_TIMEOUT(NEWTOY(timeout, "<2^(foreground)(preserve-status)vk:s(signal):i", TOYFLAG_USR|TOYFLAG_B…
13 usage: timeout [-iv] [-k DURATION] [-s SIGNAL] DURATION COMMAND...
15 Run command line as a child process, sending child a signal if the
21 -i Only kill for inactivity (restart timeout when command produces output)
22 -k Send KILL signal if child still running this long after first signal
23 -s Send specified signal (default TERM)
24 -v Verbose
25 --foreground Don't create new process group
26 --preserve-status Exit with the child's exit status
[all …]
/aosp_15_r20/external/skia/include/effects/
H A DSkImageFilters.h4 * Use of this source code is governed by a BSD-style license that can be
72 return this->has_value() == o.has_value() &&
73 (!this->has_value() || this->value() == *o);
79 * combining the corresponding background and foreground pixels using the 4 coefficients:
80 * k1 * foreground * background + k2 * foreground + k3 * background + k4
81 * @param k1, k2, k3, k4 The four coefficients used to combine the foreground and background.
84 * @param foreground The foreground content, using the source bitmap when this is null.
89 sk_sp<SkImageFilter> foreground,
96 * @param foreground The Src pixels used in blending, if null the source bitmap is used.
100 sk_sp<SkImageFilter> foreground = nullptr,
[all …]
/aosp_15_r20/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/option/ui/binder/
DOptionItemBinder2.kt8 * http://www.apache.org/licenses/LICENSE-2.0 in <lambda>()
48 * The child views of [view] must be named and arranged in the following manner, from top of the in <lambda>()
49 * z-axis to the bottom: in <lambda>()
50 * - [R.id.foreground] is the foreground drawable ([ImageView]). in <lambda>()
51 * - [R.id.background] is the view in the background ([OptionItemBackground]). in <lambda>()
54 * clipping of child views across the view-tree using: in <lambda>()
59 * Optionally, there may be an [R.id.text] [TextView] to show the text from the view-model. If in <lambda>()
62 * @param view The view; it must contain the child views described above. in <lambda>()
63 * @param viewModel The view-model. in <lambda>()
75 val foregroundView: ImageView? = view.findViewById(R.id.foreground) in <lambda>()
[all …]
DOptionItemBinder.kt8 * http://www.apache.org/licenses/LICENSE-2.0 in <lambda>()
47 * The child views of [view] must be named and arranged in the following manner, from top of the in <lambda>()
48 * z-axis to the bottom: in <lambda>()
49 * - [R.id.foreground] is the foreground drawable ([ImageView]). in <lambda>()
50 * - [R.id.background] is the view in the background ([View]). in <lambda>()
51 * - [R.id.selection_border] is a view rendering a border. It must have the same exact size as in <lambda>()
52 * [R.id.background] ([View]) and must be placed below it on the z-axis (you read that right). in <lambda>()
56 * the clipping of child views across the view-tree using: in <lambda>()
61 * Optionally, there may be an [R.id.text] [TextView] to show the text from the view-model. If in <lambda>()
64 * @param view The view; it must contain the child views described above. in <lambda>()
[all …]
/aosp_15_r20/frameworks/base/core/res/res/values/
H A Dattrs_manifest.xml1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
9 ** http://www.apache.org/licenses/LICENSE-2.0
17 -->
19 <!-- **************************************************************** -->
20 <!-- These are the attributes used in AndroidManifest.xml. -->
21 <!-- **************************************************************** -->
22 <eat-comment />
24 <!-- The overall theme to use for an activity. Use with either the
33 system theme will be used. -->
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/WallpaperPicker2/WallpaperPicker2Lib/android_common/kapt/gen/stubs/com/android/wallpaper/picker/option/ui/binder/
DOptionItemBinder2.java32 * The child views of [view] must be named and arranged in the following manner, from top of the
33 * z-axis to the bottom:
34 * - [R.id.foreground] is the foreground drawable ([ImageView]).
35 * - [R.id.background] is the view in the background ([OptionItemBackground]).
38 * clipping of child views across the view-tree using:
43 * Optionally, there may be an [R.id.text] [TextView] to show the text from the view-model. If
46 * @param view The view; it must contain the child views described above.
47 * @param viewModel The view-model.
78 * Opacity of the option foreground when it's disabled.
111 * Opacity of the option foreground when it's disabled.
DOptionItemBinder.java31 * The child views of [view] must be named and arranged in the following manner, from top of the
32 * z-axis to the bottom:
33 * - [R.id.foreground] is the foreground drawable ([ImageView]).
34 * - [R.id.background] is the view in the background ([View]).
35 * - [R.id.selection_border] is a view rendering a border. It must have the same exact size as
36 * [R.id.background] ([View]) and must be placed below it on the z-axis (you read that right).
40 * the clipping of child views across the view-tree using:
45 * Optionally, there may be an [R.id.text] [TextView] to show the text from the view-model. If
48 * @param view The view; it must contain the child views described above.
49 * @param viewModel The view-model.
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/Library/
H A DUefiLib.h15 Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
19 http://opensource.org/licenses/bsd-license.php.
162 have been added that support the ProtocolGuid-specified protocol.
250 which is implementation-dependent.
337 if ((LockParameter)->Lock != EfiLockAcquired) { \
439 Tests whether a child handle is a child device of the controller.
448 @param ChildHandle A child handle to test.
449 @param ProtocolGuid Supplies the protocol that the child controller
452 @retval EFI_SUCCESS ChildHandle is a child of the ControllerHandle.
453 @retval EFI_UNSUPPORTED ChildHandle is not a child of the
[all …]
/aosp_15_r20/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_widgets.py22 errmsg='attempt to change read-only option'
24 errmsg='Attempt to change read-only option'
70 self.assertEqual(self.widget.identify(-1, -1), "")
173 f' {", ".join(options[:-1])}, or {options[-1]}'
184 self.checkParams(widget, 'width', 402, -402, 0)
191 'class', 'compound', 'cursor', 'font', 'foreground',
204 '-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*')
298 'exportselection', 'font', 'foreground',
345 # bpo-27313: macOS Cocoa widget differs from X, allow either
347 self.assertEqual(self.entry.identify(-1, -1), "")
[all …]

12345678910>>...41