OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyEntry
(Results
1 - 7
of
7
) sorted by null
/external/chromium/net/proxy/
proxy_config_service_win.h
53
class
KeyEntry
;
54
typedef std::vector<
KeyEntry
*> KeyEntryList;
59
// Creates a new
KeyEntry
and appends it to |keys_to_watch_|. If the key
proxy_config_service_win.cc
40
class ProxyConfigServiceWin::
KeyEntry
{
126
scoped_ptr<
KeyEntry
> entry(new
KeyEntry
);
/external/chromium_org/net/proxy/
proxy_config_service_win.h
54
class
KeyEntry
;
55
typedef std::vector<
KeyEntry
*> KeyEntryList;
60
// Creates a new
KeyEntry
and appends it to |keys_to_watch_|. If the key
proxy_config_service_win.cc
40
class ProxyConfigServiceWin::
KeyEntry
{
126
scoped_ptr<
KeyEntry
> entry(new
KeyEntry
);
/external/llvm/include/llvm/ADT/
ScopedHashTable.h
211
ScopedHashTableVal<K, V> *&
KeyEntry
= TopLevelMap[Key];
212
KeyEntry
= ValTy::Create(S->getLastValInScope(),
KeyEntry
, Key, Val,
214
S->setLastValInScope(
KeyEntry
);
241
ScopedHashTableVal<K, V> *&
KeyEntry
= HT.TopLevelMap[ThisEntry->getKey()];
242
assert(
KeyEntry
== ThisEntry && "Scope imbalance!");
243
KeyEntry
= ThisEntry->getNextForKey();
/frameworks/base/services/input/
InputDispatcher.h
472
struct
KeyEntry
: EventEntry {
494
KeyEntry
(nsecs_t eventTime,
502
virtual ~
KeyEntry
();
597
KeyEntry
*
keyEntry
;
710
bool trackKey(const
KeyEntry
* entry, int32_t action, int32_t flags);
775
ssize_t findKeyMemento(const
KeyEntry
* entry) const;
778
void addKeyMemento(const
KeyEntry
* entry, int32_t flags);
870
bool isAppSwitchKeyEventLocked(
KeyEntry
*
keyEntry
);
[
all
...]
InputDispatcher.cpp
348
KeyEntry
* typedEntry = static_cast<
KeyEntry
*>(mPendingEvent);
410
KeyEntry
*
keyEntry
= static_cast<
KeyEntry
*>(entry);
411
if (isAppSwitchKeyEventLocked(
keyEntry
)) {
412
if (
keyEntry
->action == AKEY_EVENT_ACTION_DOWN) {
414
} else if (
keyEntry
->action == AKEY_EVENT_ACTION_UP) {
419
mAppSwitchDueTime =
keyEntry
->eventTime + APP_SWITCH_TIMEOUT;
557
bool InputDispatcher::isAppSwitchKeyEventLocked(
KeyEntry
* keyEntry)
[
all
...]
Completed in 601 milliseconds