OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iconRecord
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SkbTemplate.java
129
KeyIconRecord
iconRecord
= new KeyIconRecord();
130
iconRecord
.icon = icon;
131
iconRecord
.iconPopup = iconPopup;
132
iconRecord
.keyCode = keyCode;
140
mKeyIconRecords.add(pos,
iconRecord
);
147
KeyIconRecord
iconRecord
= mKeyIconRecords.get(pos);
148
if (
iconRecord
.keyCode < keyCode) {
152
if (
iconRecord
.keyCode == keyCode) {
153
return
iconRecord
.icon;
164
KeyIconRecord
iconRecord
= mKeyIconRecords.get(pos)
[
all
...]
/external/webkit/Source/WebCore/loader/icon/
PageURLRecord.h
39
class
IconRecord
;
66
void setIconRecord(PassRefPtr<
IconRecord
>);
67
IconRecord
*
iconRecord
() { return m_iconRecord.get(); }
84
RefPtr<
IconRecord
> m_iconRecord;
IconDatabase.cpp
36
#include "
IconRecord
.h"
185
// Clear the in-memory record of every
IconRecord
, anything waiting to be read from disk, and anything waiting to be written to disk
196
// Clear the iconURL ->
IconRecord
map
254
IconRecord
*
iconRecord
= pageRecord->
iconRecord
();
259
if (!m_iconURLImportComplete && !
iconRecord
)
263
ASSERT(
iconRecord
|| m_retainedPageURLs.contains(pageURLOriginal));
265
if (!
iconRecord
)
268
// If it's a new
IconRecord
object that doesn't have its imageData set yet
[
all
...]
Completed in 496 milliseconds