/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
D | ResourceReferenceResolver.java | 39 List<String> references = unresolvedReferences.remove(attributeName); in resolveUnresolvedReferences() local 40 if (references == null) { in resolveUnresolvedReferences() 43 for (String reference : references) { in resolveUnresolvedReferences() 49 List<String> references = unresolvedReferences.get(attributeName); in addUnresolvedReference() local 50 if (references == null) { in addUnresolvedReference() 51 references = new ArrayList<String>(); in addUnresolvedReference() 52 unresolvedReferences.put(attributeName, references); in addUnresolvedReference() 54 references.add(valuePointer); in addUnresolvedReference()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
D | ReferencesParser.java | 19 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/chromium_org/net/socket/ |
D | ssl_session_cache_openssl_unittest.cc | 210 EXPECT_EQ(1, session->references); in TEST_F() 213 EXPECT_EQ(2, session->references); in TEST_F() 219 EXPECT_EQ(1, session->references); in TEST_F() 226 EXPECT_EQ(2, session->references); in TEST_F() 249 EXPECT_EQ(2, ssl1.get()->session->references); in TEST_F() 255 EXPECT_EQ(1, ssl1.get()->session->references); in TEST_F() 256 EXPECT_EQ(2, ssl2.get()->session->references); in TEST_F() 272 EXPECT_EQ(1, session->references); in TEST_F() 275 EXPECT_EQ(2, session->references); in TEST_F() 283 EXPECT_EQ(1, session2->references); in TEST_F() [all …]
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | fkey1.test | 59 CREATE TABLE t5(x references t4); 60 CREATE TABLE t6(x references t4); 61 CREATE TABLE t7(x references t4); 62 CREATE TABLE t8(x references t4); 63 CREATE TABLE t9(x references t4); 64 CREATE TABLE t10(x references t4);
|
/external/llvm/test/Assembler/ |
D | 2002-04-29-NameBinding.ll | 1 ; 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/chromium_org/net/third_party/nss/ssl/ |
D | sslnonce.c | 117 PORT_Assert((sid->references == 0)); in ssl_DestroySID() 173 PORT_Assert(sid->references >= 1); in ssl_FreeLockedSID() 174 if (--sid->references == 0) { in ssl_FreeLockedSID() 216 PORT_Assert(sid->references >= 1); in ssl_LookupSID() 220 if (sid->expirationTime < now || !sid->references) { in ssl_LookupSID() 226 now - sid->creationTime, sid->references)); in ssl_LookupSID() 230 if (!sid->references) in ssl_LookupSID() 252 sid->references++; in ssl_LookupSID() 323 sid->references++; in CacheSID()
|
/external/chromium_org/content/browser/dom_storage/ |
D | dom_storage_host.cc | 33 NamespaceAndArea references; in OpenStorageArea() local 34 references.namespace_ = context_->GetStorageNamespace(namespace_id); in OpenStorageArea() 35 if (!references.namespace_.get()) { in OpenStorageArea() 41 references.area_ = references.namespace_->OpenStorageArea(origin); in OpenStorageArea() 42 DCHECK(references.area_.get()); in OpenStorageArea() 43 connections_[connection_id] = references; in OpenStorageArea()
|
/external/clang/test/SemaObjC/ |
D | arc-unavailable-for-weakref.m | 11 __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}}
|
D | arc-no-runtime.m | 5 …x; // expected-error {{the current deployment target does not support automated __weak references}} 15 …y; // expected-error {{the current deployment target does not support automated __weak references}}
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
D | test_results.py | 41 …ne, test_run_time=None, has_stderr=False, reftest_type=None, pid=None, references=None, device_fai… argument 48 self.references = references or []
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
D | layout_tests_mover.py | 189 references = {} 193 references[input_file] = [filter(None, match)[0] for match in matches] 194 return references 220 def _get_all_updated_references(self, references): argument 226 for file_path in references.keys(): 234 for reference in references[file_path]: 260 references = self._find_references(test_source_files) 261 _log.info('Considering references in %s files' % len(references)) 262 updates = self._get_all_updated_references(references)
|
/external/clang/utils/ |
D | FindSpecRefs | 773 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/ |
D | 2001-02-13-Reference-MemoryResponse.txt | 9 > 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:
|
D | 2001-02-13-Reference-Memory.txt | 18 references: constrained pointers that cannot be manipulated: added and 23 C++ pointers could be promoted to references in the LLVM 26 2. Our "implicit" memory references in assembly language: 35 I'm tempted to make memory references explicit in both the assembly and
|
/external/clang/test/Analysis/ |
D | misc-ps-region-store.mm | 9 // Test basic handling of references. 20 // Test basic handling of references with Objective-C classes. 33 // Basic test of C++ references with Objective-C pointers.
|
/external/openssl/crypto/ |
D | mem_dbg.c | 158 int references; member 206 if (--(inf->references) <= 0) in app_info_free() 373 next->references++; in IMPLEMENT_LHASH_HASH_FN() 385 if (--(ret->references) <= 0) in IMPLEMENT_LHASH_HASH_FN() 389 next->references--; in IMPLEMENT_LHASH_HASH_FN() 425 ami->references=1; in CRYPTO_push_info_() 548 amim->references++; in CRYPTO_dbg_malloc() 556 mm->app_info->references--; in CRYPTO_dbg_malloc()
|
/external/chromium_org/third_party/openssl/openssl/crypto/ |
D | mem_dbg.c | 158 int references; member 206 if (--(inf->references) <= 0) in app_info_free() 373 next->references++; in IMPLEMENT_LHASH_HASH_FN() 385 if (--(ret->references) <= 0) in IMPLEMENT_LHASH_HASH_FN() 389 next->references--; in IMPLEMENT_LHASH_HASH_FN() 425 ami->references=1; in CRYPTO_push_info_() 548 amim->references++; in CRYPTO_dbg_malloc() 556 mm->app_info->references--; in CRYPTO_dbg_malloc()
|
/external/openssl/crypto/asn1/ |
D | x_info.c | 80 ret->references=1; in X509_INFO_new() 93 i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_X509_INFO); in X509_INFO_free()
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
D | x_info.c | 80 ret->references=1; in X509_INFO_new() 93 i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_X509_INFO); in X509_INFO_free()
|
/external/clang/test/SemaObjCXX/ |
D | arc-unavailable-for-weakref.mm | 11 __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}} \
|
/external/ant-glob/ |
D | README.txt | 18 and then everything it transitively references that was truly needed: 26 up a bit (removing references to Location)
|
/external/e2fsprogs/tests/progs/test_data/ |
D | test.irel | 15 # Check to see what happens if we add too many references 19 # Try resizing the number of references and retry the add
|
/external/openssl/ssl/ |
D | ssl_cert.c | 176 ret->references=1; in ssl_cert_new() 264 CRYPTO_add(&ret->pkeys[i].x509->references, 1, in ssl_cert_dup() 271 CRYPTO_add(&ret->pkeys[i].privatekey->references, 1, in ssl_cert_dup() 308 ret->references=1; in ssl_cert_dup() 347 i=CRYPTO_add(&c->references,-1,CRYPTO_LOCK_SSL_CERT); in ssl_cert_free() 426 ret->references = 1; in ssl_sess_cert_new() 438 i = CRYPTO_add(&sc->references, -1, CRYPTO_LOCK_SSL_SESS_CERT); in ssl_sess_cert_free()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | HTMLEntities.properties | 24 # Character entity references for markup-significant 32 # Character entity references for ISO 8859-1 characters 130 # Character entity references for symbols, mathematical symbols, and Greek letters 274 # Character entity references for internationalization characters
|
/external/elfutils/ |
D | NOTES | 4 y1.o defines foo(), references bar() 18 y1.o defines foo(), references bar() 73 references always use the section index.
|