OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rowEnd
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageDecoder.cpp
168
Vector<unsigned char>::const_iterator
rowEnd
= rowBegin + (xEnd - xBegin);
184
for (; rowBegin !=
rowEnd
; ++rowBegin, ++currentAddress) {
194
for (; rowBegin !=
rowEnd
; ++rowBegin, ++currentAddress) {
/cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp
678
int
rowEnd
= 0;
697
rowEnd
= rowStart;
701
while ((isRowEnd) && (
rowEnd
< numHorizontalLines)) {
704
if (mCandidateColors[
rowEnd
][j] != NULL) {
709
++
rowEnd
;
713
rowEnd
--;
715
if ((isRowEnd) && (
rowEnd
== numHorizontalLines)) {
716
rowEnd
--;
719
ALOGV("
rowEnd
is %d",
rowEnd
);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java
646
int
rowEnd
= maxField.getInt(rowInterval);
652
view.rowSpan =
rowEnd
- row;
[
all
...]
/frameworks/base/core/java/android/widget/
GridView.java
440
int
rowEnd
= -1;
447
rowEnd
= mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
448
rowStart = Math.max(0,
rowEnd
- numColumns + 1);
454
final View sel = makeRow(mStackFromBottom ?
rowEnd
: rowStart, topSelectionPixel, true);
471
fillDown(
rowEnd
+ numColumns, referenceView.getBottom() + verticalSpacing);
693
int
rowEnd
= -1;
700
rowEnd
= mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
701
rowStart = Math.max(0,
rowEnd
- numColumns + 1);
711
sel = makeRow(mStackFromBottom ?
rowEnd
: rowStart, selectedTop, true);
724
fillDown(
rowEnd
+ numColumns, referenceView.getBottom() + verticalSpacing)
[
all
...]
Completed in 153 milliseconds