HomeSort by relevance Sort by last modified time
    Searched refs:species (Results 1 - 10 of 10) sorted by null

  /external/v8/src/js/
runtime.js 74 var species = constructor[speciesSymbol];
75 if (IS_NULL_OR_UNDEFINED(species)) {
78 if (%IsConstructor(species)) {
79 return species;
typedarray.js 706 // The code below is the 'then' branch; the 'else' branch species
  /prebuilts/go/darwin-x86/src/flag/
example_test.go 16 // Example 1: A single string flag called "species" with default value "gopher".
17 var species = flag.String("species", "gopher", "the species we are studying") var
  /prebuilts/go/linux-x86/src/flag/
example_test.go 16 // Example 1: A single string flag called "species" with default value "gopher".
17 var species = flag.String("species", "gopher", "the species we are studying") var
  /prebuilts/go/darwin-x86/src/reflect/
example_test.go 60 F string `species:"gopher" color:"blue"`
66 fmt.Println(field.Tag.Get("color"), field.Tag.Get("species"))
  /prebuilts/go/linux-x86/src/reflect/
example_test.go 60 F string `species:"gopher" color:"blue"`
66 fmt.Println(field.Tag.Get("color"), field.Tag.Get("species"))
  /external/v8/src/
heap-symbols.h 158 V(symbol_species_string, "[Symbol.species]") \
235 V(species_symbol, Symbol.species) \
  /external/v8/src/runtime/
runtime-regexp.cc     [all...]
  /external/v8/src/builtins/
builtins-promise.cc 301 // 5. Let S be ? Get(C, @@species).
304 Node* const species = local
308 GotoIf(IsUndefined(species), &out);
309 GotoIf(WordEqual(species, NullConstant()), &out);
313 Node* species_bitfield = LoadMapBitField(LoadMap(species));
318 var_result.Bind(species);
    [all...]
builtins-array.cc 746 // If anything with @@species has been messed with, call out to JS.
1636 Handle<Object> species; local
    [all...]

Completed in 404 milliseconds