OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:os_templ
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/v8/src/
d8-windows.cc
38
void Shell::AddOSMethods(Isolate* isolate, Handle<ObjectTemplate>
os_templ
) {
d8-posix.cc
724
void Shell::AddOSMethods(Isolate* isolate, Handle<ObjectTemplate>
os_templ
) {
725
os_templ
->Set(String::NewFromUtf8(isolate, "system"),
727
os_templ
->Set(String::NewFromUtf8(isolate, "chdir"),
729
os_templ
->Set(String::NewFromUtf8(isolate, "setenv"),
731
os_templ
->Set(String::NewFromUtf8(isolate, "unsetenv"),
733
os_templ
->Set(String::NewFromUtf8(isolate, "umask"),
735
os_templ
->Set(String::NewFromUtf8(isolate, "mkdirp"),
737
os_templ
->Set(String::NewFromUtf8(isolate, "rmdir"),
d8.cc
909
Handle<ObjectTemplate>
os_templ
= ObjectTemplate::New();
local
910
AddOSMethods(isolate,
os_templ
);
911
global_template->Set(String::NewFromUtf8(isolate, "os"),
os_templ
);
local
[
all
...]
/external/v8/src/
d8-windows.cc
38
void Shell::AddOSMethods(Handle<ObjectTemplate>
os_templ
) {
d8-posix.cc
677
void Shell::AddOSMethods(Handle<ObjectTemplate>
os_templ
) {
678
os_templ
->Set(String::New("system"), FunctionTemplate::New(System));
679
os_templ
->Set(String::New("chdir"), FunctionTemplate::New(ChangeDirectory));
680
os_templ
->Set(String::New("setenv"), FunctionTemplate::New(SetEnvironment));
681
os_templ
->Set(String::New("unsetenv"),
683
os_templ
->Set(String::New("umask"), FunctionTemplate::New(SetUMask));
684
os_templ
->Set(String::New("mkdirp"), FunctionTemplate::New(MakeDirectory));
685
os_templ
->Set(String::New("rmdir"), FunctionTemplate::New(RemoveDirectory));
d8.cc
850
Handle<ObjectTemplate>
os_templ
= ObjectTemplate::New();
local
851
AddOSMethods(
os_templ
);
852
global_template->Set(String::New("os"),
os_templ
);
[
all
...]
Completed in 632 milliseconds