Home
last modified time | relevance | path

Searched refs:references (Results 1 – 25 of 1560) sorted by relevance

12345678910>>...63

/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliBaseReferenceList.java58 SmaliClassTypeElement[] references = getReferenceElements(); in getReferencedTypes() local
60 SmaliClassType[] referenceTypes = new SmaliClassType[references.length]; in getReferencedTypes()
62 for (int i=0; i<references.length; i++) { in getReferencedTypes()
63 referenceTypes[i] = references[i].getType(); in getReferencedTypes()
82 SmaliClassTypeElement[] references = getReferenceElements(); in getReferenceNames() local
84 String[] referenceNames = new String[references.length]; in getReferenceNames()
86 for (int i=0; i<references.length; i++) { in getReferenceNames()
87 referenceNames[i] = references[i].getCanonicalText(); in getReferenceNames()
99 SmaliClassTypeElement[] references = getReferenceElements(); in getSmaliNames() local
101 String[] smaliNames = new String[references.length]; in getSmaliNames()
[all …]
/external/dokka/core/src/main/kotlin/Model/
DDocumentationNode.kt84 private val references = LinkedHashSet<DocumentationReference>() constant
92 get() = references(RefKind.Owner).singleOrNull()?.to
94 get() = references(RefKind.Detail).map { it.to } in <lambda>()
96 get() = references(RefKind.Member).map { it.to }.sortedBy { it.name } in <lambda>()
98 get() = references(RefKind.InheritedMember).map { it.to } in <lambda>()
102 get() = references(RefKind.InheritedCompanionObjectMember).map { it.to } in <lambda>()
104 get() = references(RefKind.Extension).map { it.to } in <lambda>()
106 get() = references(RefKind.Inheritor).map { it.to } in <lambda>()
108 get() = references(RefKind.Override).map { it.to } in <lambda>()
110 get() = references(RefKind.Link).map { it.to } in <lambda>()
[all …]
DDocumentationReference.kt44 val references = arrayListOf<PendingDocumentationReference>() constant
51references.add(PendingDocumentationReference({ -> fromNode}, { -> nodeMap[toSignature]}, kind)) in link()
55references.add(PendingDocumentationReference({ -> nodeMap[fromSignature]}, { -> toNode}, kind)) in link()
59references.add(PendingDocumentationReference({ -> nodeMap[fromSignature]}, { -> nodeMap[toSignatur… in link()
73 references.forEach { it.resolve() } in resolveReferences()
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
DReferencesParser.java19 public ReferencesParser(String references) { in ReferencesParser() argument
20 super(references); in ReferencesParser()
43 References references= new References(); in parse() local
48 references.setCallId(callId); in parse()
49 super.parse(references); in parse()
50 return references; in parse()
/external/python/cpython2/Doc/library/
Dweakref.rst1 :mod:`weakref` --- Weak references
5 :synopsis: Support for weak references and weak dictionaries.
19 references` to objects.
28 only remaining references to a referent are weak references,
30 for something else. A primary use for weak references is to implement caches or
39 the :mod:`weakref` module are an alternative, using weak references to construct
42 :class:`WeakValueDictionary`, then when the last remaining references to that
43 image object are the weak references held by weak mappings, garbage collection
47 :class:`WeakKeyDictionary` and :class:`WeakValueDictionary` use weak references
48 in their implementation, setting up callback functions on the weak references
[all …]
/external/rust/cxx/tests/ui/
Dreference_to_reference.stderr1 error: C++ does not allow references to references
7 error: C++ does not allow references to references
/external/rust/crates/quiche/deps/boringssl/src/crypto/pool/
Dpool.c86 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
108 buf->references = 1; in CRYPTO_BUFFER_new()
124 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
152 buf->references = 1; in CRYPTO_BUFFER_alloc()
169 if (CRYPTO_refcount_dec_and_test_zero(&buf->references)) { in CRYPTO_BUFFER_free()
181 if (!CRYPTO_refcount_dec_and_test_zero(&buf->references)) { in CRYPTO_BUFFER_free()
206 CRYPTO_refcount_inc(&buf->references); in CRYPTO_BUFFER_up_ref()
/external/boringssl/src/crypto/pool/
Dpool.c86 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
108 buf->references = 1; in CRYPTO_BUFFER_new()
124 CRYPTO_refcount_inc(&duplicate->references); in CRYPTO_BUFFER_new()
152 buf->references = 1; in CRYPTO_BUFFER_alloc()
169 if (CRYPTO_refcount_dec_and_test_zero(&buf->references)) { in CRYPTO_BUFFER_free()
181 if (!CRYPTO_refcount_dec_and_test_zero(&buf->references)) { in CRYPTO_BUFFER_free()
206 CRYPTO_refcount_inc(&buf->references); in CRYPTO_BUFFER_up_ref()
/external/python/cpython3/Doc/library/
Dweakref.rst1 :mod:`weakref` --- Weak references
5 :synopsis: Support for weak references and weak dictionaries.
17 references` to objects.
26 only remaining references to a referent are weak references,
29 reference may return the object even if there are no strong references to it.
31 A primary use for weak references is to implement caches or
40 the :mod:`weakref` module are an alternative, using weak references to construct
43 :class:`WeakValueDictionary`, then when the last remaining references to that
44 image object are the weak references held by weak mappings, garbage collection
48 :class:`WeakKeyDictionary` and :class:`WeakValueDictionary` use weak references
[all …]
/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/
Dtasn_utl.c106 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_set_one() local
107 if (references != NULL) { in asn1_refcount_set_one()
108 *references = 1; in asn1_refcount_set_one()
113 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_dec_and_test_zero() local
114 if (references != NULL) { in asn1_refcount_dec_and_test_zero()
115 return CRYPTO_refcount_dec_and_test_zero(references); in asn1_refcount_dec_and_test_zero()
/external/boringssl/src/crypto/asn1/
Dtasn_utl.c106 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_set_one() local
107 if (references != NULL) { in asn1_refcount_set_one()
108 *references = 1; in asn1_refcount_set_one()
113 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_dec_and_test_zero() local
114 if (references != NULL) { in asn1_refcount_dec_and_test_zero()
115 return CRYPTO_refcount_dec_and_test_zero(references); in asn1_refcount_dec_and_test_zero()
/external/llvm-project/lld/test/ELF/
Dppc64-reloc-addr.s12 # OVERFLOW1: relocation R_PPC64_ADDR16 out of range: -32769 is not in [-32768, 65535]; references f…
13 …cation R_PPC64_ADDR32 out of range: -2147483649 is not in [-2147483648, 4294967295]; references foo
16 # OVERFLOW2: relocation R_PPC64_ADDR16 out of range: 65536 is not in [-32768, 65535]; references foo
17 …ocation R_PPC64_ADDR32 out of range: 4294967296 is not in [-2147483648, 4294967295]; references foo
Dzdefs.s4 ## Unresolved references from object files are allowed by default for -shared.
7 ## -z defs disallows unresolved references.
12 ## -z undefs allows unresolved references.
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DConnectionPool.java295 List<Reference<StreamAllocation>> references = connection.allocations; in pruneAndGetAllocationCount() local
296 for (int i = 0; i < references.size(); ) { in pruneAndGetAllocationCount()
297 Reference<StreamAllocation> reference = references.get(i); in pruneAndGetAllocationCount()
311 references.remove(i); in pruneAndGetAllocationCount()
315 if (references.isEmpty()) { in pruneAndGetAllocationCount()
321 return references.size(); in pruneAndGetAllocationCount()
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
DConnectionPool.java301 List<Reference<StreamAllocation>> references = connection.allocations; in pruneAndGetAllocationCount() local
302 for (int i = 0; i < references.size(); ) { in pruneAndGetAllocationCount()
303 Reference<StreamAllocation> reference = references.get(i); in pruneAndGetAllocationCount()
317 references.remove(i); in pruneAndGetAllocationCount()
321 if (references.isEmpty()) { in pruneAndGetAllocationCount()
327 return references.size(); in pruneAndGetAllocationCount()
/external/llvm-project/llvm/test/Assembler/
D2002-04-29-NameBinding.ll1 ; There should be NO references to the global v1. The local v1 should
2 ; have all of the references!
5 ; no references to it!
/external/llvm/test/Assembler/
D2002-04-29-NameBinding.ll1 ; There should be NO references to the global v1. The local v1 should
2 ; have all of the references!
5 ; no references to it!
/external/clang/test/SemaObjC/
Darc-unavailable-for-weakref.m11 __weak sub *w2; // expected-error {{class is incompatible with __weak references}}
13 __weak NSOptOut1072 *ns1; // expected-error {{class is incompatible with __weak references}}
18 // expected-error {{class is incompatible with __weak references}} \
59 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
68 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
79 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
/external/llvm-project/clang/test/SemaObjC/
Darc-unavailable-for-weakref.m12 __weak sub *w2; // expected-error {{class is incompatible with __weak references}}
14 __weak NSOptOut1072 *ns1; // expected-error {{class is incompatible with __weak references}}
19 // expected-error {{class is incompatible with __weak references}} \
60 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
69 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
80 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
/external/llvm-project/lld/docs/ELF/
Dwarn_backrefs.rst8 right maintaining the set of undefined symbol references from the files loaded
12 set of undefined symbol references. When all resolving definitions have been
20 references, the archives can be ordered in such a way that there are no
21 backward references. If there are cyclic references then the ``--start-group``
27 still search that archive for resolving any undefined references. This means
94 among system libraries (e.g. ``-lc __isnanl references -lm``, ``-lc
95 _IO_funlockfile references -lpthread``, ``-lc __gcc_personality_v0 references
96 -lgcc_eh``, and ``-lpthread _Unwind_GetCFA references -lunwind``).
/external/clang/utils/
DFindSpecRefs773 def buildRefTree(references): argument
785 for ref in references:
816 references = []
824 references.extend(list(scanFile(fullpath, filename)))
826 references.extend(list(scanFile(root, root)))
828 refTree = buildRefTree(references)
831 for ref in references:
836 print 'Found %d references.'%(len(references),)
/external/llvm-project/clang/utils/
DFindSpecRefs773 def buildRefTree(references): argument
785 for ref in references:
816 references = []
824 references.extend(list(scanFile(fullpath, filename)))
826 references.extend(list(scanFile(root, root)))
828 refTree = buildRefTree(references)
831 for ref in references:
836 print 'Found %d references.'%(len(references),)
/external/llvm/docs/HistoricalNotes/
D2001-02-13-Reference-MemoryResponse.txt9 > references: constrained pointers that cannot be manipulated: added and
14 > C++ pointers could be promoted to references in the LLVM
18 You're right, having references would be useful. Even for C++ the *static*
19 compiler could generate references instead of pointers with fairly
26 > 2. Our "implicit" memory references in assembly language:
/external/llvm-project/llvm/docs/HistoricalNotes/
D2001-02-13-Reference-MemoryResponse.txt9 > references: constrained pointers that cannot be manipulated: added and
14 > C++ pointers could be promoted to references in the LLVM
18 You're right, having references would be useful. Even for C++ the *static*
19 compiler could generate references instead of pointers with fairly
26 > 2. Our "implicit" memory references in assembly language:
/external/webrtc/modules/video_coding/
Drtp_frame_reference_finder.cc93 frame->references[i] += picture_id_offset_; in HandOffFrame()
194 frame->references[i] = descriptor.dependencies[i]; in ManageFrameGeneric()
208 frame->references[0] = frame->id.picture_id - 1; in ManageFramePidOrSeqNum()
260 frame->references[0] = rtp_seq_num_unwrapper_.Unwrap(last_picture_id_gop); in ManageFramePidOrSeqNum()
351 frame->references[0] = last_pid_on_layer; in ManageFrameVp8()
369 frame->references[0] = layer_info_it->second[0]; in ManageFrameVp8()
411 frame->references[layer] = layer_info_it->second[layer]; in ManageFrameVp8()
471 frame->references[i] = Subtract<kPicIdLength>(frame->id.picture_id, in ManageFrameVp9()
595 frame->references[i] = Subtract<kPicIdLength>( in ManageFrameVp9()
601 frame->references[i])) { in ManageFrameVp9()
[all …]

12345678910>>...63