Searched refs:oh (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
D | ToPackedGrayFilter.java | 86 int oh = mOHeight; in convertInputFormat() local 93 oh = h; in convertInputFormat() 99 ow = Math.max(ow, oh); in convertInputFormat() 100 oh = ow * h / w; in convertInputFormat() 102 oh = Math.max(ow, oh); in convertInputFormat() 103 ow = oh * w / h; in convertInputFormat() 107 return ImageFormat.create(ow, oh, in convertInputFormat() 123 int oh = outputFormat.getHeight(); in process() local 124 checkOutputDimensions(ow, oh); in process() 129 tempFrameFormat.setDimensions(ow / 4, oh); in process()
|
/frameworks/base/core/java/android/preference/ |
D | PreferenceActivity.java | 1188 Header oh = from.get(j); in findBestMatchingHeader() local 1189 if (cur == oh || (cur.id != HEADER_ID_UNDEFINED && cur.id == oh.id)) { in findBestMatchingHeader() 1192 matches.add(oh); in findBestMatchingHeader() 1196 if (cur.fragment.equals(oh.fragment)) { in findBestMatchingHeader() 1197 matches.add(oh); in findBestMatchingHeader() 1200 if (cur.intent.equals(oh.intent)) { in findBestMatchingHeader() 1201 matches.add(oh); in findBestMatchingHeader() 1204 if (cur.title.equals(oh.title)) { in findBestMatchingHeader() 1205 matches.add(oh); in findBestMatchingHeader() 1214 Header oh = matches.get(j); in findBestMatchingHeader() local [all …]
|
/frameworks/base/core/java/android/webkit/ |
D | WebView.java | 2145 protected void onSizeChanged(int w, int h, int ow, int oh) { in onSizeChanged() argument 2146 super.onSizeChanged(w, h, ow, oh); in onSizeChanged() 2147 mProvider.getViewDelegate().onSizeChanged(w, h, ow, oh); in onSizeChanged()
|
D | WebViewProvider.java | 327 public void onSizeChanged(int w, int h, int ow, int oh); in onSizeChanged() argument
|
D | ZoomManager.java | 921 public void onSizeChanged(int w, int h, int ow, int oh) {
|
D | WebViewClassic.java | 5625 public void onSizeChanged(int w, int h, int ow, int oh) { in onSizeChanged() argument 5634 mZoomManager.onSizeChanged(w, h, ow, oh); in onSizeChanged()
|