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

1 2

  /external/v8/src/
compilation-cache.h 53 bool is_global);
69 bool is_global,
compiler.cc 120 static Handle<JSFunction> MakeFunction(bool is_global,
159 ASSERT(is_eval || is_global);
163 MakeAST(is_global, script, extension, pre_data, is_json);
308 bool is_global,
327 result = CompilationCache::LookupEval(source, context, is_global);
332 result = MakeFunction(is_global,
342 CompilationCache::PutEval(source, context, is_global, result);
variables.cc 157 bool Variable::is_global() const { function in class:v8::internal::Variable
compilation-cache.cc 386 bool is_global) {
392 if (is_global) {
424 bool is_global,
432 if (is_global) {
data-flow.cc 167 if (var->is_global() && !var->is_this()) {
307 ASSERT(var->is_global() || var->is_this());
314 ASSERT(var->is_global() || var->is_this());
458 ASSERT(var->is_global());
variables.h 184 bool is_global() const;
codegen.cc 308 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
326 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
compiler.h 246 bool is_global,
execution.h 122 Handle<Object> is_global);
full-codegen.cc 327 } else if (var != NULL && !var->is_this() && var->is_global()) {
400 if (!var->is_global()) {
499 if ((slot != NULL && slot->type() == Slot::LOOKUP) || !var->is_global()) {
516 if ((slot == NULL || slot->type() != Slot::LOOKUP) && var->is_global()) {
execution.cc 567 Handle<Object> is_global) {
572 is_global.location() };
fast-codegen.cc 217 if (!var->is_global() || var->is_this()) BAILOUT("Non-global variable");
583 ASSERT(expr->var()->is_global() && !expr->var()->is_this());
scopes.cc 604 if (!var->is_global()) *invalidated_local = var;
744 return !var->is_global() && var->var_uses()->is_used();
758 scope_contains_with_ || var->is_global());
    [all...]
factory.h 218 static Handle<JSFunction> NewFunction(Handle<Object> super, bool is_global);
  /bionic/libc/kernel/common/linux/
relay.h 79 int *is_global);
  /development/ndk/platforms/android-3/include/linux/
relay.h 79 int *is_global);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
relay.h 79 int *is_global);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
relay.h 79 int *is_global);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
relay.h 79 int *is_global);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
relay.h 79 int *is_global);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
relay.h 79 int *is_global);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
relay.h 79 int *is_global);
  /external/kernel-headers/original/linux/
relay.h 121 * @is_global: outparam - set non-zero if the buffer should be global
132 * Setting the is_global outparam to a non-zero value will
142 int *is_global);
  /external/v8/src/arm/
codegen-arm.h 287 void EmitKeyedLoad(bool is_global);
  /external/v8/src/x64/
codegen-x64.cc 569 bool is_global)
570 : dst_(dst), receiver_(receiver), key_(key), is_global_(is_global) {
6038 bool is_global = var != NULL; local
6120 bool is_global = var != NULL; local
    [all...]

Completed in 678 milliseconds

1 2