HomeSort by relevance Sort by last modified time
    Searched refs:Placement (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/test/SemaCXX/
warn-new-overaligned-3.cpp 27 struct Placement {
28 Placement() {
  /external/v8/src/compiler/
scheduler.h 43 // Placement of a node changes during scheduling. The placement state
54 enum Placement { kUnknown, kSchedulable, kFixed, kCoupled, kScheduled };
58 BasicBlock* minimum_block_; // Minimum legal RPO placement.
60 Placement placement_; // Whether the node is fixed, schedulable,
81 Placement GetPlacement(Node* node);
82 void UpdatePlacement(Node* node, Placement placement);
scheduler.cc 69 Scheduler::Placement Scheduler::GetPlacement(Node* node) {
71 if (data->placement_ == kUnknown) { // Compute placement, once, on demand.
82 Placement p = GetPlacement(NodeProperties::GetControlInput(node));
103 void Scheduler::UpdatePlacement(Node* node, Placement placement) {
115 DCHECK_EQ(Scheduler::kFixed, placement);
129 UpdatePlacement(use, placement);
136 DCHECK_EQ(Scheduler::kScheduled, placement);
146 data->placement_ = placement;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
SnackBar.java 85 * Defines the placement of the snack bar (e.g. anchored view, anchor gravity).
87 public static class Placement {
91 private Placement(@NonNull final View anchorView, final boolean anchorAbove) {
108 public static Placement above(final View anchorView) {
109 return new Placement(anchorView, true);
115 public static Placement below(final View anchorView) {
116 return new Placement(anchorView, false);
131 private Placement mPlacement;
173 * Place the snack bar with the given placement requirement.
175 public Builder withPlacement(final Placement placement)
    [all...]
SnackBarManager.java 39 import com.android.messaging.ui.SnackBar.Placement;
156 final Placement placement = snackBar.getPlacement(); local
157 if (placement == null) {
162 final View anchorView = placement.getAnchorView();
355 final Placement placement = snackBar.getPlacement(); local
356 Assert.notNull(placement);
357 final View anchorView = placement.getAnchorView();
358 if (placement.getAnchorAbove())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
IndexerListAdapter.java 41 public static final class Placement {
52 private Placement mPlacementCache = new Placement();
218 * Computes the item's placement within its section and populates the {@code placement}
222 public Placement getItemPlacementInSection(int position) {
ContactListAdapter.java 237 Placement placement = getItemPlacementInSection(position); local
238 view.setSectionHeader(placement.sectionHeader);
ContactEntryListAdapter.java 539 Placement placement = getItemPlacementInSection(position); local
540 return placement.firstInSection ? type : getItemViewTypeCount() + type;
PhoneNumberListAdapter.java 505 Placement placement = getItemPlacementInSection(position); local
506 view.setSectionHeader(placement.firstInSection ? placement.sectionHeader : null);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
IndexerListAdapter.java 32 private Placement mPlacementCache = new Placement();
169 * Computes the item's placement within its section and populates the {@code placement} object
173 public Placement getItemPlacementInSection(int position) {
203 public static final class Placement {
ContactListAdapter.java 78 Placement placement = getItemPlacementInSection(position); local
79 view.setSectionHeader(placement.sectionHeader);
ContactEntryListAdapter.java 520 Placement placement = getItemPlacementInSection(position); local
521 return placement.firstInSection ? type : getItemViewTypeCount() + type;
PhoneNumberListAdapter.java 429 Placement placement = getItemPlacementInSection(position); local
430 view.setSectionHeader(placement.firstInSection ? placement.sectionHeader : null);
  /external/pdfium/xfa/fxfa/parser/
cxfa_caption.cpp 29 {XFA_Attribute::Placement, XFA_AttributeType::Enum,
65 ->TryEnum(XFA_Attribute::Placement, true)
cxfa_node_statics.cpp     [all...]
xfa_basic_data_element_script.cpp     [all...]
  /external/skia/tools/shape/
using_skia_and_harfbuzz.cpp 127 // Placement ///////////////////////////////////////////////////////////////////
129 class Placement {
131 Placement(const Config* conf, SkDocument *doc)
204 Placement placement(&config, doc.get());
216 placement.WriteLine(shaper, line.c_str(), line.size());
  /external/skqp/tools/shape/
using_skia_and_harfbuzz.cpp 127 // Placement ///////////////////////////////////////////////////////////////////
129 class Placement {
131 Placement(const Config* conf, SkDocument *doc)
204 Placement placement(&config, doc.get());
216 placement.WriteLine(shaper, line.c_str(), line.size());
  /packages/apps/Messaging/src/com/android/messaging/util/
ChangeDefaultSmsAppHelper.java 101 SnackBar.Placement.above(composeView));
UiUtils.java 50 import com.android.messaging.ui.SnackBar.Placement;
132 null /* placement */);
140 @Nullable final Placement placement) {
149 .withPlacement(placement)
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMembersAdapter.java 160 final Placement placement = getItemPlacementInSection(position); local
161 view.setSectionHeader(placement.sectionHeader);
  /external/tensorflow/tensorflow/core/profiler/g3doc/
command_line.md 10 * [Profile Device Placement](#profile-device-placement)
258 #### Profile Device Placement
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 602 Placement,
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationFragment.java     [all...]
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 

Completed in 493 milliseconds

1 2