Home
last modified time | relevance | path

Searched full:extra (Results 1 – 25 of 8617) sorted by relevance

12345678910>>...345

/external/rust/crates/syn/src/gen/
Deq.rs8 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
11 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
18 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
21 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
28 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
31 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
39 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
42 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
53 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
56 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
[all …]
Dhash.rs9 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
19 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
30 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
44 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
61 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
73 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
85 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
180 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
191 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
201 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
[all …]
Ddebug.rs7 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
17 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
29 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
43 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
57 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
70 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
81 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
229 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
240 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
250 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
[all …]
/external/python/cpython3/Tools/c-analyzer/c_analyzer/
Dinfo.py42 def from_raw(cls, raw, **extra): argument
44 if extra:
46 raise NotImplementedError((raw, extra))
47 #return cls(raw.item, raw.typedecl, **raw._extra, **extra)
51 return cls(raw, **extra)
53 raise NotImplementedError((raw, extra))
56 def from_resolved(cls, item, resolved, **extra): argument
58 return cls(item, typedecl=resolved, **extra)
60 typedeps, extra = cls._parse_raw_resolved(item, resolved, extra)
63 raise NotImplementedError((item, resolved, extra))
[all …]
/external/python/cpython3/Grammar/
Dpython.gram60 | NEWLINE { (asdl_stmt_seq*)_PyPegen_singleton_seq(p, CHECK(stmt_ty, _PyAST_Pass(EXTRA))) }
69 | e=star_expressions { _PyAST_Expr(e, EXTRA) }
73 | 'pass' { _PyAST_Pass(EXTRA) }
77 | 'break' { _PyAST_Break(EXTRA) }
78 | 'continue' { _PyAST_Continue(EXTRA) }
98 _PyAST_AnnAssign(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), b, c, 1, EXTRA)
102 … CHECK_VERSION(stmt_ty, 6, "Variable annotations syntax is", _PyAST_AnnAssign(a, b, c, 0, EXTRA)) }
104 _PyAST_Assign(a, b, NEW_TYPE_COMMENT(p, tc), EXTRA) }
106 _PyAST_AugAssign(a, b->kind, c, EXTRA) }
125 _PyAST_Global(CHECK(asdl_identifier_seq*, _PyPegen_map_names_to_ids(p, a)), EXTRA) }
[all …]
/external/markdown/docs/extensions/
Dextra.md1 title: Extra Extension
3 # Python-Markdown Extra
8 [PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/).
20 See each individual extension for syntax documentation. Extra and all its
29 >>> html = markdown.markdown(text, extensions=['extra'])
32 To pass configuration options to the extensions included with Extra, they must be passed to Extra, …
33 underlying extension identified as well. In that way Extra will have access to the options and can …
38 'extra': {
51 html = markdown.markdown(text, extensions=['extra', 'toc'], extension_configs=config)
54 Note that in the above example, `footnotes` and `fenced_code` are both nested under the `extra` key…
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/
DConstants.java53 "com.googlecode.android_scripting.extra.SCRIPT_PATH";
55 "com.googlecode.android_scripting.extra.SCRIPT_CONTENT";
57 "com.googlecode.android_scripting.extra.INTERPRETER_NAME";
60 "com.googlecode.android_scripting.extra.USE_PUBLIC_IP";
62 "com.googlecode.android_scripting.extra.USE_SERVICE_PORT";
64 "com.googlecode.android_scripting.extra.SCRIPT_TEXT";
66 "com.googlecode.android_scripting.extra.RPC_HELP_TEXT";
68 "com.googlecode.android_scripting.extra.API_PROMPT_RPC_NAME";
70 "com.googlecode.android_scripting.extra.API_PROMPT_VALUES";
72 "com.googlecode.android_scripting.extra.PROXY_PORT";
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipArchiveEntry.java31 * Extension that adds better handling of extra fields and provides
34 * <p>The extra data is expected to follow the recommendation of
37 * <li>the extra byte array consists of a sequence of extra fields</li>
38 * <li>each extra fields starts by a two byte header id followed by
43 * <p>Any extra data that cannot be parsed by the rules above will be
44 * consumed as "unparseable" extra data and treated differently by the
47 * or write extra data not conforming to the recommendation.</p>
82 * Unicode Extra Field}.
101 * Unicode Extra Field}.
174 final byte[] extra = entry.getExtra(); in ZipArchiveEntry()
[all …]
DZip64ExtendedInformationExtraField.java74 * Creates an extra field based on the original and compressed size.
87 * Creates an extra field based on all four possible values.
157 // only holds a ZIP64 extended information extra field in parseFromLocalFileData()
210 * Parses the raw bytes read from the central directory extra
213 * <p>All four fields inside the zip64 extended information extra
236 + " information extra field's length" in reparseCentralDirectoryData()
265 * The uncompressed size stored in this extra field.
266 * @return The uncompressed size stored in this extra field.
273 * The uncompressed size stored in this extra field.
274 * @param size The uncompressed size stored in this extra field.
[all …]
/external/python/cpython2/Modules/
D_elementtree.c63 /* An element can hold this many children without extra memory
260 ElementObjectExtra* extra; member
274 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra)); in element_new_extra()
275 if (!self->extra) in element_new_extra()
282 self->extra->attrib = attrib; in element_new_extra()
284 self->extra->length = 0; in element_new_extra()
285 self->extra->allocated = STATIC_CHILDREN; in element_new_extra()
286 self->extra->children = self->extra->_children; in element_new_extra()
296 Py_DECREF(self->extra->attrib); in element_dealloc_extra()
298 for (i = 0; i < self->extra->length; i++) in element_dealloc_extra()
[all …]
/external/python/cpython3/Modules/
D_elementtree.c22 /* An element can hold this many children without extra memory
211 ElementObjectExtra* extra; member
228 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra)); in create_extra()
229 if (!self->extra) { in create_extra()
235 self->extra->attrib = attrib; in create_extra()
237 self->extra->length = 0; in create_extra()
238 self->extra->allocated = STATIC_CHILDREN; in create_extra()
239 self->extra->children = self->extra->_children; in create_extra()
245 dealloc_extra(ElementObjectExtra *extra) in dealloc_extra() argument
249 if (!extra) in dealloc_extra()
[all …]
/external/clang/test/Parser/
Dcxx-extra-semi.cpp14 // expected-warning@-4{{extra ';' after member function definition}}
16 void A2b() { };; // expected-warning{{extra ';' after member function definition}} in A2b()
17 ; // expected-warning{{extra ';' inside a class}}
21 // expected-warning@-2{{extra ';' after member function definition}}
23 void A3() { }; ;; // expected-warning{{extra ';' after member function definition}} in A3()
24 ;;;;;;; // expected-warning{{extra ';' inside a class}}
25 ; // expected-warning{{extra ';' inside a class}}
26 ; ;; ; ;;; // expected-warning{{extra ';' inside a class}}
27 ; ; ; ; ;; // expected-warning{{extra ';' inside a class}}
33 int a2;; // expected-warning{{extra ';' inside a union}}
[all …]
/external/clang/test/CXX/dcl.decl/dcl.meaning/
Dp1.cpp10 struct y::inner { }; // expected-error{{extra qualification on member 'inner'}}
19 … struct y::inner_template { }; // expected-error{{extra qualification on member 'inner_template'}}
35 void NS::foo(); // expected-warning {{extra qualification}}
36 extern int NS::bar; // expected-warning {{extra qualification}}
37 …eclaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
38 …eclaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
39 template<typename T> void NS::wibble(T); // expected-warning {{extra qualification}}
41 void NS::foo() {} // expected-warning{{extra qualification on member 'foo'}} in foo()
42 int NS::bar; // expected-warning{{extra qualification on member 'bar'}}
43 struct NS::X { }; // expected-warning{{extra qualification on member 'X'}}
[all …]
/external/python/cpython3/Tools/c-analyzer/cpython/
D_analyzer.py71 # For now we ignore known.values() (i.e. "extra").
132 def analyze_resolved(resolved, decl, types, knowntypes, extra=None): argument
145 if extra is None:
146 extra = {}
147 elif 'unsupported' in extra:
148 raise NotImplementedError((decl, extra))
151 extra['unsupported'] = unsupported
153 return typedeps, extra
243 _, extra = found
244 if extra is None:
[all …]
/external/python/pybind11/include/pybind11/
Dpybind11.h68 template <typename Return, typename... Args, typename... Extra> in PYBIND11_NAMESPACE_BEGIN()
69 cpp_function(Return (*f)(Args...), const Extra&... extra) { in PYBIND11_NAMESPACE_BEGIN()
70 initialize(f, f, extra...); in PYBIND11_NAMESPACE_BEGIN()
74 template <typename Func, typename... Extra, in PYBIND11_NAMESPACE_BEGIN()
76 cpp_function(Func &&f, const Extra&... extra) { in PYBIND11_NAMESPACE_BEGIN()
78 (detail::function_signature_t<Func> *) nullptr, extra...); in PYBIND11_NAMESPACE_BEGIN()
82 template <typename Return, typename Class, typename... Arg, typename... Extra> in PYBIND11_NAMESPACE_BEGIN()
83 cpp_function(Return (Class::*f)(Arg...), const Extra&... extra) { in PYBIND11_NAMESPACE_BEGIN()
85 (Return (*) (Class *, Arg...)) nullptr, extra...); in PYBIND11_NAMESPACE_BEGIN()
91 template <typename Return, typename Class, typename... Arg, typename... Extra> in PYBIND11_NAMESPACE_BEGIN()
[all …]
/external/cronet/third_party/brotli/enc/
Dhash_forgetful_chain_inc.h52 void* extra[2]; member
67 static uint32_t* FN(Addr)(void* extra) { in FN()
68 return (uint32_t*)extra; in FN()
71 static uint16_t* FN(Head)(void* extra) { in FN()
72 return (uint16_t*)(&FN(Addr)(extra)[BUCKET_SIZE]); in FN()
75 static uint8_t* FN(TinyHash)(void* extra) { in FN()
76 return (uint8_t*)(&FN(Head)(extra)[BUCKET_SIZE]); in FN()
79 static FN(Bank)* FN(Banks)(void* extra) { in FN()
80 return (FN(Bank)*)(extra); in FN()
87 self->extra[0] = common->extra[0]; in FN()
[all …]
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DZip64SupportIT.java388 extra data */
390 /* ZIP64 extra fields if mode is Always */
395 // information extra field
429 // extra field length
445 final byte[] extra = new byte[12];
446 a.readFully(extra);
447 assertArrayEquals("CDH extra", new byte[] {
454 }, extra);
458 final byte[] extra = new byte[4];
459 a.readFully(extra);
[all …]
/external/toolchain-utils/llvm_extra/
Dcreate_llvm_extra.sh7 # This script takes an existing llvm ebuild file and generate a llvm-extra
8 # ebuild. The newly generated llvm-extra ebuild can be installed as a regular
10 # The new ebuild should be generated in sys-devel/llvm-extra directory.
12 # The generated llvm-extra ebuild is slotted so multiple instances of
13 # llvm-extra ebuilds can be installed at same time.
21 # To use the clang installed by llvm-extra, modify the CFLAGS and
23 # the llvm-extra package.
24 # e.g. append-flags -Xclang-path=/usr/llvm-extra/version/clang
25 # append-ldflags -Xclang-path=/usr/llvm-extra/version/clang
43 EBUILD_PREFIX=llvm-extra
[all …]
/external/brotli/c/enc/
Dhash_forgetful_chain_inc.h52 void* extra; member
67 static uint32_t* FN(Addr)(void* extra) { in FN()
68 return (uint32_t*)extra; in FN()
71 static uint16_t* FN(Head)(void* extra) { in FN()
72 return (uint16_t*)(&FN(Addr)(extra)[BUCKET_SIZE]); in FN()
75 static uint8_t* FN(TinyHash)(void* extra) { in FN()
76 return (uint8_t*)(&FN(Head)(extra)[BUCKET_SIZE]); in FN()
79 static FN(Bank)* FN(Banks)(void* extra) { in FN()
80 return (FN(Bank)*)(&FN(TinyHash)(extra)[65536]); in FN()
87 self->extra = common->extra; in FN()
[all …]
/external/python/cpython3/Tools/c-analyzer/c_parser/
Ddatafiles.py20 def _get_columns(group, extra=None): argument
21 return BASE_COLUMNS + list(extra or ()) + [END_COLUMNS[group]]
24 # *extra or (),
88 for info, extra in _iter_decls_tsv(infile, extracolumns):
91 yield decl, extra
110 extra = row[4:-1]
113 extra = None
117 yield declinfo, extra
125 decl, *extra = decl
127 extra = ()
[all …]
/external/libvpx/vp8/common/
Dentropy.h23 #define ZERO_TOKEN 0 /* 0 Extra Bits 0+0 */
24 #define ONE_TOKEN 1 /* 1 Extra Bits 0+1 */
25 #define TWO_TOKEN 2 /* 2 Extra Bits 0+1 */
26 #define THREE_TOKEN 3 /* 3 Extra Bits 0+1 */
27 #define FOUR_TOKEN 4 /* 4 Extra Bits 0+1 */
28 #define DCT_VAL_CATEGORY1 5 /* 5-6 Extra Bits 1+1 */
29 #define DCT_VAL_CATEGORY2 6 /* 7-10 Extra Bits 2+1 */
30 #define DCT_VAL_CATEGORY3 7 /* 11-18 Extra Bits 3+1 */
31 #define DCT_VAL_CATEGORY4 8 /* 19-34 Extra Bits 4+1 */
32 #define DCT_VAL_CATEGORY5 9 /* 35-66 Extra Bits 5+1 */
[all …]
/external/jemalloc_new/src/
Dbitmap.c46 size_t extra; in bitmap_init() local
63 * to the first logical bit in the group, so extra bits are the most in bitmap_init()
67 extra = (BITMAP_GROUP_NBITS - (binfo->nbits & BITMAP_GROUP_NBITS_MASK)) in bitmap_init()
69 if (extra != 0) { in bitmap_init()
70 bitmap[binfo->levels[1].group_offset - 1] >>= extra; in bitmap_init()
75 extra = (BITMAP_GROUP_NBITS - (group_count & in bitmap_init()
77 if (extra != 0) { in bitmap_init()
78 bitmap[binfo->levels[i+1].group_offset - 1] >>= extra; in bitmap_init()
101 size_t extra; in bitmap_init() local
109 extra = (BITMAP_GROUP_NBITS - (binfo->nbits & BITMAP_GROUP_NBITS_MASK)) in bitmap_init()
[all …]
/external/webrtc/video/
Dstream_synchronization.cc96 // We need to decrease extra video delay, or add extra audio delay. in ComputeDelays()
98 // We have extra delay added to ViE. Reduce this delay before adding in ComputeDelays()
99 // extra delay to VoE. in ComputeDelays()
103 // We have no extra video delay to remove, increase the audio delay. in ComputeDelays()
109 // We need to decrease extra audio delay, or add extra video delay. in ComputeDelays()
111 // We have extra delay in VoiceEngine. in ComputeDelays()
117 // We have no extra delay in VoiceEngine, increase the video delay. in ComputeDelays()
132 // No change to the extra video delay. We are changing audio and we only in ComputeDelays()
137 // Make sure that we don't go below the extra video delay. in ComputeDelays()
153 // Make sure that we don't go below the extra audio delay. in ComputeDelays()
[all …]
/external/markdown/markdown/extensions/
Dextra.py2 Python-Markdown Extra Extension
6 [PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/).
15 Python-Markdown that are not included here in Extra. Those extensions
16 are not part of PHP Markdown Extra, and therefore, not part of
17 Python-Markdown Extra. If you really would like Extra to include
18 additional extensions, we suggest creating your own clone of Extra
23 See <https://Python-Markdown.github.io/extensions/extra>
/external/mbedtls/tests/suites/
Dtest_suite_bignum_core.misc.data10 Test mbedtls_mpi_core_io_be #3 (Buffer just fits, extra limbs, input limb-aligned)
13 Test mbedtls_mpi_core_io_be #4 (Buffer just fits, extra limbs, input unaligned)
16 Test mbedtls_mpi_core_io_be #5 (Extra limbs, buffer aligned to extra limbs, input limb-aligned)
19 Test mbedtls_mpi_core_io_be #6 (Extra limbs, buffer aligned to extra limbs, input unaligned)
28 Test mbedtls_mpi_core_io_be #9 (Buffer just fits, extra limbs, input limb-aligned with leading zero…
31 Test mbedtls_mpi_core_io_be #10 (Buffer just fits, extra limbs, input unaligned with leading zeroes)
75 Test mbedtls_mpi_core_io_le #3 (Buffer just fits, extra limbs, input limb-aligned)
78 Test mbedtls_mpi_core_io_le #4 (Buffer just fits, extra limbs, input unaligned)
81 Test mbedtls_mpi_core_io_le #5 (Extra limbs, buffer aligned to extra limbs, input limb-aligned)
84 Test mbedtls_mpi_core_io_le #6 (Extra limbs, buffer aligned to extra limbs, input unaligned)
[all …]

12345678910>>...345