Home
last modified time | relevance | path

Searched refs:_new (Results 1 – 25 of 38) sorted by relevance

12

/external/rust/crates/proc-macro2/src/
Dlib.rs138 fn _new(inner: imp::TokenStream) -> TokenStream { in _new() method
154 TokenStream::_new(imp::TokenStream::new()) in new()
187 Ok(TokenStream::_new(e)) in from_str()
194 TokenStream::_new(inner.into()) in from()
207 TokenStream::_new(imp::TokenStream::from(token)) in from()
227 TokenStream::_new(streams.into_iter().collect()) in from_iter()
232 TokenStream::_new(streams.into_iter().map(|i| i.inner).collect()) in from_iter()
255 Span::_new(self.inner.span()) in span()
286 fn _new(inner: imp::SourceFile) -> Self { in _new() method
363 fn _new(inner: imp::Span) -> Span { in _new() method
[all …]
Dfallback.rs629 fn _new(string: &str, raw: bool, span: Span) -> Ident { in _new() method
640 Ident::_new(string, false, span) in new()
644 Ident::_new(string, true, span) in new_raw()
760 Literal::_new(format!(concat!("{}", stringify!($kind)), n))
768 Literal::_new(n.to_string())
774 pub(crate) fn _new(text: String) -> Literal { in _new() method
819 Literal::_new(s) in f32_unsuffixed()
827 Literal::_new(s) in f64_unsuffixed()
842 Literal::_new(text) in string()
855 Literal::_new(text) in character()
[all …]
Dwrapper.rs326 proc_macro::TokenTree::Group(tt) => crate::Group::_new(Group::Compiler(tt)).into(), in next()
333 o.set_span(crate::Span::_new(Span::Compiler(tt.span()))); in next()
336 proc_macro::TokenTree::Ident(s) => crate::Ident::_new(Ident::Compiler(s)).into(), in next()
337 proc_macro::TokenTree::Literal(l) => crate::Literal::_new(Literal::Compiler(l)).into(), in next()
539 crate::Span::_new(Span::Compiler(proc_span)) in from()
Dparse.rs316 Ok((rest, Literal::_new(input.rest[..end].to_string()))) in literal()
/external/virglrenderer/src/gallium/auxiliary/util/
Du_atomic.h72 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() argument
74 return __sync_val_compare_and_swap(v, old, _new); in p_atomic_cmpxchg()
119 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() argument
121 return __sync_val_compare_and_swap(v, old, _new); in p_atomic_cmpxchg()
164 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() argument
166 return __sync_val_compare_and_swap(v, old, _new); in p_atomic_cmpxchg()
189 #define p_atomic_cmpxchg(_v, old, _new) (*(_v) == old ? *(_v) = (_new) : *(_v)) argument
240 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() argument
247 mov edx, [_new] in p_atomic_cmpxchg()
298 p_atomic_cmpxchg(int32_t *v, int32_t old, int32_t _new) in p_atomic_cmpxchg() argument
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectWriter.java217 protected ObjectWriter _new(ObjectWriter base, JsonFactory f) { in _new() method in ObjectWriter
226 protected ObjectWriter _new(ObjectWriter base, SerializationConfig config) { in _new() method in ObjectWriter
240 protected ObjectWriter _new(GeneratorSettings genSettings, Prefetch prefetch) { in _new() method in ObjectWriter
274 return _new(this, _config.with(feature)); in with()
282 return _new(this, _config.with(first, other)); in with()
290 return _new(this, _config.withFeatures(features)); in withFeatures()
298 return _new(this, _config.without(feature)); in without()
306 return _new(this, _config.without(first, other)); in without()
314 return _new(this, _config.withoutFeatures(features)); in withoutFeatures()
327 return _new(this, _config.with(feature)); in with()
[all …]
DObjectReader.java298 protected ObjectReader _new(ObjectReader base, JsonFactory f) { in _new() method in ObjectReader
307 protected ObjectReader _new(ObjectReader base, DeserializationConfig config) { in _new() method in ObjectReader
316 protected ObjectReader _new(ObjectReader base, DeserializationConfig config, in _new() method in ObjectReader
616 return _new(this, _config, in with()
648 ObjectReader r = _new(this, f); in with()
704 return _new(this, _config, _valueType, _rootDeserializer, _valueToUpdate, in with()
728 return _new(this, _config, valueType, rootDeser, in forType()
804 return _new(this, _config, _valueType, _rootDeserializer, null, in withValueToUpdate()
818 return _new(this, _config, t, _rootDeserializer, value, in withValueToUpdate()
891 return _new(this, _config, _valueType, _rootDeserializer, _valueToUpdate, in withFormatDetection()
[all …]
/external/mesa3d/src/util/
Du_atomic.h73 #define p_atomic_cmpxchg(v, old, _new) \ argument
74 __sync_val_compare_and_swap((v), (old), (_new))
96 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument
158 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument
159 …sizeof *(_v) == sizeof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), …
160 …sizeof *(_v) == sizeof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), …
161 …sizeof *(_v) == sizeof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), …
162 …sizeof *(_v) == sizeof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), …
226 #define p_atomic_cmpxchg(v, old, _new) (__typeof(*v))( \ argument
227 …sizeof(*v) == sizeof(uint8_t) ? atomic_cas_8 ((uint8_t *)(v), (uint8_t )(old), (uint8_t )(_new))…
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DUnwrappingBeanPropertyWriter.java62 return _new(transformer, new SerializedString(newName)); in rename()
70 … protected UnwrappingBeanPropertyWriter _new(NameTransformer transformer, SerializedString newName) in _new() method in UnwrappingBeanPropertyWriter
/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/
Dtasn_typ.c66 sname *sname##_new(void) \
/external/boringssl/src/crypto/asn1/
Dtasn_typ.c66 sname *sname##_new(void) \
/external/emma/core/java12/com/vladium/jcd/opcodes/
DIOpcodes.java208 int _new = 0xBB; // 187 2 +1 field
573 _NARROW_SIZE [_new] = 3;
/external/icu/tools/cldr/cldr-to-icu/src/main/resources/
Dldml2icu_supplemental.txt188 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/paradigmLocales[@locales="(%A…
189 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/matchVariable[@id="\$(%A)"][@…
191 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"…
192 //supplementalData/languageMatching/languageMatches[@type="(%B)_new"]/languageMatch[@desired="(%A)"…
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dasn1t.h741 (ASN1_new_func *)sname##_new, \
783 pre stname *fname##_new(void) \
793 stname *fname##_new(void) \
Dlhash.h193 lh_##type##_new(lhash_##type##_hash_func hash, \
Dstack.h304 sk_##name##_new(stack_##name##_cmp_func comp) { \
Dasn1.h291 OPENSSL_EXPORT type *name##_new(void); \
/external/boringssl/src/include/openssl/
Dasn1t.h654 pre stname *fname##_new(void) \
664 stname *fname##_new(void) \
Dlhash.h193 lh_##type##_new(lhash_##type##_hash_func hash, \
Dstack.h304 sk_##name##_new(stack_##name##_cmp_func comp) { \
Dasn1.h452 OPENSSL_EXPORT type *name##_new(void); \
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBeanPropertyWriter.java367 return _new(PropertyName.construct(newName)); in rename()
375 protected BeanPropertyWriter _new(PropertyName newName) { in _new() method in BeanPropertyWriter
/external/python/cpython3/Lib/
Dast.py535 def _new(cls, *args, **kwargs): function
549 __new__ = _new
553 __new__ = _new
557 __new__ = _new
560 __new__ = _new
/external/python/pycparser/tests/c_files/
Dcppd_with_stdio_h.c2622 } _new; member
/external/rust/crates/crossbeam-utils/src/atomic/
Datomic_cell.rs786 _new: (), in compare_exchange_weak() argument

12