HomeSort by relevance Sort by last modified time
    Searched refs:CONTEXT (Results 1 - 25 of 28) sorted by null

1 2

  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 93 public static final JavaExpression CONTEXT = symbol("context");
98 public static final JavaExpression RESOURCE_LOADER = callOn(CONTEXT, "getResourceLoader");
169 java.writeStatement(callOn(CONTEXT, "registerMacro", string(name), symbol));
199 java.startMethod(RENDER_METHOD, "context");
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", expressionTranslato
    [all...]
EscapingEvaluator.java 179 // context.isEscapingFunction("name") ? EscapeMode.ESCAPE_IS_CONSTANT : EscapeMode.ESCAPE_NONE
181 JavaExpression.Type.BOOLEAN, TemplateTranslator.CONTEXT, "isEscapingFunction",
192 callOn(JavaExpression.Type.BOOLEAN, TemplateTranslator.CONTEXT, "isEscapingFunction",
199 * "(false || context.isEscapingFunction())" it returns "context.isEscapingFunction()".
ExpressionTranslator.java 347 // Outputs: context.executeFunction("myfunc", args...);
353 return callOn(Type.VALUE, TemplateTranslator.CONTEXT, "executeFunction", args);
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
AlignmentTest.java 20 import android.content.Context;
37 private static Context CONTEXT;
45 Button result = new Button(CONTEXT);
59 TextView result = new TextView(CONTEXT);
68 EditText result = new EditText(CONTEXT);
77 public static ViewGroup create(Context context1) {
78 CONTEXT = context1;
  /external/v8/src/
variables.cc 85 return s != NULL && s->type() == Slot::CONTEXT;
scopes.cc 161 // This scope's arguments shadow (if present) is context-allocated if an inner
178 new Slot(arguments_shadow_, Slot::CONTEXT, arguments_shadow_index));
223 current = current->context()->closure();
229 ASSERT(current->context()->IsGlobalContext());
231 } while (!current->context()->IsGlobalContext());
310 // Check context slot lookup.
316 var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
322 // ".arguments" must be present in context slots.
342 var->set_rewrite(new Slot(var, Slot::CONTEXT, index));
483 void Scope::AllocateVariables(Handle<Context> context)
    [all...]
