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

1 2

  /art/compiler/jni/quick/
jni_compiler.cc 60 const bool is_native = (access_flags & kAccNative) != 0; local
61 CHECK(is_native);
  /external/chromium_org/v8/src/
objects-debug.cc 752 bool is_native = RegExpImpl::UsesNativeRegExp(); local
761 (is_native ? one_byte_data->IsCode() : one_byte_data->IsByteArray()));
764 (is_native ? uc16_data->IsCode() : uc16_data->IsByteArray()));
    [all...]
full-codegen.h 601 bool is_native() { return info_->is_native(); } function in class:v8::internal::FullCodeGenerator
    [all...]
compiler.h 160 bool is_native() const { return GetFlag(kNative); } function in class:v8::internal::CompilationInfo
parser.cc 772 set_allow_harmony_scoping(!info->is_native() && FLAG_harmony_scoping);
773 set_allow_modules(!info->is_native() && FLAG_harmony_modules);
774 set_allow_natives_syntax(FLAG_allow_natives_syntax || info->is_native());
    [all...]
full-codegen.cc 798 DeclareGlobalsNativeFlag::encode(is_native()) |
    [all...]
runtime.cc 2295 bool is_native = DeclareGlobalsNativeFlag::decode(flags); local
    [all...]
  /art/compiler/
oat_writer.cc 470 bool is_native = it.MemberIsNative(); local
471 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
472 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
    [all...]
  /external/chromium_org/v8/src/compiler/arm/
code-generator-arm.cc 646 if (info->strict_mode() == SLOPPY && !info->is_native()) {
  /external/chromium_org/v8/src/compiler/arm64/
code-generator-arm64.cc 663 if (info->strict_mode() == SLOPPY && !info->is_native()) {
  /external/chromium_org/v8/src/compiler/ia32/
code-generator-ia32.cc 733 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
  /external/chromium_org/v8/src/compiler/x64/
code-generator-x64.cc 814 if (info->strict_mode() == SLOPPY && !info->is_native()) {
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.cc     [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 129 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
lithium-codegen-arm.cc 125 !info_->is_native()) {
    [all...]
  /external/chromium_org/v8/src/arm64/
full-codegen-arm64.cc 127 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
lithium-codegen-arm64.cc 650 !info_->is_native()) {
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 117 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
lithium-codegen-ia32.cc 146 !info_->is_native()) {
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 137 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
lithium-codegen-mips.cc 148 !info_->is_native()) {
    [all...]
  /external/chromium_org/v8/src/mips64/
full-codegen-mips64.cc 137 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 117 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]
lithium-codegen-x64.cc 134 !info_->is_native()) {
    [all...]
  /external/chromium_org/v8/src/x87/
full-codegen-x87.cc 117 if (info->strict_mode() == SLOPPY && !info->is_native()) {
    [all...]

Completed in 905 milliseconds

1 2