Searched refs:references (Results 1 - 25 of 113) sorted by relevance

12345

/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DReferencesParser.java17 * @param references the header to parse
19 public ReferencesParser(String references) { argument
20 super(references);
43 References references= new References();
48 references.setCallId(callId);
49 super.parse(references);
50 return references;
/external/v8/tools/
H A Dexternal-reference-check.py26 references = []
31 references.append(match.group(1))
32 return references
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DResourceReferenceResolver.java55 List<String> references = unresolvedReferences.remove(attributeName);
56 if (references == null) {
59 for (String reference : references) {
65 List<String> references = unresolvedReferences.get(attributeName);
66 if (references == null) {
67 references = new ArrayList<String>();
68 unresolvedReferences.put(attributeName, references);
70 references.add(valuePointer);
/external/boringssl/src/crypto/asn1/
H A Dtasn_utl.c105 CRYPTO_refcount_t *references = asn1_get_references(pval, it); local
106 if (references != NULL) {
107 *references = 1;
112 CRYPTO_refcount_t *references = asn1_get_references(pval, it); local
113 if (references != NULL) {
114 return CRYPTO_refcount_dec_and_test_zero(references);
/external/fio/
H A Dfilelock.c22 unsigned int references; member in struct:fio_filelock
161 ff->references = 0;
178 ff->references++;
200 if (ff->references != 1) {
201 ff->references--;
236 int refs = --ff->references;
H A Dfile.h124 int references; member in struct:fio_file
/external/boringssl/include/openssl/
H A Dengine.h96 int references; /* dummy – not used. */ member in struct:openssl_method_common_st
H A Dthread.h153 int references; member in struct:__anon407
H A Ddh.h256 CRYPTO_refcount_t references; member in struct:dh_st
/external/boringssl/src/include/openssl/
H A Dengine.h96 int references; /* dummy – not used. */ member in struct:openssl_method_common_st
H A Dthread.h153 int references; member in struct:__anon487
H A Ddh.h256 CRYPTO_refcount_t references; member in struct:dh_st
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
H A Dresources-ant.jar ... .runtime.IProgressMonitor monitor java.util.Hashtable references org.eclipse.core.resources.IProject targetProject ...
/external/llvm/test/MC/MachO/ARM/
H A Dno-subsections-reloc.s5 @ When not using subsections-via-symbols, references to non-local symbols
/external/clang/utils/
H A DFindSpecRefs14 ('2. Normative references', '2'),
301 ('1.2 Normative references', '1'),
590 ('F Cross references', '1137'),
599 # FIXME: Fix for named spec references
773 def buildRefTree(references):
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)
[all...]
/external/v8/test/cctest/compiler/
H A Dinstruction-selector-tester.h94 references.insert(vreg);
110 VirtualRegisterSet references; member in class:v8::internal::compiler::InstructionSelectorTester
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DMachO_x86-64_PIC_relocations.s25 # references the correct GOT entry address:
/external/llvm/test/Instrumentation/AddressSanitizer/X86/
H A Dasm_rsp_mem_op.s1 # The test verifies that memory references through %rsp are correctly
/external/boringssl/src/crypto/dh/
H A Ddh.c98 dh->references = 1;
119 if (!CRYPTO_refcount_dec_and_test_zero(&dh->references)) {
170 CRYPTO_refcount_inc(&dh->references);
/external/boringssl/src/crypto/dsa/
H A Ddsa.c101 dsa->references = 1;
126 if (!CRYPTO_refcount_dec_and_test_zero(&dsa->references)) {
149 CRYPTO_refcount_inc(&dsa->references);
/external/boringssl/src/crypto/evp/
H A Devp.c92 ret->references = 1;
110 if (!CRYPTO_refcount_dec_and_test_zero(&pkey->references)) {
119 CRYPTO_refcount_inc(&pkey->references);
/external/libxml2/doc/examples/
H A Dindex.py52 print "Found %d references to %s in the API" % (len(res), name)
156 for ref in idx.references.keys():
157 id = idx.references[ref]
163 # gather at most 5 references per symbols
/external/markdown/markdown/
H A Dpreprocessors.py204 self.markdown.references[id] = (m.group(3), t)
209 self.markdown.references[id] = (m.group(3), t[1:-1])
/external/boringssl/src/crypto/bio/
H A Dbio.c81 bio->references = 1;
109 if (!CRYPTO_refcount_dec_and_test_zero(&bio->references)) {
132 CRYPTO_refcount_inc(&bio->references);
/external/boringssl/src/crypto/ec/
H A Dec_key.c105 ret->references = 1;
146 if (!CRYPTO_refcount_dec_and_test_zero(&r->references)) {
237 CRYPTO_refcount_inc(&r->references);

Completed in 2802 milliseconds

12345