scopeinfo.cc 69 // not true for context-allocated locals: Some of them
74 // Thus, we first collect the context-allocated locals, and then
75 // sort them by context slot index before adding them to the
98 case Slot::CONTEXT:
115 ASSERT(heap_locals[i]->AsSlot()->index() - Context::MIN_CONTEXT_SLOTS ==
117 ASSERT(heap_locals[i]->AsSlot()->index() - Context::MIN_CONTEXT_SLOTS ==
127 // Add the function context slot, if present.
134 var->AsSlot()->type() == Slot::CONTEXT) {
136 // Note that we must not find the function name in the context slot
139 // get the correct number of context slots
    [all...]
platform-cygwin.cc 703 // Context used for sampling the register state of the profiled thread.
704 CONTEXT context;
705 memset(&context, 0, sizeof(context));
715 context.ContextFlags = CONTEXT_FULL;
716 if (GetThreadContext(profiled_thread, &context) != 0) {
718 sample->pc = reinterpret_cast<Address>(context.Rip);
719 sample->sp = reinterpret_cast<Address>(context.Rsp);
720 sample->fp = reinterpret_cast<Address>(context.Rbp)
    [all...]
platform-win32.cc     [all...]
prettyprinter.cc 302 case Slot::CONTEXT:
303 Print("context[%d]", node->index());
1305 case Slot::CONTEXT:
1306 AddAttribute("type", "CONTEXT");
    [all...]
full-codegen.cc 417 case Slot::CONTEXT:
484 // In an effect context, the true and the false case branch to the
535 // actually exists in the local context.
722 if (context()->IsTest()) ForwardBailoutToChild(expr);
723 context()->HandleExpression(right);
764 context()->EmitLogicalLeft(expr, &eval_right, &done);
768 if (context()->IsTest()) ForwardBailoutToChild(expr);
769 context()->HandleExpression(expr->right());
850 ASSERT(context()->IsTest());
1023 // Both runtime calls return the new context in both the context and th
    [all...]
ast.h 210 enum Context {
211 // Not assigned a context yet, or else will not be visited during
1043 // Node for constructing a context extension object for a catch block.
1044 // The catch context extension object has one property, the catch
    [all...]
liveedit.cc 54 // are element setters causing exceptions and the debugger context has none
774 if (slot != NULL && slot->type() == Slot::CONTEXT) {
854 // It works in context of ZoneScope.
975 virtual void EnterContext(Context* context) {
985 virtual void LeaveContext(Context* context) {
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 140 jobject context, jint attribute, jintArray value) {
141 if (display == NULL || context == NULL || value == NULL
147 EGLContext ctx = getContext(_env, context);
433 static jboolean jni_eglDestroyContext(JNIEnv *_env, jobject _this, jobject display, jobject context) {
434 if (display == NULL || context == NULL) {
439 EGLContext ctx = getContext(_env, context);
466 static jboolean jni_eglMakeCurrent(JNIEnv *_env, jobject _this, jobject display, jobject draw, jobject read, jobject context) {
467 if (display == NULL || draw == NULL || read == NULL || context == NULL) {
474 EGLContext ctx = getContext(_env, context);
529 #define CONTEXT "Ljavax/microedition/khronos/egl/EGLContext;
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
MachineStackMarker.cpp 327 typedef CONTEXT PlatformThreadRegisters;
369 return sizeof(CONTEXT);
  /external/srec/tools/grxmlcompile/
vocab.cpp 36 #define GENERIC CONTEXT "#"
  /external/valgrind/tsan/
ts_pin.cc 69 static void DumpEvent(CONTEXT *ctx, EventType type, int32_t tid, uintptr_t pc,
647 static void DumpEvent(CONTEXT *ctx, EventType type, int32_t tid, uintptr_t pc,
723 #define WRAP_PARAM4 THREADID tid, ADDRINT pc, CONTEXT *ctx, \
733 static uintptr_t CallFun4(CONTEXT *ctx, THREADID tid,
748 static uintptr_t CallFun6(CONTEXT *ctx, THREADID tid,
    [all...]
  /external/tcpdump/
print-snmp.c 126 * Context-specific ASN.1 types for the SNMP PDUs and their tags
128 const char *Context[] = {
156 * Context-specific ASN.1 types for the SNMP Exceptions and their tags
224 * Ties together the preceding Universal, Application, Context, and Private
237 defineCLASS(Context),
238 #define CONTEXT 2
591 case CONTEXT:
637 case CONTEXT:
823 Class[CONTEXT].Id[elem->id], elem->asnlen);
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 116 // o cp: our context
155 // Possibly allocate a local context.
156 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
158 Comment cmnt(masm_, "[ Allocate local context");
168 // Context is returned in both r0 and cp. It replaces the context
171 // Copy any necessary parameters into the context.
175 if (slot != NULL && slot->type() == Slot::CONTEXT) {
180 // Store it in the context.
181 __ mov(r1, Operand(Context::SlotOffset(slot->index())))
1116 Register context = cp; local
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 105 // o esi: our context
126 __ push(esi); // Callee's context.
143 // Possibly allocate a local context.
144 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
146 Comment cmnt(masm_, "[ Allocate local context");
156 // Context is returned in both eax and esi. It replaces the context
160 // Copy parameters into context if necessary.
164 if (slot != NULL && slot->type() == Slot::CONTEXT) {
169 // Store it in the context
1061 Register context = esi; local
1124 Register context = esi; local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 105 // o rsi: our context
125 __ push(rsi); // Callee's context.
142 // Possibly allocate a local context.
143 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
145 Comment cmnt(masm_, "[ Allocate local context");
155 // Context is returned in both rax and rsi. It replaces the context
159 // Copy any necessary parameters into the context.
163 if (slot != NULL && slot->type() == Slot::CONTEXT) {
168 // Store it in the context
1072 Register context = rsi; local
1136 Register context = rsi; local
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-win.c 2287 CONTEXT context; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/cp/
cp-tree.h 1687 tree context; member in struct:lang_decl_u4::full_lang_decl
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/cp/
cp-tree.h 1688 tree context; member in struct:lang_decl_u4::full_lang_decl
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/cp/
cp-tree.h 1688 tree context; member in struct:lang_decl_u4::full_lang_decl
    [all...]

Completed in 2079 milliseconds

1 2