Home
last modified time | relevance | path

Searched refs:prepend (Results 1 – 25 of 423) sorted by relevance

12345678910>>...17

/third_party/node/deps/npm/node_modules/prepend-http/
Dreadme.md1 # prepend-http [![Build Status](https://travis-ci.org/sindresorhus/prepend-http.svg?branch=master)]…
9 $ npm install --save prepend-http
16 const prependHttp = require('prepend-http');
/third_party/python/Lib/test/
Dtest_pipes.py118 t.prepend('boguscmd', pipes.SOURCE)
159 self.assertRaises(TypeError, t.prepend, 7, pipes.STDIN_STDOUT)
162 self.assertRaises(ValueError, t.prepend, 'tr a-z A-Z', 'xx')
165 self.assertRaises(ValueError, t.prepend, 'boguscmd', pipes.SINK)
169 t.prepend('boguscmd', pipes.SOURCE)
170 self.assertRaises(ValueError, t.prepend, 'boguscmd', pipes.SOURCE)
174 self.assertRaises(ValueError, t.prepend, 'boguscmd $OUT',
177 self.assertRaises(ValueError, t.prepend, 'boguscmd',
182 self.assertRaises(ValueError, t.prepend, 'boguscmd $IN',
185 self.assertRaises(ValueError, t.prepend, 'boguscmd',
/third_party/boost/libs/hana/test/tuple/
Dspecial.prepend.cpp15 hana::prepend(hana::tuple_c<long>, hana::long_c<0>), in main()
19 hana::prepend(hana::tuple_c<unsigned int, 1>, hana::uint_c<0>), in main()
23 hana::prepend(hana::tuple_c<long long, 1, 2>, hana::llong_c<0>), in main()
27 hana::prepend(hana::tuple_c<unsigned long, 1, 2, 3>, hana::ulong_c<0>), in main()
/third_party/typescript/tests/baselines/reference/tsbuild/javascriptProjectEmit/initial-build/
Dmodifies-outfile-js-projects-and-concatenates-them-correctly.js267 prepend: (0-84):: ../common/common.js texts:: 1
286 prepend: (0-64):: ../common/common.d.ts texts:: 1
400 prepend: (0-182):: ../sub-project/sub-project.js texts:: 1
428 prepend: (0-199):: ../sub-project/sub-project.d.ts texts:: 1
541 prepend: (0-84):: ../common/common.js texts:: 1
560 prepend: (0-64):: ../common/common.d.ts texts:: 1
656 prepend: (0-187):: ../sub-project/sub-project.js texts:: 1
684 prepend: (0-199):: ../sub-project/sub-project.d.ts texts:: 1
Dloads-outfile-js-projects-and-concatenates-them-correctly.js267 prepend: (0-84):: ../common/common.js texts:: 1
286 prepend: (0-64):: ../common/common.d.ts texts:: 1
400 prepend: (0-182):: ../sub-project/sub-project.js texts:: 1
428 prepend: (0-199):: ../sub-project/sub-project.d.ts texts:: 1
/third_party/node/src/
Dstring_decoder.cc68 Local<String> prepend, body; in DecodeData() local
122 Encoding()).ToLocal(&prepend)) { in DecodeData()
135 body = !prepend.IsEmpty() ? prepend : String::Empty(isolate); in DecodeData()
136 prepend = Local<String>(); in DecodeData()
225 if (prepend.IsEmpty()) { in DecodeData()
228 return String::Concat(isolate, prepend, body); in DecodeData()
/third_party/mindspore/mindspore/dataset/transforms/
Dc_transforms.py340 def __init__(self, axis=0, prepend=None, append=None): argument
342 self.prepend = cde.Tensor(np.array(prepend)) if prepend is not None else prepend
346 return cde.ConcatenateOperation(self.axis, self.prepend, self.append)
Dvalidators.py189 [axis, prepend, append], _ = parse_user_args(method, *args, **kwargs)
196 if prepend is not None:
197 type_check(prepend, (np.ndarray,), "prepend")
198 if len(prepend.shape) != 1:
/third_party/python/Lib/
Dgzip.py80 def __init__(self, f, prepend=b''): argument
81 self._buffer = prepend
82 self._length = len(prepend)
99 def prepend(self, prepend=b''): argument
101 self._buffer = prepend
103 self._read -= len(prepend)
498 self._fp.prepend(self._decompressor.unconsumed_tail)
502 self._fp.prepend(self._decompressor.unused_data)
537 self._fp.prepend(c)
/third_party/boost/libs/hana/example/
Dprepend.cpp11 static_assert(hana::prepend(hana::make_tuple(), 1) == hana::make_tuple(1), "");
12 static_assert(hana::prepend(hana::make_tuple('2', 3.3), 1) == hana::make_tuple(1, '2', 3.3), "");
/third_party/node/lib/internal/repl/
Dawait.js34 state.prepend(node, `${node.id.name}=`);
50 state.prepend(node, `this.${node.id.name} = ${node.id.name}; `);
85 state.prepend(decl, '(');
206 prepend(node, str) { method
239 state.prepend(last, 'return (');
/third_party/boost/libs/hana/include/boost/hana/fwd/
Dprepend.hpp57 constexpr auto prepend = [](auto&& xs, auto&& x) { in __anon9a0c167c0102() variable
69 constexpr prepend_t prepend{};
/third_party/boost/boost/hana/fwd/
Dprepend.hpp57 constexpr auto prepend = [](auto&& xs, auto&& x) { in __anon0c1940690102() variable
69 constexpr prepend_t prepend{};
/third_party/ltp/tools/sparse/sparse-src/
Dshow-parse.c187 const char *prepend = ""; in show_symbol_list() local
190 puts(prepend); in show_symbol_list()
191 prepend = ", "; in show_symbol_list()
208 static void FORMAT_ATTR(2) prepend(struct type_name *name, const char *fmt, ...) in prepend() function
319 prepend(name, "%s ", show_as(as)); in do_show_type()
346 prepend(name, "*"); in do_show_type()
355 prepend(name, "( "); in do_show_type()
365 prepend(name, "struct %s", show_ident(sym->ident)); in do_show_type()
371 prepend(name, "union %s", show_ident(sym->ident)); in do_show_type()
375 prepend(name, "enum %s ", show_ident(sym->ident)); in do_show_type()
[all …]
/third_party/typescript/tests/baselines/reference/tsbuild/outFile/initial-build/
Dverify-buildInfo-absence-results-in-new-build.js420 prepend: (0-110):: ../../../first/bin/first-output.js texts:: 1
431 prepend: (110-395):: ../../../2/second-output.js texts:: 1
459 prepend: (0-157):: ../../../first/bin/first-output.d.ts texts:: 1
472 prepend: (157-257):: ../../../2/second-output.d.ts texts:: 1
/third_party/typescript/tests/baselines/reference/tsbuild/watchMode/programUpdates/
Dwhen-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js199 prepend: (0-30):: ../core/index.js texts:: 1
213 prepend: (0-32):: ../core/index.d.ts texts:: 1
437 prepend: (0-63):: ../core/index.js texts:: 1
452 prepend: (0-67):: ../core/index.d.ts texts:: 1
658 prepend: (0-64):: ../core/index.js texts:: 1
673 prepend: (0-67):: ../core/index.d.ts texts:: 1
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/data/
Dconcatenate_op.h36 …explicit ConcatenateOp(int8_t axis, std::shared_ptr<Tensor> prepend, std::shared_ptr<Tensor> appen… in ConcatenateOp() argument
37 : axis_(axis), prepend_(prepend), append_(append) {} in ConcatenateOp()
/third_party/boost/boost/spirit/home/x3/support/traits/
Dattribute_of_binary.hpp27 using prepend = type_sequence<U..., T...>; typedef
30 using extend = typename U::template prepend<T...>;
/third_party/boost/libs/hana/test/_include/laws/
Dmonad_plus.hpp265 prepend(list(), eq<0>{}),
269 prepend(list(eq<1>{}), eq<0>{}),
273 prepend(list(eq<1>{}, eq<2>{}), eq<0>{}),
277 prepend(list(eq<1>{}, eq<2>{}, eq<3>{}), eq<0>{}),
283 prepend(list(), 1),
287 prepend(list('2'), 1),
291 prepend(list('2', 3.3), 1),
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/
Dtransforms.cc64 explicit Data(int8_t axis, const MSTensor &prepend, const MSTensor &append) in Data()
65 : axis_(axis), prepend_(prepend), append_(append) {} in Data()
71 Concatenate::Concatenate(int8_t axis, const MSTensor &prepend, const MSTensor &append) in Concatenate() argument
72 : data_(std::make_shared<Data>(axis, prepend, append)) {} in Concatenate()
/third_party/flutter/skia/include/core/
DSkString.h212 void prepend(const SkString& str) { this->insert(0, str); } in prepend() function
213 void prepend(const char text[]) { this->insert(0, text); } in prepend() function
214 void prepend(const char text[], size_t len) { this->insert(0, text, len); } in prepend() function
/third_party/skia/include/core/
DSkString.h213 void prepend(const SkString& str) { this->insert(0, str); } in prepend() function
214 void prepend(const char text[]) { this->insert(0, text); } in prepend() function
215 void prepend(const char text[], size_t len) { this->insert(0, text, len); } in prepend() function
/third_party/boost/libs/parameter/doc/
Dindex.rst41 .. @example.prepend('''
462 .. @example.prepend('#include <boost/parameter/keyword.hpp>')
506 .. @example.prepend('''
573 .. @example.prepend('''
605 .. @example.prepend('''
681 .. @example.prepend('''
803 .. @example.prepend('''
1080 .. @example.prepend('''
1276 .. @example.prepend('''
1347 .. @example.prepend('''
[all …]
/third_party/boost/libs/numeric/odeint/examples/
Dsolar_system.agr263 @ xaxis ticklabel prepend ""
314 @ yaxis ticklabel prepend ""
388 @ s0 avalue prepend ""
437 @ s1 avalue prepend ""
486 @ s2 avalue prepend ""
535 @ s3 avalue prepend ""
584 @ s4 avalue prepend ""
633 @ s5 avalue prepend ""
/third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/incremental-declaration-doesnt-change/
Dwhen-source-files-are-empty-in-the-own-file.js808 prepend: (0-127):: ../../../first/bin/first-output.js texts:: 1
820 prepend: (127-412):: ../../../2/second-output.js texts:: 1
843 prepend: (0-157):: ../../../first/bin/first-output.d.ts texts:: 1
856 prepend: (157-257):: ../../../2/second-output.d.ts texts:: 1

12345678910>>...17