/external/clang/test/SemaCXX/ |
warn-new-overaligned-3.cpp | 27 struct Placement { 28 Placement() {
|
/external/v8/src/compiler/ |
scheduler.h | 42 // Placement of a node changes during scheduling. The placement state 53 enum Placement { kUnknown, kSchedulable, kFixed, kCoupled, kScheduled }; 57 BasicBlock* minimum_block_; // Minimum legal RPO placement. 59 Placement placement_; // Whether the node is fixed, schedulable, 80 Placement GetPlacement(Node* node); 81 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/ContactsCommon/src/com/android/contacts/common/list/ |
IndexerListAdapter.java | 41 public static final class Placement { 52 private Placement mPlacementCache = new Placement(); 198 * Computes the item's placement within its section and populates the {@code placement} 202 public Placement getItemPlacementInSection(int position) {
|
ContactListAdapter.java | 233 Placement placement = getItemPlacementInSection(position); local 234 view.setSectionHeader(placement.sectionHeader);
|
ContactEntryListAdapter.java | 543 Placement placement = getItemPlacementInSection(position); local 544 return placement.firstInSection ? type : getItemViewTypeCount() + type;
|
PhoneNumberListAdapter.java | 505 Placement placement = getItemPlacementInSection(position); local 506 view.setSectionHeader(placement.firstInSection ? placement.sectionHeader : null);
|
/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/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 | |