Home
last modified time | relevance | path

Searched refs:headerName (Results 1 – 7 of 7) sorted by relevance

/third_party/glslang/StandAlone/
DDirStackFileIncluder.h54 virtual IncludeResult* includeLocal(const char* headerName, in includeLocal() argument
58 return readLocalPath(headerName, includerName, (int)inclusionDepth); in includeLocal()
61 virtual IncludeResult* includeSystem(const char* headerName, in includeSystem() argument
65 return readSystemPath(headerName); in includeSystem()
103 … virtual IncludeResult* readLocalPath(const char* headerName, const char* includerName, int depth) in readLocalPath() argument
113 std::string path = *it + '/' + headerName; in readLocalPath()
/third_party/glslang/glslang/CInterface/
Dglslang_c_interface.cpp87 …CallbackIncludeResult(const std::string& headerName, const char* const headerData, const size_t he… in CallbackIncludeResult() argument
89 … : glslang::TShader::Includer::IncludeResult(headerName, headerData, headerLength, userData), in CallbackIncludeResult()
107 virtual IncludeResult* includeSystem(const char* headerName, const char* includerName, in includeSystem() argument
112 … this->callbacks.include_system(this->context, headerName, includerName, inclusionDepth); in includeSystem()
114 …return new CallbackIncludeResult(std::string(headerName), result->header_data, result->header_leng… in includeSystem()
118 return glslang::TShader::Includer::includeSystem(headerName, includerName, inclusionDepth); in includeSystem()
121 virtual IncludeResult* includeLocal(const char* headerName, const char* includerName, in includeLocal() argument
126 … this->callbacks.include_local(this->context, headerName, includerName, inclusionDepth); in includeLocal()
128 …return new CallbackIncludeResult(std::string(headerName), result->header_data, result->header_leng… in includeLocal()
132 return glslang::TShader::Includer::includeLocal(headerName, includerName, inclusionDepth); in includeLocal()
/third_party/node/deps/npm/node_modules/node-fetch-npm/src/
Dheaders.js44 for (const headerName of headerNames) {
45 for (const value of rawHeaders[headerName]) {
46 this.append(headerName, value)
/third_party/glslang/glslang/Public/
DShaderLang.h596 …IncludeResult(const std::string& headerName, const char* const headerData, const size_t headerLeng… in IncludeResult()
597headerName(headerName), headerData(headerData), headerLength(headerLength), userData(userData) { } in IncludeResult()
602 const std::string headerName; member
/third_party/node/deps/npm/node_modules/request/
Drequest.js153 for (var headerName in self.headers) {
154 if (typeof self.headers[headerName] === 'undefined') {
155 delete self.headers[headerName]
985 var headerName = response.caseless.has('set-cookie')
986 if (Array.isArray(response.headers[headerName])) {
987 response.headers[headerName].forEach(addCookie)
989 addCookie(response.headers[headerName])
/third_party/glslang/glslang/MachineIndependent/preprocessor/
DPp.cpp670 if (res == nullptr || res->headerName.empty()) { in CPPinclude()
676 if (res != nullptr && !res->headerName.empty()) { in CPPinclude()
682 prologue << "#line " << forNextLine << " " << "\"" << res->headerName << "\"\n"; in CPPinclude()
686 …parseContext.intermediate.addIncludeText(res->headerName.c_str(), res->headerData, res->headerLeng… in CPPinclude()
DPpContext.h676 currentSourceFile = result->headerName; in push_include()
688 currentSourceFile = includeStack.top()->headerName; in pop_include()