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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
PR4611-bitfield-layout.c 6 } entries; variable in typeref:struct:object_entry
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DirectoryCategory.java 21 private DirectoryEntry[] entries; field in class:DirectoryCategory
23 public DirectoryCategory(String name, DirectoryEntry[] entries) {
25 this.entries = entries;
33 return entries.length;
37 return entries[i];
  /external/webkit/Source/WebKit2/Shared/
ImmutableArray.cpp 35 ImmutableArray::ImmutableArray(APIObject** entries, size_t size)
39 m_entries[i] = entries[i];
42 ImmutableArray::ImmutableArray(Vector<RefPtr<APIObject> >& entries)
44 m_entries.swap(entries);
  /external/chromium/net/base/
net_log_unittest.cc 21 CapturingNetLog::EntryList entries; local
22 log.GetEntries(&entries);
23 EXPECT_EQ(1u, entries.size());
24 EXPECT_TRUE(LogContainsBeginEvent(entries, 0, NetLog::TYPE_REQUEST_ALIVE));
27 log.GetEntries(&entries);
28 EXPECT_EQ(2u, entries.size());
29 EXPECT_TRUE(LogContainsEndEvent(entries, 1, NetLog::TYPE_REQUEST_ALIVE));
net_log_unittest.h 24 const CapturingNetLog::EntryList& entries,
32 static_cast<size_t>(static_cast<int>(entries.size()) + i) :
34 if (j >= entries.size())
36 const CapturingNetLog::Entry& entry = entries[j];
96 const CapturingNetLog::EntryList& entries,
101 static_cast<size_t>(static_cast<int>(entries.size()) + i) :
103 if (j >= entries.size())
105 const CapturingNetLog::Entry& entry = entries[j];
116 const CapturingNetLog::EntryList& entries,
121 for (; i < entries.size(); ++i)
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser.cc 23 // Fills in |raw_name| for all |entries| using |encoding|. Returns network
26 std::vector<FtpDirectoryListingEntry>* entries) {
27 for (size_t i = 0; i < entries->size(); i++) {
28 if (!base::UTF16ToCodepage(entries->at(i).name, encoding.c_str(),
30 &entries->at(i).raw_name)) {
38 // Parses |text| as an FTP directory listing. Fills in |entries|
43 std::vector<FtpDirectoryListingEntry>* entries,
50 entries->clear();
51 if (ParseFtpDirectoryListingLs(lines, current_time, entries)) {
53 return FillInRawName(encoding, entries);
    [all...]
ftp_directory_listing_parser_windows_unittest.cc 64 std::vector<FtpDirectoryListingEntry> entries; local
67 &entries));
68 VerifySingleLineTestCase(good_cases[i], entries);
81 std::vector<FtpDirectoryListingEntry> entries; local
84 &entries));
85 EXPECT_EQ(0U, entries.size());
117 std::vector<FtpDirectoryListingEntry> entries; local
120 &entries));
ftp_directory_listing_parser_vms_unittest.cc 64 std::vector<FtpDirectoryListingEntry> entries; local
66 &entries));
67 VerifySingleLineTestCase(good_cases[i], entries);
118 std::vector<FtpDirectoryListingEntry> entries; local
120 &entries));
146 std::vector<FtpDirectoryListingEntry> entries; local
148 &entries));
155 std::vector<FtpDirectoryListingEntry> entries; local
157 &entries));
ftp_directory_listing_parser_ls.h 24 std::vector<FtpDirectoryListingEntry>* entries);
ftp_directory_listing_parser_netware.h 25 std::vector<FtpDirectoryListingEntry>* entries);
ftp_directory_listing_parser_vms.h 20 std::vector<FtpDirectoryListingEntry>* entries);
ftp_directory_listing_parser_windows.h 20 std::vector<FtpDirectoryListingEntry>* entries);
  /external/webkit/Source/WebCore/fileapi/
