OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_cacheMap
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/JavaScriptCore/bytecode/
EvalCodeCache.h
53
evalExecutable =
m_cacheMap
.get(evalSource.impl()).get();
61
if (!inStrictContext && evalSource.length() < maxCacheableSourceLength && (*scopeChain->begin())->isVariableObject() &&
m_cacheMap
.size() < maxCacheEntries)
62
m_cacheMap
.set(evalSource.impl(), WriteBarrier<EvalExecutable>(exec->globalData(), owner, evalExecutable));
68
bool isEmpty() const { return
m_cacheMap
.isEmpty(); }
77
EvalCacheMap
m_cacheMap
;
CodeBlock.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
RegExpCache.cpp
37
pair<RegExpCacheMap::iterator, bool> result =
m_cacheMap
.add(RegExpKey(flags, patternString), 0);
43
return create(patternString, flags,
m_cacheMap
.end());
63
m_cacheMap
.remove(RegExpKey(patternKeyArray[m_nextKeyToEvict].flagsValue, patternKeyArray[m_nextKeyToEvict].pattern));
RegExpCache.h
60
RegExpCacheMap
m_cacheMap
;
Completed in 50 milliseconds