Searched defs:ModulePath (Results 1 - 2 of 2) sorted by relevance
/external/v8/src/ |
H A D | ast.h | 73 V(ModulePath) \ 640 class ModulePath: public Module { class in namespace:v8::internal 642 DECLARE_NODE_TYPE(ModulePath) 650 ModulePath(Module* module, Handle<String> name) function in class:v8::internal::ModulePath 2693 ModulePath* NewModulePath(Module* origin, Handle<String> name) { 2694 ModulePath* module = new(zone_) ModulePath(origin, name); 2695 VISIT_AND_RETURN(ModulePath, module)
|
/external/chromium_org/v8/src/ |
H A D | ast.h | 75 V(ModulePath) \ 668 class ModulePath V8_FINAL : public Module { 670 DECLARE_NODE_TYPE(ModulePath) 676 ModulePath(Module* module, Handle<String> name, Zone* zone, int pos) function in class:v8::internal::V8_FINAL 2973 ModulePath* NewModulePath(Module* origin, Handle<String> name, int pos) { 2974 ModulePath* module = new(zone_) ModulePath(origin, name, zone_, pos); 2975 VISIT_AND_RETURN(ModulePath, module)
|
Completed in 141 milliseconds