HomeSort by relevance Sort by last modified time
    Searched refs:feedback (Results 51 - 75 of 144) sorted by null

1 23 4 5 6

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureManager.java 351 * Update the Eclipse status message with any feedback messages from the given
352 * {@link DropFeedback} object, or clean up if there is no more feedback to process
353 * @param feedback the feedback whose message we want to display, or null to clear the
356 void updateMessage(DropFeedback feedback) {
359 if (feedback == null) {
365 } else if (feedback.errorMessage != null) {
366 if (!feedback.errorMessage.equals(mDisplayingMessage)) {
367 mDisplayingMessage = feedback.errorMessage;
370 } else if (feedback.message != null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 292 @Nullable DropFeedback feedback, @NonNull Point p) {
293 if (feedback == null) {
296 feedback.requestPaint = true;
298 GridDropHandler handler = (GridDropHandler) feedback.userData;
299 handler.computeMatches(feedback, p);
301 return feedback;
306 @Nullable DropFeedback feedback, @NonNull Point p) {
307 if (feedback == null) {
316 GridDropHandler dropHandler = (GridDropHandler) feedback.userData;
324 feedback.isCopy || !feedback.sameCanvas)
638 DropFeedback feedback = onDropEnter(targetNode, targetView, elements); local
    [all...]
LinearLayoutRule.java 359 @NonNull DropFeedback feedback) {
362 drawFeedback(gc, node, elements, feedback);
367 void drawFeedback(IGraphics gc, INode node, IDragElement[] elements, DropFeedback feedback) {
379 LinearDropData data = (LinearDropData) feedback.userData;
481 @Nullable DropFeedback feedback, @NonNull Point p) {
484 return feedback;
487 LinearDropData data = (LinearDropData) feedback.userData;
527 feedback.requestPaint = !equals(oldX, data.getCurrX())
531 return feedback;
547 @Nullable DropFeedback feedback) {
    [all...]
  /external/chromium_org/net/http/
http_pipelined_host_impl.cc 108 HttpPipelinedConnection::Feedback feedback) {
110 switch (feedback) {
http_pipelined_host_forced.cc 84 HttpPipelinedConnection::Feedback feedback) {
http_pipelined_connection_impl.h 279 void ReportPipelineFeedback(int pipeline_id, Feedback feedback);
  /external/chromium_org/net/quic/congestion_control/
inter_arrival_sender.h 36 const QuicCongestionFeedbackFrame& feedback,
quic_congestion_manager.cc 138 QuicCongestionFeedbackFrame* feedback) {
139 return receive_algorithm_->GenerateCongestionFeedback(feedback);
  /external/chromium_org/net/quic/
quic_stream_factory_test.cc 70 QuicCongestionFeedbackFrame feedback; local
71 feedback.type = kTCP;
72 feedback.tcp.accumulated_number_of_lost_packets = 0;
73 feedback.tcp.receive_window = 16000;
78 frames.push_back(QuicFrame(&feedback));
85 // Returns a newly created packet to send congestion feedback data.
quic_connection_helper_test.cc 156 QuicCongestionFeedbackFrame feedback; local
157 feedback.type = kTCP;
158 feedback.tcp.accumulated_number_of_lost_packets = 0;
159 feedback.tcp.receive_window = 16000 << 4;
163 frames.push_back(QuicFrame(&feedback));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 35 * Painter which paints feedback during drag, drop and resizing operations, as well as
36 * static selection feedback
41 * Creates a painter for drop feedback
45 * @return a {@link IFeedbackPainter} which can paint the drop feedback
103 * Paint resizing feedback (which currently paints the grid model faintly.)
114 * A painter which can paint the drop feedback for elements being dragged into or
132 @NonNull DropFeedback feedback) {
141 GridDropHandler data = (GridDropHandler) feedback.userData;
144 paintFreeFormDropFeedback(gc, node, feedback, b, data);
151 * Paints the drag feedback for a free-form mode dra
    [all...]
GridDropHandler.java 75 * @param feedback a {@link DropFeedback} object containing drag state like the drag
79 public void computeMatches(DropFeedback feedback, Point p) {
81 feedback.tooltip = null;
87 Rect dragBounds = feedback.dragBounds;
118 addBaselineMatch(feedback.dragBaseline, y1, rowMatches, max, row, rowY);
169 feedback.tooltip = columnDescription + '\n' + rowDescription;
172 feedback.invalidTarget = mColumnMatch == null || mRowMatch == null;
254 feedback.tooltip = description.toString();
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
download_feedback_service.cc 198 DownloadFeedback* feedback = local
204 active_feedback_.push_back(feedback);
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-1085.js 31 // This test relies on specific type feedback for Math.min.
  /external/v8/test/mjsunit/compiler/
regress-1085.js 31 // This test relies on specific type feedback for Math.min.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelineHandler.java 271 private boolean checkCycle(DropFeedback feedback, Match match, boolean vertical) {
287 feedback.errorMessage = "Constraint creates a cycle: " + desc;
299 * @param feedback the drop feedback state
301 public void checkCycles(DropFeedback feedback) {
303 feedback.errorMessage = null;
307 if (checkCycle(feedback, mCurrentTopMatch, true /* vertical */)
308 || checkCycle(feedback, mCurrentBottomMatch, true)) {
311 if (checkCycle(feedback, mCurrentLeftMatch, false)
312 || checkCycle(feedback, mCurrentRightMatch, false))
    [all...]
MoveHandler.java 173 * @param feedback the feedback handler
179 public void updateMove(DropFeedback feedback, IDragElement[] elements,
236 int baseline = feedback.dragBaseline;
297 checkCycles(feedback);
ResizeHandler.java 176 * @param feedback the feedback handler
181 public void updateResize(DropFeedback feedback, INode child, Rect newBounds,
263 checkCycles(feedback);
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender.cc 5 // The |FeedbackSender| object stores the user feedback to spellcheck
6 // suggestions in a |Feedback| object.
17 // All feedback is initially pending. When a user acts upon a misspelling such
19 // then the feedback for this misspelling is finalized. All finalized feedback
20 // is erased after being sent to the spelling service. Pending feedback is kept
27 // displayed to the user and sends the current state of user feedback to the
58 // The default URL where feedback data is sent.
61 // The minimum number of seconds between sending batches of feedback.
74 // Returns a pending feedback data structure for the spellcheck |result| an
384 std::string feedback; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/feedback_private/
feedback_private_api.cc 101 const FeedbackInfo &feedback_info = params->feedback;
116 // Populate feedback data.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-108296.js 46 // Ensure that both branches of ternary operator have monomorphic type feedback.
regress-1257.js 52 // because it has no type feedback.
regress-252797.js 30 // The type feedback oracle had a bug when retrieving the map from an IC
  /external/v8/test/mjsunit/regress/
regress-108296.js 46 // Ensure that both branches of ternary operator have monomorphic type feedback.
regress-1257.js 52 // because it has no type feedback.

Completed in 336 milliseconds

1 23 4 5 6