/external/v8/src/ast/ |
scopes.h | 51 // Sloppy block-scoped function declarations to var-bind 349 LanguageMode language_mode() const { return is_strict_ ? STRICT : SLOPPY; } 384 // sloppy eval call. One if this->calls_sloppy_eval(). 682 // calls sloppy eval. [all...] |
scopes.cc | 328 set_language_mode(SLOPPY); 485 // For each variable which is used as a function declaration in a sloppy [all...] |
/external/v8/src/ |
globals.h | 307 enum LanguageMode : uint32_t { SLOPPY, STRICT, LANGUAGE_END }; 311 case SLOPPY: return os << "sloppy"; 319 return language_mode == SLOPPY; 323 return language_mode != SLOPPY; 327 return language_mode == SLOPPY || language_mode == STRICT; [all...] |
bailout-reason.h | 186 "Sloppy function expects JSReceiver as receiver.") \
|
/external/autotest/client/cros/ |
chrooted_avahi.py | 166 # TODO(wiley) This is sloppy. Add a helper to move the logs over.
|
/external/v8/src/builtins/ |
builtins-handler.cc | 65 KeyedStoreGenericGenerator::Generate(state, SLOPPY);
|
/external/v8/src/runtime/ |
runtime-function.cc | 287 // ES6 section 9.2.1.2, OrdinaryCallBindThis for sloppy callee.
|
runtime-scopes.cc | 305 // Sloppy varblock contexts might not have an extension object yet, 319 // Sloppy eval will never have an extension object, as vars are hoisted out, [all...] |
/external/v8/src/objects/ |
scope-info.cc | 304 LanguageModeField::encode(SLOPPY) | DeclarationScopeField::encode(false) | 357 LanguageModeField::encode(SLOPPY) | DeclarationScopeField::encode(true) | 413 return length() > 0 ? LanguageModeField::decode(Flags()) : SLOPPY; [all...] |
/external/v8/src/compiler/ |
js-call-reducer.cc | 117 // have aliased sloppy arguments), and compute the {start_index} for 130 // Mapped arguments (sloppy mode) cannot be handled if they are aliased. 453 // Mapped arguments (sloppy mode) cannot be handled if they are aliased. [all...] |
bytecode-graph-builder.cc | 781 BuildStoreGlobal(LanguageMode::SLOPPY); [all...] |
ast-graph-builder.cc | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_file.py | 337 # Historically, these tests have been sloppy about removing TESTFN.
|
/external/python/cpython2/Lib/test/ |
test_file.py | 328 # Historically, these tests have been sloppy about removing TESTFN.
|
/external/python/cpython3/Lib/test/ |
test_file.py | 323 # Historically, these tests have been sloppy about removing TESTFN.
|
/external/tensorflow/tensorflow/core/util/ |
command_line_flags_test.cc | 280 // Match the usage message, being sloppy about whitespace.
|
/external/v8/src/debug/ |
liveedit.cc | 32 Object::SetElement(object->GetIsolate(), object, index, value, SLOPPY) 706 Object::SetProperty(rethrow_exception, start_pos_key, start_pos, SLOPPY) 708 Object::SetProperty(rethrow_exception, end_pos_key, end_pos, SLOPPY) 710 Object::SetProperty(rethrow_exception, script_obj_key, script_obj, SLOPPY) [all...] |
liveedit.h | 214 Object::SetElement(isolate(), array_, field_position, value, SLOPPY)
|
/external/v8/src/interpreter/ |
interpreter.cc | 602 // entry <name_index> using FeedBackVector slot <slot> in sloppy mode. 604 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, SLOPPY); 829 // pool entry |name_index| in sloppy mode. 831 DoStaLookupSlot(LanguageMode::SLOPPY, assembler); 901 // Calls the sloppy mode StoreIC at FeedBackVector slot <slot> for <object> and 905 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, SLOPPY); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_file.py | 337 # Historically, these tests have been sloppy about removing TESTFN.
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_file.py | 337 # Historically, these tests have been sloppy about removing TESTFN.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_file.py | 337 # Historically, these tests have been sloppy about removing TESTFN.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_file.py | 337 # Historically, these tests have been sloppy about removing TESTFN.
|
/external/v8/src/ic/ |
keyed-store-generic.cc | [all...] |
/external/v8/src/parsing/ |
pattern-rewriter.cc | 142 // a sloppy eval in a default parameter or function body, the parameter 343 // a sloppy eval in a default parameter or function body, the expressions
|