OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ContextStorage
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/awt/org/apache/harmony/awt/
ContextThreadGroup.java
25
final
ContextStorage
context = new
ContextStorage
();
ComponentInternals.java
52
return
ContextStorage
.getComponentInternals();
60
ContextStorage
.setComponentInternals(internals);
ContextStorage.java
31
public final class
ContextStorage
{
36
private static final
ContextStorage
globalContext = new
ContextStorage
();
115
private static
ContextStorage
getCurrentContext() {
/frameworks/base/awt/java/awt/
GraphicsEnvironment.java
27
import org.apache.harmony.awt.
ContextStorage
;
52
synchronized (
ContextStorage
.getContextLock()) {
53
if (
ContextStorage
.getGraphicsEnvironment() == null) {
55
ContextStorage
.setGraphicsEnvironment(new HeadlessGraphicsEnvironment());
60
ContextStorage
.setGraphicsEnvironment(g2df
61
.createGraphicsEnvironment(
ContextStorage
.getWindowFactory()));
65
return
ContextStorage
.getGraphicsEnvironment();
Toolkit.java
47
import org.apache.harmony.awt.
ContextStorage
;
119
private final Synchronizer synchronizer =
ContextStorage
.getSynchronizer();
222
ContextStorage
.getSynchronizer().lock();
236
ContextStorage
.getSynchronizer().unlock();
321
synchronized (
ContextStorage
.getContextLock()) {
322
if (
ContextStorage
.shutdownPending()) {
325
Toolkit defToolkit =
ContextStorage
.getDefaultToolkit();
333
ContextStorage
.setDefaultToolkit(defToolkit);
427
ContextStorage
.setWTK(wtk);
[
all
...]
Completed in 30 milliseconds