/external/chromium_org/third_party/pexpect/ |
D | screen.py | 46 def constrain (n, min, max): function 107 rs = constrain (rs, 1, self.rows) 108 re = constrain (re, 1, self.rows) 109 cs = constrain (cs, 1, self.cols) 110 ce = constrain (ce, 1, self.cols) 157 r = constrain (r, 1, self.rows) 158 c = constrain (c, 1, self.cols) 176 r = constrain (r, 1, self.rows) 177 c = constrain (c, 1, self.cols) 188 r = constrain (r, 1, self.rows) [all …]
|
/external/lldb/test/pexpect-2.4/ |
D | screen.py | 30 def constrain (n, min, max): function 91 rs = constrain (rs, 1, self.rows) 92 re = constrain (re, 1, self.rows) 93 cs = constrain (cs, 1, self.cols) 94 ce = constrain (ce, 1, self.cols) 141 r = constrain (r, 1, self.rows) 142 c = constrain (c, 1, self.cols) 160 r = constrain (r, 1, self.rows) 161 c = constrain (c, 1, self.cols) 172 r = constrain (r, 1, self.rows) [all …]
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
D | PopupZoomer.java | 161 private static float constrain(float amount, float low, float high) { in constrain() method in PopupZoomer 165 private static int constrain(int amount, int low, int high) { in constrain() method in PopupZoomer 269 mPopupScrollX = constrain(mPopupScrollX - x, mMinScrollX, mMaxScrollX); in scroll() 270 mPopupScrollY = constrain(mPopupScrollY - y, mMinScrollY, mMaxScrollY); in scroll() 406 mPopupScrollX = constrain(mPopupScrollX, mMinScrollX, mMaxScrollX); in initDimensions() 407 mPopupScrollY = constrain(mPopupScrollY, mMinScrollY, mMaxScrollY); in initDimensions() 434 time = constrain(time, 0, 1); in onDraw() 493 int alpha = constrain((int) (fractionAnimation * 255), 0, 255); in onDraw()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
D | Dialog.js | 171 positionX = Number.constrain(positionX, 0, container.offsetWidth - element.offsetWidth); 174 positionY = Number.constrain(positionY, 0, container.offsetHeight - element.offsetHeight);
|
D | SuggestBox.js | 223 index = Number.constrain(index, 0, this._length - 1);
|
D | SplitView.js | 606 … return Number.constrain(sidebarSize, preferredSidebarSize, totalSize - preferredMainSize); 613 return Number.constrain(sidebarSize, minSidebarSize, totalSize - minMainSize);
|
D | UIUtils.js | 966 values[i] = Number.constrain(values[i] + deltas[i], params[i].from, params[i].to); 968 values[i] = Number.constrain(values[i] + deltas[i], params[i].to, params[i].from);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
D | TimelinePowerOverview.js | 47 var start = Number.constrain(times.upperBound(minTime) - 1, 0, last); 50 var end = Number.constrain(times.lowerBound(maxTime), 0, last);
|
D | CountersGraph.js | 339 … this._minimumIndex = Number.constrain(this.times.upperBound(start) - 1, 0, this.times.length - 1); 342 this._maximumIndex = Number.constrain(this.times.lowerBound(end), 0, this.times.length - 1);
|
D | PaintProfilerView.js | 218 var stepLeft = Number.constrain(barLeft * this._samplesPerBar, 0, this._log.length - 1); 219 var stepRight = Number.constrain(barRight * this._samplesPerBar, 0, this._log.length - 1);
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
D | proxy_settings.css | 5 /* These additional styles constrain the size of the proxy page to the height of
|
/external/arduino/hardware/arduino/cores/arduino/ |
D | wiring.h | 78 #define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt))) macro
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
D | OverviewGrid.js | 438 left = Number.constrain(left, 0, 1 - newWindowSize); 441 right = Number.constrain(right, newWindowSize, 1);
|
D | FlameChart.js | 632 …shift = Number.constrain(shift, this._minimumBoundary - bounds.left, this._totalTime + this._minim… 653 …bounds.left = Number.constrain(bounds.left, this._minimumBoundary, this._totalTime + this._minimum… 654 …bounds.right = Number.constrain(bounds.right, this._minimumBoundary, this._totalTime + this._minim…
|
/external/llvm/test/MC/ARM/ |
D | elf-reloc-02.ll | 7 ;; The args to llc are there to constrain the codegen only.
|
D | elf-reloc-01.ll | 7 ;; The args to llc are there to constrain the codegen only.
|
D | elf-reloc-03.ll | 7 ;; The args to llc are there to constrain the codegen only.
|
/external/jemalloc/include/jemalloc/internal/ |
D | size_classes.sh | 241 * cannot support more than 256 small size classes. Further constrain NBINS to
|
/external/checkpolicy/ |
D | policy_scan.l | 72 constrain { return(CONSTRAIN); }
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
D | ThemeMac.mm | 409 // Buttons really only constrain height. They respect width. 466 …zoomedSize.setWidth(zoomedRect.width()); // Buttons don't ever constrain width, so the zoomed widt… 704 …zoomedSize.setWidth(zoomedRect.width()); // Buttons don't ever constrain width, so the zoomed widt…
|
/external/valgrind/main/helgrind/ |
D | README_MSMProp2.txt | 138 The effect of a state Read(VTS,LS) is to constrain all later-observed
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/ |
D | CodeMirrorTextEditor.js | 402 columnNumber = Number.constrain(charNumber, 0, lineLength); 466 columnNumber: Number.constrain(columnNumber, 0, lineLength) 1093 lineNumber = Number.constrain(lineNumber, 0, this._codeMirror.lineCount() - 1); 1096 … columnNumber = Number.constrain(columnNumber, 0, this._codeMirror.getLine(lineNumber).length);
|
/external/libsepol/tests/policies/test-cond/ |
D | refpolicy-base.conf | 1638 constrain process transition 1642 constrain process transition 1646 constrain process dyntransition 1648 constrain { dir file lnk_file sock_file fifo_file chr_file blk_file } { create relabelto relabelfro… 1650 constrain { tcp_socket udp_socket rawip_socket netlink_socket packet_socket unix_stream_socket unix…
|
/external/llvm/docs/TableGen/ |
D | LangIntro.rst | 43 help interface designers constrain the input that they allow. Every `value 73 the ``list`` type, for example, to constrain the elements of the list to a
|
/external/qemu/distrib/jpeg-6b/ |
D | wizard.doc | 25 wide compatibility of low-quality files, you can constrain the scaled
|