HomeSort by relevance Sort by last modified time
    Searched refs:references (Results 1 - 25 of 1125) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ResourceReferenceResolver.java 39 List<String> references = unresolvedReferences.remove(attributeName); local
40 if (references == null) {
43 for (String reference : references) {
49 List<String> references = unresolvedReferences.get(attributeName); local
50 if (references == null) {
51 references = new ArrayList<String>();
52 unresolvedReferences.put(attributeName, references);
54 references.add(valuePointer);
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 7 import gov.nist.javax.sip.header.extensions.References;
17 * @param references the header to parse
19 public ReferencesParser(String references) {
20 super(references);
42 headerName(TokenTypes.REFERENCES);
43 References references= new References(); local
48 references.setCallId(callId);
49 super.parse(references);
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-ref-inline.h 84 if (!VEC_length (ipa_ref_t, list->references))
86 return VEC_index (ipa_ref_t, list->references, 0);
105 list->references = NULL;
113 return VEC_length (ipa_ref_t, list->references);
117 VEC_iterate(ipa_ref_t, (L)->references, (I), (P))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-ref-inline.h 84 if (!VEC_length (ipa_ref_t, list->references))
86 return VEC_index (ipa_ref_t, list->references, 0);
105 list->references = NULL;
113 return VEC_length (ipa_ref_t, list->references);
117 VEC_iterate(ipa_ref_t, (L)->references, (I), (P))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-ref-inline.h 84 if (!VEC_length (ipa_ref_t, list->references))
86 return VEC_index (ipa_ref_t, list->references, 0);
105 list->references = NULL;
113 return VEC_length (ipa_ref_t, list->references);
117 VEC_iterate(ipa_ref_t, (L)->references, (I), (P))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-ref-inline.h 84 if (!VEC_length (ipa_ref_t, list->references))
86 return VEC_index (ipa_ref_t, list->references, 0);
105 list->references = NULL;
113 return VEC_length (ipa_ref_t, list->references);
117 VEC_iterate(ipa_ref_t, (L)->references, (I), (P))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_results.py 41 def __init__(self, test_name, failures=None, test_run_time=None, has_stderr=False, reftest_type=None, pid=None, references=None):
48 self.references = references or []
56 self.total_run_time = 0 # The time taken to run the test plus any references, compute diffs, etc.
  /external/chromium_org/content/browser/dom_storage/
dom_storage_host.cc 31 NamespaceAndArea references;
32 references.namespace_ = context_->GetStorageNamespace(namespace_id);
33 if (!references.namespace_.get()) {
39 references.area_ = references.namespace_->OpenStorageArea(origin);
40 DCHECK(references.area_.get());
41 connections_[connection_id] = references;
  /dalvik/vm/alloc/
MarkSweep.h 62 void dvmEnqueueClearedReferences(Object **references);
  /external/chromium_org/third_party/openssl/openssl/crypto/store/
str_locl.h 118 int references; member in struct:store_st
  /external/openssl/crypto/store/
str_locl.h 118 int references; member in struct:store_st
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
x_info.c 80 ret->references=1;
93 i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_X509_INFO);
x_pkey.c 122 ret->references=1;
133 i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_X509_PKEY);
  /external/openssl/crypto/asn1/
x_info.c 80 ret->references=1;
93 i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_X509_INFO);
x_pkey.c 122 ret->references=1;
133 i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_X509_PKEY);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
GraphReader.java 65 public void addReferencesByKeysAndValues(Object... references) {
66 mReferences.setKeyValues(references);
  /external/chromium_org/tools/grit/grit/tool/
newgrd.py 22 Note that all output references are relative to the output directory
29 <!-- TODO add references to each of the XTB files (from the Translation
32 references are relative to this .grd file. -->
  /external/llvm/test/MC/MachO/ARM/
no-subsections-reloc.s 5 @ When not using subsections-via-symbols, references to non-local symbols
  /art/runtime/gc/accounting/
mod_union_table.cc 96 std::vector<const Object*>* references)
98 references_(references) {
118 std::vector<const Object*>* references)
120 references_(references) {
139 const std::set<const Object*>& references)
141 references_(references) {
155 << "References " << reinterpret_cast<const void*>(ref)
172 const std::set<const Object*>& references)
174 : mod_union_table_(mod_union_table), references_(references) {
198 // Check the references of each clean card which is also in the mod union table
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslnonce.c 169 PORT_Assert((sid->references == 0));
217 PORT_Assert(sid->references >= 1);
218 if (--sid->references == 0) {
260 PORT_Assert(sid->references >= 1);
264 if (sid->expirationTime < now || !sid->references) {
270 now - sid->creationTime, sid->references));
274 if (!sid->references)
296 sid->references++;
367 sid->references++;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 32 to the specified destination path. Updates all references in tests and resources to reflect the new
185 """Attempts to find all references to other files in the supplied list of files. Returns a
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):
221 """Determines the updated references due to the move. Returns a dictionary that maps from an
226 for file_path in references.keys():
228 # sript-tests/TEMPLATE.html files contain references which are written as if the file
234 for reference in references[file_path]
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
mem_dbg.c 158 int references; member in struct:app_mem_info_st
206 if (--(inf->references) <= 0)
373 next->references++;
385 if (--(ret->references) <= 0)
389 next->references--;
425 ami->references=1;
548 amim->references++;
556 mm->app_info->references--;
  /external/chromium_org/v8/test/mjsunit/
debug-referenced-by.js 44 // Add some more references from simple objects and arrays.
80 // This adds a references (function context).
95 // Check circular references.
104 // Check many references.
  /external/clang/utils/
FindSpecRefs 14 ('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/openssl/crypto/
mem_dbg.c 158 int references; member in struct:app_mem_info_st
206 if (--(inf->references) <= 0)
373 next->references++;
385 if (--(ret->references) <= 0)
389 next->references--;
425 ami->references=1;
548 amim->references++;
556 mm->app_info->references--;

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011>>