Home | History | Annotate | Download | only in samples

Lines Matching defs:Path

52   virtual const string& Path() = 0;
488 // Fetch the path.
489 const string& path = request->Path();
493 String::NewFromUtf8(info.GetIsolate(), path.c_str(),
495 static_cast<int>(path.length())).ToLocalChecked());
503 const string& path = request->Referrer();
505 String::NewFromUtf8(info.GetIsolate(), path.c_str(),
507 static_cast<int>(path.length())).ToLocalChecked());
514 const string& path = request->Host();
516 String::NewFromUtf8(info.GetIsolate(), path.c_str(),
518 static_cast<int>(path.length())).ToLocalChecked());
526 const string& path = request->UserAgent();
528 String::NewFromUtf8(info.GetIsolate(), path.c_str(),
530 static_cast<int>(path.length())).ToLocalChecked());
543 String::NewFromUtf8(isolate, "path", NewStringType::kInternalized)
577 StringHttpRequest(const string& path,
581 virtual const string& Path() { return path_; }
593 StringHttpRequest::StringHttpRequest(const string& path,
597 : path_(path),