Home
last modified time | relevance | path

Searched refs:Headers (Results 1 - 25 of 36) sorted by relevance

12

/third_party/node/deps/undici/src/lib/fetch/
H A Dheaders.js43 // To fill a Headers object headers with a given object object, run these steps:
53 header: 'Headers constructor',
72 prefix: 'Headers constructor',
90 prefix: 'Headers.append',
96 prefix: 'Headers.append',
241 class Headers {
248 // The new Headers(init) constructor steps are:
262 webidl.brandCheck(this, Headers)
264 webidl.argumentLengthCheck(arguments, 2, { header: 'Headers.append' })
274 webidl.brandCheck(this, Headers)
547 Headers.prototype[Symbol.iterator] = Headers.prototype.entries global() class
[all...]
H A Dresponse.js3 const { Headers, HeadersList, fill } = require('./headers')
144 // 2. Set this’s headers to a new Headers object with this’s relevant
147 this[kHeaders] = new Headers(kConstruct)
226 // Returns response’s headers as Headers.
/third_party/nghttp2/src/
H A Dhttp2.h93 using Headers = std::vector<Header>;
116 Headers::value_type to_header(const uint8_t *name, size_t namelen,
123 void add_header(Headers &nva, const uint8_t *name, size_t namelen,
130 const Headers::value_type *get_header(const Headers &nva, const char *name);
266 void dump_nv(FILE *out, const Headers &nva);
355 const Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token,
356 const Headers &nva);
358 Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token,
359 Headers
[all...]
H A Dnghttp.h65 Headers headers;
66 Headers trailer;
153 Headers::value_type *get_res_header(int32_t token);
154 Headers::value_type *get_req_header(int32_t token);
169 Headers res_nva;
170 Headers req_nva;
H A Dhttp2_test.cc58 auto nva = Headers(); in test_http2_add_header()
62 CU_ASSERT(Headers::value_type("alpha", "123") == nva[0]); in test_http2_add_header()
69 CU_ASSERT(Headers::value_type("alpha", "") == nva[0]); in test_http2_add_header()
76 CU_ASSERT(Headers::value_type("a", "b") == nva[0]); in test_http2_add_header()
82 CU_ASSERT(Headers::value_type("a", "b") == nva[0]); in test_http2_add_header()
88 CU_ASSERT(Headers::value_type("a", "b") == nva[0]); in test_http2_add_header()
94 CU_ASSERT(Headers::value_type("a", "bravo") == nva[0]); in test_http2_add_header()
100 CU_ASSERT(Headers::value_type("a", "") == nva[0]); in test_http2_add_header()
110 auto nva = Headers{{"alpha", "1"}, {"bravo", "2"}, {"bravo", "3"}, in test_http2_get_header()
113 const Headers in test_http2_get_header()
[all...]
H A Dhttp2.cc281 Headers::value_type to_header(const uint8_t *name, size_t namelen, in to_header()
289 void add_header(Headers &nva, const uint8_t *name, size_t namelen, in add_header()
304 const Headers::value_type *get_header(const Headers &nva, const char *name) { in get_header()
305 const Headers::value_type *res = nullptr; in get_header()
610 void dump_nv(FILE *out, const Headers &nva) { in dump_nv()
988 const Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token,
989 const Headers &nva) {
997 Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token,
998 Headers
[all...]
H A DHttpServer.h56 Headers trailer;
/third_party/node/deps/undici/src/lib/cookies/
H A Dindex.js6 const { Headers } = require('../fetch/headers')
23 * @param {Headers} headers
29 webidl.brandCheck(headers, Headers, { strict: false })
48 * @param {Headers} headers
56 webidl.brandCheck(headers, Headers, { strict: false })
72 * @param {Headers} headers
78 webidl.brandCheck(headers, Headers, { strict: false })
91 * @param {Headers} headers
98 webidl.brandCheck(headers, Headers, { strict: false })
/third_party/node/deps/npm/node_modules/minipass-fetch/lib/
H A Dresponse.js5 const Headers = require('./headers.js')
16 const headers = new Headers(opts.headers)
31 trailer: Promise.resolve(opts.trailer || new Headers()),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp686 LoopData::NodeList &Headers, LoopData::NodeList &Others) { in findIrreducibleHeaders()
702 Headers.push_back(Irr.Node); in findIrreducibleHeaders()
708 assert(Headers.size() >= 2 && in findIrreducibleHeaders()
710 if (Headers.size() == InSCC.size()) { in findIrreducibleHeaders()
712 llvm::sort(Headers); in findIrreducibleHeaders()
734 Headers.push_back(Irr.Node); in findIrreducibleHeaders()
739 if (Headers.back() == Irr.Node) in findIrreducibleHeaders()
747 llvm::sort(Headers); in findIrreducibleHeaders()
758 LoopData::NodeList Headers; in createIrreducibleLoop() local
760 findIrreducibleHeaders(BFI, G, SCC, Headers, Other in createIrreducibleLoop()
682 findIrreducibleHeaders( const BlockFrequencyInfoImplBase &BFI, const IrreducibleGraph &G, const std::vector<const IrreducibleGraph::IrrNode *> &SCC, LoopData::NodeList &Headers, LoopData::NodeList &Others) findIrreducibleHeaders() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp551 std::vector<BasicBlock *> Headers; in UnrollLoop() local
554 Headers.push_back(Header); in UnrollLoop()
653 Headers.push_back(New); in UnrollLoop()
749 BasicBlock *Dest = Headers[j]; in UnrollLoop()
776 setDest(Latches[i], Dest, Headers, Headers[i], NeedConditional); in UnrollLoop()
781 for (unsigned i = 0, e = Headers.size(); i != e; ++i) { in UnrollLoop()
800 setDest(Headers[i], Dest, Headers, HeaderSucc[i], NeedConditional); in UnrollLoop()
812 BasicBlock *Dest = Headers[ in UnrollLoop()
[all...]
/third_party/python/Lib/test/
H A Dtest_wsgiref.py7 from wsgiref.headers import Headers namespace
157 "AssertionError: Headers (('Content-Type', 'text/plain')) must"
455 self.assertEqual(len(Headers()), 0)
456 self.assertEqual(len(Headers([])),0)
457 self.assertEqual(len(Headers(test[:])),1)
458 self.assertEqual(Headers(test[:]).keys(), ['x'])
459 self.assertEqual(Headers(test[:]).values(), ['y'])
460 self.assertEqual(Headers(test[:]).items(), test)
461 self.assertIsNot(Headers(test).items(), test) # must be copy!
463 h = Headers()
[all...]
/third_party/mesa3d/android/
H A DAndroid.mk81 LOCAL_HEADER_LIBRARIES += DirectX-Headers
83 MESON_GEN_PKGCONFIGS += DirectX-Headers
/third_party/node/deps/undici/src/lib/websocket/
H A Dconnection.js15 const { Headers } = require('../fetch/headers')
63 const headersList = new Headers(options.headers)[kHeadersList]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp550 SetVector<BasicBlock *> Headers; in runOnFunction() local
554 Headers.insert(Succ); in runOnFunction()
557 assert(!Headers.empty() && "poll location is not a loop latch?"); in runOnFunction()
563 for (BasicBlock *Header : Headers) { in runOnFunction()
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/
H A Dbuild-docker.sh49 clone_if_missing https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers --depth=1
136 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/
H A Dbuild-docker.sh49 clone_if_missing https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers --depth=1
136 git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers
/third_party/skia/third_party/externals/spirv-tools/source/wasm/
H A Dbuild.sh69 git clone https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/wasm/
H A Dbuild.sh69 git clone https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers
/third_party/spirv-tools/source/wasm/
H A Dbuild.sh74 git clone https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers
/third_party/vulkan-loader/scripts/qnx/
H A Dcommon.mk13 EXTRA_INCVPATH+=$(ICD_ROOT)/external/Vulkan-Headers/include
/third_party/python/Lib/wsgiref/
H A Dhandlers.py4 from .headers import Headers namespace
114 headers_class = Headers # must be a Headers-like class
235 raise AssertionError("Headers already set!")
H A Dheaders.py1 """Manage HTTP Response Headers
28 class Headers: class
34 raise TypeError("Headers must be a list of name/value tuples")
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2015-release-bazel/
H A Dbuild.bat26 git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/windows-msvc-2015-release-bazel/
H A Dbuild.bat26 git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers

Completed in 14 milliseconds

12