OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:headerCount
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/platform/network/cf/
ResourceResponseCFNet.cpp
126
CFIndex
headerCount
= CFDictionaryGetCount(headers.get());
127
Vector<const void*, 128> keys(
headerCount
);
128
Vector<const void*, 128> values(
headerCount
);
130
for (int i = 0; i <
headerCount
; ++i)
ResourceRequestCFNet.cpp
178
CFIndex
headerCount
= CFDictionaryGetCount(headers);
179
Vector<const void*, 128> keys(
headerCount
);
180
Vector<const void*, 128> values(
headerCount
);
182
for (int i = 0; i <
headerCount
; ++i)
/cts/tests/tests/widget/src/android/widget/cts/
ExpandableListTester.java
135
final int
headerCount
= mExpandableListView.getHeaderViewsCount();
137
expandGroup(groupIndex, groupIndex +
headerCount
);
143
final int
headerCount
= mExpandableListView.getHeaderViewsCount();
145
for (int i=0; i<
headerCount
; i++) {
154
int expectedFlatPosition =
headerCount
+ groupIndex;
168
mExpandableListView.getExpandableListPosition(
headerCount
+ groupCount + i));
175
final int
headerCount
= mExpandableListView.getHeaderViewsCount();
180
int expectedFlatPosition =
headerCount
+ groupIndex + 1 + childIndex;
229
final int
headerCount
= mExpandableListView.getHeaderViewsCount();
234
int childFlatPosition =
headerCount
+ groupIndex + 1 + childIndex
[
all
...]
/packages/apps/Email/src/com/android/email/activity/setup/
AccountSettings.java
353
int
headerCount
= mAccountListHeaders.length;
354
for (int index = 0; index <
headerCount
; index++) {
424
int
headerCount
= c.getCount();
425
result = new Header[
headerCount
];
Completed in 2006 milliseconds