Searched refs:if_found (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/cctest/ |
D | test-code-stub-assembler.cc | 234 Label if_found(&m), if_not_found(&m); in TestNameDictionaryLookup() local 237 m.NameDictionaryLookup<Dictionary>(dictionary, unique_name, &if_found, in TestNameDictionaryLookup() 239 m.Bind(&if_found); in TestNameDictionaryLookup() 340 Label if_found(&m), if_not_found(&m); in TestNumberDictionaryLookup() local 343 m.NumberDictionaryLookup<Dictionary>(dictionary, key, &if_found, &var_entry, in TestNumberDictionaryLookup() 345 m.Bind(&if_found); in TestNumberDictionaryLookup() 476 Label if_found(&m), if_not_found(&m), if_bailout(&m); in TEST() local 481 m.TryHasOwnProperty(object, map, instance_type, unique_name, &if_found, in TEST() 484 m.Bind(&if_found); in TEST() 663 Label if_found(&m), if_not_found(&m), if_bailout(&m); in TEST() local [all …]
|
/external/v8/src/ |
D | code-stub-assembler.cc | 1560 Node* unique_name, Label* if_found, in NameDictionaryLookup() argument 1581 GotoIf(WordEqual(current, unique_name), if_found); in NameDictionaryLookup() 1607 GotoIf(WordEqual(current, unique_name), if_found); in NameDictionaryLookup() 1641 Label* if_found, in NumberDictionaryLookup() argument 1688 Branch(Word32Equal(current_value, key), if_found, &next_probe); in NumberDictionaryLookup() 1695 Branch(Float64Equal(current_value, key_as_float64), if_found, in NumberDictionaryLookup() 1801 Label* if_found, Label* if_not_found, in TryHasOwnProperty() argument 1808 TryLookupProperty(object, map, instance_type, unique_name, if_found, if_found, in TryHasOwnProperty() 1819 Goto(if_found); in TryHasOwnProperty() 1997 Label if_found(this, 2, vars); in TryGetOwnProperty() local [all …]
|
D | code-stub-assembler.h | 293 compiler::Node* unique_name, Label* if_found, 301 Label* if_found, Variable* var_entry, 307 compiler::Node* unique_name, Label* if_found, 316 compiler::Node* unique_name, Label* if_found, 356 Label* if_found, Label* if_not_found,
|
/external/v8/src/crankshaft/ |
D | hydrogen.cc | 2250 IfBuilder if_found(this, &found); in BuildNumberToString() local 2251 if_found.Then(); in BuildNumberToString() 2262 if_found.Else(); in BuildNumberToString() 2270 if_found.End(); in BuildNumberToString()
|