EntriesCallback.idl 36 boolean handleEvent(in EntryArray entries);
EntryArraySync.cpp 40 PassRefPtr<EntryArraySync> EntryArraySync::create(EntryArray* entries)
43 if (entries) {
44 for (unsigned i = 0; i < entries->length(); ++i)
45 entriesSync->append(EntrySync::create(entries->item(i)));
  /ndk/sources/host-tools/sed-4.2.1/lib/
set-mode-acl.c 267 ace_t *entries;
280 entries = (ace_t *) malloc (count * sizeof (ace_t));
281 if (entries == NULL)
287 ? facl (desc, ACE_GETACL, count, entries)
288 : acl (name, ACE_GETACL, count, entries))
295 if (entries[i].a_flags & (ACE_OWNER | ACE_GROUP | ACE_OTHER))
300 free (entries);
303 /* Huh? The number of ACL entries changed since the last call.
305 free (entries);
311 ace_t entries[3]
    [all...]
file-has-acl.c 50 /* acl is non-trivial if it has some entries other than for "user::",
126 Return 1 if the given ACL, consisting of COUNT entries, is non-trivial.
129 acl_nontrivial (int count, aclent_t *entries)
135 aclent_t *ace = &entries[i];
154 Return 1 if the given ACL, consisting of COUNT entries, is non-trivial.
157 acl_ace_nontrivial (int count, ace_t *entries)
170 if (entries[i].a_flags & (ACE_OWNER | ACE_GROUP | ACE_OTHER))
180 ace_t *ace = &entries[i];
196 ace_t *ace = &entries[i];
221 acl_nontrivial (int count, struct acl_entry *entries, struct stat *sb
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
StdConstantPool.java 29 /** {@code non-null;} array of entries */
30 private final Constant[] entries; field in class:StdConstantPool
47 entries = new Constant[size];
52 return entries.length;
58 return entries[n];
77 Constant result = entries[n];
107 if (n == (entries.length - 1)) {
111 entries[n + 1] = null;
114 if ((cst != null) && (entries[n] == null)) {
119 Constant prev = entries[n - 1]
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 29 /** {@code non-null;} array of entries */
30 private final Constant[] entries; field in class:StdConstantPool
47 entries = new Constant[size];
52 return entries.length;
58 return entries[n];
77 Constant result = entries[n];
107 if (n == (entries.length - 1)) {
111 entries[n + 1] = null;
114 if ((cst != null) && (entries[n] == null)) {
119 Constant prev = entries[n - 1]
    [all...]
  /external/valgrind/main/none/tests/darwin/
access_extended.c 20 struct accessx_descriptor* entries = malloc(entries_szB); local
21 char* string1 = (char*)&entries[3];
26 entries[0].ad_name_offset = string1 - (char*)entries;
27 entries[1].ad_name_offset = 0; // reuse the previous entry's string
28 entries[2].ad_name_offset = string2 - (char*)entries;
29 entries[0].ad_flags = F_OK; // succeeds
30 entries[1].ad_flags = X_OK; // fails
31 entries[2].ad_flags = F_OK; // fail
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_CheckVLCEscapeMode.c 67 OMX_U8 escape = 0, fMode = 0, entries; local
76 entries = pRunIndexTable[run + 1]
80 entries = 1;
82 if (level > entries)
104 entries = pRunIndexTable[run + 1]
108 entries = 1;
110 if (levelPlus > entries)
129 entries = pRunIndexTable[runPlus + 1]
133 entries = 1;
135 if (level > entries)
    [all...]
  /external/speex/libspeex/
vq.h 40 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries);
41 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries);
45 void vq_nbest(spx_word16_t *in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack);
47 void vq_nbest_sign(spx_word16_t *in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack);
49 void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack);
51 void vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack);
  /frameworks/base/core/tests/coretests/src/android/preference/
ListPreferenceTest.java 24 String[] entries = { "one", "two", "three" }; local
27 lp.setEntries(entries);
34 assertEquals(entries[1], lp.getSummary());
37 assertEquals(entries[2], lp.getSummary());
43 assertEquals("The color is " + entries[2], lp.getSummary());
  /external/javassist/src/main/javassist/tools/reflect/
Compiler.java 78 CompiledClass[] entries = new CompiledClass[args.length]; local
79 int n = parse(args, entries);
86 processClasses(entries, n);
89 private static void processClasses(CompiledClass[] entries, int n)
97 CtClass c = pool.get(entries[i].classname);
98 if (entries[i].metaobject != null
99 || entries[i].classobject != null) {
102 if (entries[i].metaobject == null)
105 metaobj = entries[i].metaobject;
107 if (entries[i].classobject == null
    [all...]
  /external/icu4c/layout/
SingleTableProcessor.cpp 38 const LookupSingle *entries = singleTableLookupTable->entries; local
43 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(entries, glyphStorage[glyph]);
  /external/e2fsprogs/lib/ext2fs/
brel_ma.c 43 struct ext2_block_relocate_entry *entries; member in struct:brel_ma
79 sizeof(struct ext2_block_relocate_entry), &ma->entries);
82 memset(ma->entries, 0, size);
112 ma->entries[(unsigned)old] = *ent;
124 if (ma->entries[(unsigned)old].new == 0)
126 *ent = ma->entries[old];
143 if (ma->entries[(unsigned)brel->current].new == 0)
146 *ent = ma->entries[(unsigned)brel->current];
160 if (ma->entries[(unsigned)old].new == 0)
162 ma->entries[(unsigned)new] = ma->entries[old]
    [all...]

Completed in 1721 milliseconds

1 2 3 4 5 6 7 8 91011>>