Searched refs:entries (Results 1 - 25 of 548) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A DPR4611-bitfield-layout.c6 } entries; variable in typeref:struct:object_entry
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DVertexCache.java40 int[] entries; field in class:VertexCache
49 entries = new int[numEntries];
56 if(entries[i] == entry)
67 removed = entries[numEntries - 1];
72 entries[i + 1] = entries[i];
75 entries[0] = entry;
81 Arrays.fill(entries,-1);
85 return entries[index];
89 entries[inde
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DImmutableArray.cpp35 ImmutableArray::ImmutableArray(APIObject** entries, size_t size) argument
39 m_entries[i] = entries[i];
42 ImmutableArray::ImmutableArray(Vector<RefPtr<APIObject> >& entries) argument
44 m_entries.swap(entries);
/external/chromium/net/base/
H A Dnet_log_unittest.cc21 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));
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser.cc23 // 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);
25 FillInRawName(const std::string& encoding, std::vector<FtpDirectoryListingEntry>* entries) argument
40 ParseListing(const string16& text, const std::string& encoding, const base::Time& current_time, std::vector<FtpDirectoryListingEntry>* entries, FtpServerType* server_type) argument
80 DecodeAndParse(const std::string& text, const base::Time& current_time, std::vector<FtpDirectoryListingEntry>* entries, FtpServerType* server_type) argument
115 ParseFtpDirectoryListing(const std::string& text, const base::Time& current_time, std::vector<FtpDirectoryListingEntry>* entries) argument
[all...]
H A Dftp_directory_listing_parser_windows_unittest.cc64 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));
H A Dftp_directory_listing_parser_vms_unittest.cc64 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));
/external/webkit/Source/WebCore/fileapi/
H A DEntriesCallback.idl36 boolean handleEvent(in EntryArray entries);
H A DEntryArraySync.cpp40 PassRefPtr<EntryArraySync> EntryArraySync::create(EntryArray* entries) argument
43 if (entries) {
44 for (unsigned i = 0; i < entries->length(); ++i)
45 entriesSync->append(EntrySync::create(entries->item(i)));
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DStdConstantPool.java29 /** {@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[
[all...]
/external/valgrind/main/none/tests/darwin/
H A Daccess_extended.c20 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[
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DProgressiveDownloadInformationBox.java15 List<Entry> entries = Collections.emptyList(); field in class:ProgressiveDownloadInformationBox
23 return 4 + entries.size() * 8;
29 for (Entry entry : entries) {
36 return entries;
39 public void setEntries(List<Entry> entries) { argument
40 this.entries = entries;
46 entries = new LinkedList<Entry>();
49 entries.add(entry);
91 "entries
[all...]
H A DTimeToSampleBox.java38 * The sample entries are ordered by decoding time stamps; therefore the deltas are all non-negative. <br>
47 List<Entry> entries = Collections.emptyList(); field in class:TimeToSampleBox
55 return 8 + entries.size() * 8;
62 entries = new ArrayList<Entry>(entryCount);
65 entries.add(new Entry(IsoTypeReader.readUInt32(content), IsoTypeReader.readUInt32(content)));
73 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
74 for (Entry entry : entries) {
81 return entries;
84 public void setEntries(List<Entry> entries) { argument
85 this.entries
131 blowupTimeToSamples(List<TimeToSampleBox.Entry> entries) argument
[all...]
H A DCompositionTimeToSample.java48 List<Entry> entries = Collections.emptyList(); field in class:CompositionTimeToSample
55 return 8 + 8 * entries.size();
59 return entries;
62 public void setEntries(List<Entry> entries) { argument
63 this.entries = entries;
70 entries = new ArrayList<Entry>(numberOfEntries);
73 entries.add(e);
80 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
82 for (Entry entry : entries) {
130 blowupCompositionTimes(List<CompositionTimeToSample.Entry> entries) argument
[all...]
H A DSampleDependencyTypeBox.java41 private List<Entry> entries = new ArrayList<Entry>(); field in class:SampleDependencyTypeBox
101 return 4 + entries.size();
107 for (Entry entry : entries) {
116 entries.add(new Entry(IsoTypeReader.readUInt8(content)));
121 return entries;
124 public void setEntries(List<Entry> entries) { argument
125 this.entries = entries;
132 sb.append("{entries=").append(entries);
[all...]
H A DSampleToChunkBox.java38 List<Entry> entries = Collections.emptyList(); field in class:SampleToChunkBox
47 return entries;
50 public void setEntries(List<Entry> entries) { argument
51 this.entries = entries;
55 return entries.size() * 12 + 8;
63 entries = new ArrayList<Entry>(entryCount);
65 entries.add(new Entry(
75 IsoTypeWriter.writeUInt32(byteBuffer, entries.size());
76 for (Entry entry : entries) {
[all...]
/external/speex/libspeex/
H A Dvq.h40 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);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularImmutableMap.java32 RegularImmutableMap(Entry<? extends K, ? extends V>... entries) { argument
33 super(entries);
/external/javassist/src/main/javassist/tools/reflect/
H A DCompiler.java78 CompiledClass[] entries = new CompiledClass[args.length];
79 int n = parse(args, entries);
86 processClasses(entries, n);
89 private static void processClasses(CompiledClass[] entries, int n) argument
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[
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapCreationTester.java81 Entry<K, V>[] entries = createSamplesArray();
82 entries[getNullLocation()] = entry(null, null);
83 resetMap(entries);
84 expectContents(entries);
103 Entry<K, V>[] entries = getEntriesMultipleNullKeys();
105 resetMap(entries);
114 Entry<K, V>[] entries = getEntriesMultipleNonNullKeys();
116 resetMap(entries);
123 Entry<K, V>[] entries = createArrayWithNullKey();
124 entries[
134 expectFirstRemoved(Entry<K, V>[] entries) argument
[all...]
/external/linux-tools-perf/util/
H A Dpstack.c21 void *entries[0]; member in struct:pstack
48 if (self->entries[i] == key) {
50 memmove(self->entries + i,
51 self->entries + i + 1,
66 self->entries[self->top++] = key;
78 ret = self->entries[--self->top];
79 self->entries[self->top] = NULL;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/dece/
H A DTrickPlayBox.java24 private List<Entry> entries = new ArrayList<Entry>(); field in class:TrickPlayBox
30 public void setEntries(List<Entry> entries) { argument
31 this.entries = entries;
35 return entries;
81 return 4 + entries.size();
88 entries.add(new Entry(IsoTypeReader.readUInt8(content)));
95 for (Entry entry : entries) {
104 sb.append("{entries=").append(entries);
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
H A DFontTableBox.java17 List<FontRecord> entries = new LinkedList<FontRecord>(); field in class:FontTableBox
26 for (FontRecord fontRecord : entries) {
39 entries.add(fr);
45 IsoTypeWriter.writeUInt16(byteBuffer, entries.size());
46 for (FontRecord record : entries) {
52 return entries;
55 public void setEntries(List<FontRecord> entries) { argument
56 this.entries = entries;
/external/icu4c/layout/
H A DSingleTableProcessor.cpp38 const LookupSingle *entries = singleTableLookupTable->entries; local
43 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(entries, glyphStorage[glyph]);
/external/chromium/chrome/browser/resources/options/
H A Dpassword_manager.js97 * |entries|.
98 * @param {Array} entries The list of saved password data.
100 setSavedPasswordsList_: function(entries) {
101 this.savedPasswordsList_.dataModel = new ArrayDataModel(entries);
107 * from |entries|.
108 * @param {Array} entries The list of password exception data.
110 setPasswordExceptionsList_: function(entries) {
111 this.passwordExceptionsList_.dataModel = new ArrayDataModel(entries);
148 PasswordManager.setSavedPasswordsList = function(entries) {
149 PasswordManager.getInstance().setSavedPasswordsList_(entries);
[all...]

Completed in 512 milliseconds

1234567891011>>