Searched defs:CONTEXT (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/v8/src/
H A Dvariables.h47 CONTEXT, enumerator in enum:v8::internal::Variable::Location
97 bool IsContextSlot() const { return location_ == CONTEXT; }
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_bsdi.h91 #define CONTEXT(_th) ((_th)->md.context) macro
96 if (setjmp(CONTEXT(_thread))) { \
103 if (!setjmp(CONTEXT(_thread))) { \
115 longjmp(CONTEXT(_thread), 1); \
H A D_nec.h67 #define CONTEXT(_thread) (&(_thread)->md.context) macro
77 getcontext(CONTEXT(thread)); \
78 CONTEXT(thread)->uc_stack.ss_sp = (char*) (thread)->stack->stackBottom; \
79 CONTEXT(thread)->uc_stack.ss_size = (thread)->stack->stackSize; \
81 makecontext(CONTEXT(thread), _main, 0); \
85 if (!getcontext(CONTEXT(_thread))) { \
95 ucontext_t *uc = CONTEXT(_thread); \
H A D_nextstep.h86 #define CONTEXT(_th) ((_th)->md.context) macro
114 if (setjmp(CONTEXT(_thread))) { \
121 if (!setjmp(CONTEXT(_thread))) { \
133 longjmp(CONTEXT(_thread), 1); \
H A D_rhapsody.h72 #define CONTEXT(_th) ((_th)->md.context) macro
82 if (setjmp(CONTEXT(_thread))) { \
89 if (!setjmp(CONTEXT(_thread))) { \
101 longjmp(CONTEXT(_thread), 1); \
H A D_sony.h58 #define CONTEXT(_thread) (&(_thread)->md.context) macro
68 getcontext(CONTEXT(_thread)); \
69 CONTEXT(_thread)->uc_stack.ss_sp = (char*) (_thread)->stack->stackBottom; \
70 CONTEXT(_thread)->uc_stack.ss_size = (_thread)->stack->stackSize; \
72 makecontext(CONTEXT(_thread), _main, 0); \
76 if (!getcontext(CONTEXT(_thread))) { \
86 ucontext_t *uc = CONTEXT(_thread); \
H A D_aix.h118 #define CONTEXT(_th) ((_th)->md.jb) macro
119 #define SAVE_CONTEXT(_th) _setjmp(CONTEXT(_th))
120 #define GOTO_CONTEXT(_th) _longjmp(CONTEXT(_th), 1)
132 if (setjmp(CONTEXT(_thread))) { \
139 if (!setjmp(CONTEXT(_thread))) { \
151 longjmp(CONTEXT(_thread), 1); \
H A D_darwin.h110 #define CONTEXT(_th) ((_th)->md.context) macro
120 if (setjmp(CONTEXT(_thread))) { \
127 if (!setjmp(CONTEXT(_thread))) { \
139 longjmp(CONTEXT(_thread), 1); \
H A D_dgux.h78 #define CONTEXT(_th) ((_th)->md.context) macro
86 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
91 if (!_SETJMP(CONTEXT(_thread))) { \
103 _LONGJMP(CONTEXT(_thread), 1); \
H A D_freebsd.h108 #define CONTEXT(_th) ((_th)->md.context) macro
119 if (sigsetjmp(CONTEXT(_thread), 1)) { \
126 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
138 siglongjmp(CONTEXT(_thread), 1); \
H A D_hpux.h100 #define CONTEXT(_th) ((_th)->md.jb) macro
104 #define SAVE_CONTEXT(_th) _setjmp(CONTEXT(_th))
105 #define GOTO_CONTEXT(_th) _longjmp(CONTEXT(_th), 1)
112 if (_setjmp(CONTEXT(_thread))) (*_main)(); \
118 if (!_setjmp(CONTEXT(_thread))) { \
130 _longjmp(CONTEXT(_thread), 1); \
H A D_linux.h165 #define CONTEXT(_th) ((_th)->md.context) macro
314 if (sigsetjmp(CONTEXT(_thread), 1)) { \
328 (void) sigsetjmp(CONTEXT(_thread), 1); \
341 if (sigsetjmp(CONTEXT(_thread), 1)) { \
353 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
365 siglongjmp(CONTEXT(_thread), 1); \
H A D_ncr.h89 #define CONTEXT(_th) ((_th)->md.context) macro
97 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
102 if (!_SETJMP(CONTEXT(_thread))) { \
114 _LONGJMP(CONTEXT(_thread), 1); \
H A D_netbsd.h96 #define CONTEXT(_th) ((_th)->md.context) macro
104 sigsetjmp(CONTEXT(_thread), 1); \
105 CONTEXT(_thread)[2] = (unsigned char*) ((_sp) - 128); \
106 CONTEXT(_thread)[0] = (int) _main; \
109 #define _MD_GET_SP(_thread) CONTEXT(_thread)[2]
114 sigsetjmp(CONTEXT(_thread), 1); \
115 CONTEXT(_thread)[2] = (unsigned char*) ((_sp) - 128); \
116 CONTEXT(_thread)[3] = (int) _main; \
117 CONTEXT(_thread)[4] = (int) _main + 4; \
120 #define _MD_GET_SP(_thread) CONTEXT(_threa
[all...]
H A D_nto.h93 #define CONTEXT(_th) ((_th)->md.context) macro
102 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
107 if (!_SETJMP(CONTEXT(_thread))) { \
119 _LONGJMP(CONTEXT(_thread), 1); \
H A D_openbsd.h87 #define CONTEXT(_th) ((_th)->md.context) macro
110 if (sigsetjmp(CONTEXT(_thread), 1)) { \
117 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
129 siglongjmp(CONTEXT(_thread), 1); \
H A D_qnx.h85 #define CONTEXT(_th) ((_th)->md.context) macro
93 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
98 if (!_SETJMP(CONTEXT(_thread))) { \
110 _LONGJMP(CONTEXT(_thread), 1); \
H A D_reliantunix.h99 #define CONTEXT(_thread) (&(_thread)->md.context) macro
190 _GETCONTEXT(CONTEXT(thread)); \
192 CONTEXT(thread)->uc_stack.ss_sp = thread->stack->stackBottom; \
193 CONTEXT(thread)->uc_stack.ss_size = thread->stack->stackSize; \
194 CONTEXT(thread)->uc_mcontext.gpregs[CXT_SP] = ((unsigned long)_sp - 128) & 0xfffffff8; \
195 CONTEXT(thread)->uc_mcontext.gpregs[CXT_T9] = _main; \
196 CONTEXT(thread)->uc_mcontext.gpregs[CXT_EPC] = _main; \
197 CONTEXT(thread)->uc_mcontext.gpregs[CXT_RA] = 0; \
206 if (!_GETCONTEXT(CONTEXT(_thread))) { \
229 ucontext_t *uc = CONTEXT(_threa
[all...]
H A D_scoos.h82 #define CONTEXT(_th) ((_th)->md.jb) macro
87 if (sigsetjmp(CONTEXT(_thread),1)) { \
94 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
106 siglongjmp(CONTEXT(_thread), 1); \
H A D_sunos4.h85 #define CONTEXT(_th) ((_th)->md.context) macro
104 if (!setjmp(CONTEXT(_thread))) { \
116 longjmp(CONTEXT(_thread), 1); \
H A D_unixware.h78 #define CONTEXT(_th) ((_th)->md.context) macro
86 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
91 if (!_SETJMP(CONTEXT(_thread))) { \
103 _LONGJMP(CONTEXT(_thread), 1); \
H A D_openvms.h160 #define CONTEXT(_th) ((_th)->md.context) macro
173 if (setjmp(CONTEXT(_thread))) { \
181 if (!setjmp(CONTEXT(_thread))) { \
193 longjmp(CONTEXT(_thread), 1); \
H A D_osf1.h103 #define CONTEXT(_th) ((_th)->md.context) macro
111 if (setjmp(CONTEXT(_thread))) { \
119 if (!setjmp(CONTEXT(_thread))) { \
131 longjmp(CONTEXT(_thread), 1); \
H A D_solaris.h222 #define CONTEXT(_thread) (&(_thread)->md.context) macro
496 #define CONTEXT(_thread) (_thread)->md.context
516 #define CONTEXT(_thread) (&(_thread)->md.context)
550 if (!setjmp(CONTEXT(_thread))) { \
561 longjmp(CONTEXT(_newThread), 1); \
570 ucontext_t *uc = CONTEXT(_thread); \
590 if (!getcontext(CONTEXT(_thread))) { \
603 ucontext_t *uc = CONTEXT(_newThread); \
618 if (setjmp(CONTEXT(_thread))) _main(); \
623 if (!setjmp(CONTEXT(_threa
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DTemplateTranslator.java93 public static final JavaExpression CONTEXT = symbol("context"); field in class:TemplateTranslator
98 public static final JavaExpression RESOURCE_LOADER = callOn(CONTEXT, "getResourceLoader");
169 java.writeStatement(callOn(CONTEXT, "registerMacro", string(name), symbol));
201 .writeStatement(declare(Type.DATA_CONTEXT, "dataContext", callOn(CONTEXT, "getDataContext")));
202 java.writeStatement(callOn(CONTEXT, "pushExecutionContext", THIS_TEMPLATE));
204 java.writeStatement(callOn(CONTEXT, "popExecutionContext"));
226 java.writeStatement(callOn(CONTEXT, "writeUnescaped", string(content)));
252 java.writeStatement(callOn(CONTEXT, "writeUnescaped", expressionTranslator
288 java.writeStatement(callOn(CONTEXT, "writeEscaped", call("getNodeName", readNode)));
513 java.writeStatement(callOn(CONTEXT, "writeUnescape
[all...]

Completed in 4322 milliseconds

12