Home
last modified time | relevance | path

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

12345678910>>...420

/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/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")))]
50 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
53 #[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")))]
56 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
68 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
85 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
96 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
108 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
120 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
[all …]
/external/python/cpython3/Grammar/
Dpython.gram104 | NEWLINE { (asdl_stmt_seq*)_PyPegen_singleton_seq(p, CHECK(stmt_ty, _PyAST_Pass(EXTRA))) }
115 | e=star_expressions { _PyAST_Expr(e, EXTRA) }
119 | 'pass' { _PyAST_Pass(EXTRA) }
123 | 'break' { _PyAST_Break(EXTRA) }
124 | 'continue' { _PyAST_Continue(EXTRA) }
148 _PyAST_AnnAssign(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), b, c, 1, EXTRA)
152 … CHECK_VERSION(stmt_ty, 6, "Variable annotations syntax is", _PyAST_AnnAssign(a, b, c, 0, EXTRA)) }
154 _PyAST_Assign(a, b, NEW_TYPE_COMMENT(p, tc), EXTRA) }
156 _PyAST_AugAssign(a, b->kind, c, EXTRA) }
177 | 'return' a=[star_expressions] { _PyAST_Return(a, EXTRA) }
[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/google-smali/smali/src/main/java/com/android/tools/smali/smali/
DsmaliTreeWalker.java1 // $ANTLR 3.5.2 /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali…
349 …@Override public String getGrammarFileName() { return "/usr/local/google/home/melisacz/extra/aosp-… in getGrammarFileName()
437 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m…
448 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m… in smali_file()
449 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m… in smali_file()
505 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m…
516 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m… in header()
517 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m… in header()
523 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m… in header()
531 …// /usr/local/google/home/melisacz/extra/aosp-master-with-phones/external/google-smali/smali/src/m… in header()
[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/rust/crates/hyper/src/client/connect/
Dmod.rs112 /// Extra information about the connected transport.
120 pub(super) extra: Option<Extra>, field
264 pub(super) struct Extra(Box<dyn ExtraInner>); struct
278 extra: None, in new()
311 /// Set extra connection information to be set in the extensions of every `Response`.
312 pub fn extra<T: Clone + Send + Sync + 'static>(mut self, extra: T) -> Connected { in extra() method
313 if let Some(prev) = self.extra { in extra()
314 self.extra = Some(Extra(Box::new(ExtraChain(prev.0, extra)))); in extra()
316 self.extra = Some(Extra(Box::new(ExtraEnvelope(extra)))); in extra()
321 /// Copies the extra connection information into an `Extensions` map.
[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/Modules/
D_elementtree.c23 /* An element can hold this many children without extra memory
201 ElementObjectExtra* extra; member
218 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra)); in create_extra()
219 if (!self->extra) { in create_extra()
225 self->extra->attrib = attrib; in create_extra()
227 self->extra->length = 0; in create_extra()
228 self->extra->allocated = STATIC_CHILDREN; in create_extra()
229 self->extra->children = self->extra->_children; in create_extra()
235 dealloc_extra(ElementObjectExtra *extra) in dealloc_extra() argument
239 if (!extra) in dealloc_extra()
[all …]
/external/skia/tools/unicode_comparison/go/generate_table/
Dmain.go114 Extra RangeDataSet member
212 return r.FormattedChunks(r.Delta.Data.Extra.Graphemes, "grapheme", "extra", true)
220 return r.FormattedChunks(r.Delta.Data.Extra.SoftBreaks, "softBreak", "extra", false)
228 return r.FormattedChunks(r.Delta.Data.Extra.HardBreaks, "hardBreak", "extra", false)
236 return r.FormattedChunks(r.Delta.Data.Extra.Words, "word", "extra", false)
244 return r.FormattedChunks(r.Delta.Data.Extra.Whitespaces, "whitespace", "extra", true)
252 return r.FormattedChunks(r.Delta.Data.Extra.Controls, "control", "extra", false)
316 len(r.Delta.Data.Extra.Graphemes) == 0 &&
317 len(r.Delta.Data.Extra.SoftBreaks) == 0 &&
318 len(r.Delta.Data.Extra.HardBreaks) == 0 &&
[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/python/cpython3/Tools/c-analyzer/cpython/
D_analyzer.py72 # For now we ignore known.values() (i.e. "extra").
134 def analyze_resolved(resolved, decl, types, knowntypes, extra=None): argument
147 if extra is None:
148 extra = {}
149 elif 'unsupported' in extra:
150 raise NotImplementedError((decl, extra))
153 extra['unsupported'] = unsupported
155 return typedeps, extra
245 _, extra = found
246 if extra is None:
[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/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/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/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/linux-kselftest/tools/testing/selftests/arm64/signal/testcases/
Dtestcases.c28 bool validate_extra_context(struct extra_context *extra, char **err, in validate_extra_context() argument
33 if (!extra || !err) in validate_extra_context()
36 fprintf(stderr, "Validating EXTRA...\n"); in validate_extra_context()
37 term = GET_RESV_NEXT_HEAD(&extra->head); in validate_extra_context()
39 *err = "Missing terminator after EXTRA context"; in validate_extra_context()
42 if (extra->datap & 0x0fUL) in validate_extra_context()
43 *err = "Extra DATAP misaligned"; in validate_extra_context()
44 else if (extra->size & 0x0fUL) in validate_extra_context()
45 *err = "Extra SIZE misaligned"; in validate_extra_context()
46 else if (extra->datap != (uint64_t)term + 0x10UL) in validate_extra_context()
[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/mbedtls/tests/suites/
Dtest_suite_bignum_mod_raw.data13 Test mbedtls_mpi_mod_raw_io #3 BE (Buffer just fits, extra limbs, input limb-aligned)
16 Test mbedtls_mpi_mod_raw_io #3 LE (Buffer just fits, extra limbs, input limb-aligned)
19 Test mbedtls_mpi_mod_raw_io #4 BE (Buffer just fits, extra limbs, input unaligned)
22 Test mbedtls_mpi_mod_raw_io #4 LE (Buffer just fits, extra limbs, input unaligned)
25 Test mbedtls_mpi_mod_raw_io #5 BE (Extra limbs, buffer aligned to extra limbs, input limb-aligned)
28 Test mbedtls_mpi_mod_raw_io #5 LE (Extra limbs, buffer aligned to extra limbs, input limb-aligned)
31 Test mbedtls_mpi_mod_raw_io #6 BE (Extra limbs, buffer aligned to extra limbs, input unaligned)
34 Test mbedtls_mpi_mod_raw_io #6 LE (Extra limbs, buffer aligned to extra limbs, input unaligned)
49 Test mbedtls_mpi_mod_raw_io #9 BE (Buffer just fits, extra limbs, input limb-aligned with leading z…
52 Test mbedtls_mpi_mod_raw_io #9 LE (Buffer just fits, extra limbs, input limb-aligned with leading z…
[all …]
Dtest_suite_pkcs7.data173 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
197 PKCS7 Parse Failure Invalid ASN1: Change contents of tag a0 to contain one unaccounted extra byte #…
213 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
241 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 31 to contain one unaccounted extra byte #…
257 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
293 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
321 PKCS7 Parse Failure Invalid ASN1: Change contents of tag a0 to contain one unaccounted extra byte #…
337 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
353 PKCS7 Parse Failure Invalid ASN1: Change contents of tag 30 to contain one unaccounted extra byte #…
369 PKCS7 Parse Failure Invalid ASN1: Change contents of tag a0 to contain one unaccounted extra byte #…
[all …]

12345678910>>...420