HomeSort by relevance Sort by last modified time
    Searched refs:entries (Results 226 - 250 of 1273) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/webui/quota_internals/
quota_internals_proxy.cc 126 void QuotaInternalsProxy::DidDumpQuotaTable(const QuotaTableEntries& entries) {
128 host_info.reserve(entries.size());
131 for (iterator itr(entries.begin()); itr != entries.end(); ++itr) {
141 const OriginInfoTableEntries& entries) {
143 origin_info.reserve(entries.size());
146 for (iterator itr(entries.begin()); itr != entries.end(); ++itr) {
  /external/chromium_org/net/ftp/
ftp_directory_listing_parser_netware.cc 41 std::vector<FtpDirectoryListingEntry>* entries) {
90 entries->push_back(entry);
  /external/chromium_org/tools/cygprofile/
cygprofile.h 94 // Flushes the provided vector of entries to a file and clears it. Note that
96 void Flush(std::vector<LogEntry>* entries) const;
101 void FlushInternal(std::vector<LogEntry>* entries) const;
111 // Callback used to flush entries.
cygprofile.cc 229 void ThreadLog::Flush(std::vector<LogEntry>* entries) const {
230 flush_callback_.Run(entries);
233 void ThreadLog::FlushInternal(std::vector<LogEntry>* entries) const {
244 for (std::vector<LogEntry>::const_iterator it = entries->begin();
245 it != entries->end(); ++it) {
250 STLClearObject(entries);
301 std::vector<LogEntry> entries; member in struct:cygprofile::LogData
334 thread_log->TakeEntries(&logs.back().entries);
339 if (!it->entries.empty())
340 it->thread_log->Flush(&it->entries);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractSetMultimap.java 69 @Override public Set<Map.Entry<K, V>> entries() { method in class:AbstractSetMultimap
70 return (Set<Map.Entry<K, V>>) super.entries();
MapConstraints.java 80 * @param constraint the constraint that validates added entries
101 * @param constraint the constraint that validates added entries
122 * @param constraint the constraint that validates added entries
143 * @param constraint the constraint that validates added entries
164 * @param constraint the constraint that validates added entries
231 * Returns a constrained view of the specified set of {@code asMap} entries,
238 * @param entries the entries to constrain
239 * @param constraint the constraint for the entries
240 * @return a constrained view of the entries
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMapTest.java 120 Entry<String, String>[] entries) {
122 for (Entry<String, String> entry : entries) {
141 Entry<String, String>[] entries) {
144 for (Entry<String, String> entry : entries) {
161 Entry<String, String>[] entries) {
164 for (Entry<String, String> entry : entries) {
185 List<Entry<String, String>> entries) {
188 for (Entry<String, String> entry : entries) {
  /external/harfbuzz_ng/util/
hb-ot-shape-closure.cc 44 GOptionEntry entries[] = local
49 parser->add_group (entries,
  /external/libvorbis/vq/
vqgen.h 37 /* entries */
41 long entries; member in struct:vqgen
70 int elements,int aux,int entries,float mindist,
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
TwoSecondIntersectionFinder.java 43 List<TimeToSampleBox.Entry> entries = track.getDecodingTimeEntries(); local
64 for (TimeToSampleBox.Entry entry : entries) {
  /external/chromium_org/chrome/installer/util/
shell_util.cc 181 // encapsulate all the registry entries required for registering Chrome at one
218 // This method returns a list of all the registry entries that
220 // These entries need to be registered in HKLM prior to Win8.
224 ScopedVector<RegistryEntry>* entries) {
232 // For user-level installs: entries for the app id and DelegateExecute verb
233 // handler will be in HKCU; thus we do not need a suffix on those entries.
251 entries->push_back(new RegistryEntry(model_id_shell,
257 // mitigate this side-effect by making the context menu entries
278 entries->push_back(new RegistryEntry(sub_path, verb_name.c_str()));
280 entries->push_back(new RegistryEntry
678 ScopedVector<RegistryEntry> entries; local
692 ScopedVector<RegistryEntry> entries; local
892 ScopedVector<RegistryEntry> entries; local
922 ScopedVector<RegistryEntry> entries; local
2085 ScopedVector<RegistryEntry> entries; local
    [all...]
  /external/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.cc 123 std::vector<AutofillEntry> entries; local
124 if (!LoadAutofillData(&entries)) {
132 for (std::vector<AutofillEntry>::iterator it = entries.begin();
133 it != entries.end(); ++it) {
141 // Go through and check for all the entries that sync already knows about.
142 // CreateOrUpdateEntry() will remove entries that are same with the synced
194 std::vector<AutofillEntry> entries; local
195 if (!LoadAutofillData(&entries))
198 for (std::vector<AutofillEntry>::iterator it = entries.begin();
199 it != entries.end(); ++it)
221 std::vector<AutofillEntry> entries; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
search_operation.cc 41 const ScopedVector<google_apis::FileResource>& entries = file_list->items(); local
42 result->reserve(entries.size());
43 for (size_t i = 0; i < entries.size(); ++i) {
46 entries[i]->file_id(), &local_id);
54 if (!ConvertFileResourceToResourceEntry(*entries[i], &entry,
56 continue; // Skip non-file entries.
145 // ResolveSearchResultOnBlockingPool() may add entries newly created on the
  /external/chromium_org/net/dns/
dns_hosts_unittest.cc 19 void PopulateExpectedHosts(const ExpectedHostsEntry* entries,
23 DnsHostsKey key(entries[i].host, entries[i].family);
26 ASSERT_TRUE(ParseIPLiteralToNumber(entries[i].ip, &ip_ref));
28 (entries[i].family == ADDRESS_FAMILY_IPV4) ? 4u : 16u);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEMorphologyElement.cpp 33 DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ());
34 if (entries.isEmpty()) {
35 entries.append(std::make_pair(FEMORPHOLOGY_OPERATOR_ERODE, "erode"));
36 entries.append(std::make_pair(FEMORPHOLOGY_OPERATOR_DILATE, "dilate"));
38 return entries;
SVGMarkerElement.cpp 34 DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ());
35 if (entries.isEmpty()) {
36 entries.append(std::make_pair(SVGMarkerUnitsUserSpaceOnUse, "userSpaceOnUse"));
37 entries.append(std::make_pair(SVGMarkerUnitsStrokeWidth, "strokeWidth"));
39 return entries;
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIPortMap.h 23 explicit MIDIPortMap(const HeapHashMap<String, Member<T> >& entries) : m_entries(entries) { }
28 Iterator* entries();
32 Iterator* iterator(ScriptState*, ExceptionState&) { return entries(); }
108 Iterator* MIDIPortMap<T>::entries() function in class:blink::MIDIPortMap
  /external/chromium_org/third_party/ots/src/
metrics.cc 117 metrics->entries.reserve(num_metrics);
138 metrics->entries.push_back(std::make_pair(adv, sb));
164 for (unsigned i = 0; i < metrics->entries.size(); ++i) {
165 if (!out->WriteU16(metrics->entries[i].first) ||
166 !out->WriteS16(metrics->entries[i].second)) {
vdmx.cc 93 group.entries.reserve(group.recs);
109 if ((j != 0) && (group.entries[j - 1].y_pel_height >= vt.y_pel_height)) {
115 group.entries.push_back(vt);
160 for (unsigned j = 0; j < group.entries.size(); ++j) {
161 const OpenTypeVDMXVTable& vt = group.entries[j];
  /external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
lightsymbols.cc 73 int entries = 0; local
78 if (entries <= id + 1) {
79 entries = id + 1;
93 if (log) { fprintf(log, "entries: %i\n", entries);fflush(log); }
95 SZ* __fileNames = new SZ[entries];
  /external/chromium_org/third_party/skia/tools/skpdiff/
skpdiff_util.cpp 107 bool get_directory(const char path[], SkTArray<SkString>* entries) {
115 // Loop through dir entries until there are none left (i.e. readdir returns NULL)
124 entries->push_back(SkString(entry->d_name));
155 entries->push_back(SkString(findFileData.cFileName));
166 bool glob_files(const char globPattern[], SkTArray<SkString>* entries) {
178 entries->push_back(SkString(*paths));
  /external/conscrypt/src/platform/java/org/conscrypt/
CertPinManager.java 37 private final Map<String, PinListEntry> entries = new HashMap<String, PinListEntry>(); field in class:CertPinManager
99 entries.put(pin.getCommonName(), pin);
144 return entries.get(cn);
152 return entries.get(cn);
165 for (String cn : entries.keySet()) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
scripts.c 27 struct list_head entries; member in struct:perf_script_browser
127 INIT_LIST_HEAD(&script.entries);
163 list_add_tail(&sline->node, &script.entries);
182 script.b.entries = &script.entries;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
hamt.c 52 STAILQ_HEAD(HAMTEntryHead, HAMTEntry) entries;
123 STAILQ_INIT(&hamt->entries);
168 /* delete entries */
169 while (!STAILQ_EMPTY(&hamt->entries)) {
171 entry = STAILQ_FIRST(&hamt->entries);
172 STAILQ_REMOVE_HEAD(&hamt->entries, next);
191 STAILQ_FOREACH(entry, &hamt->entries, next) {
202 return STAILQ_FIRST(&hamt->entries);
237 STAILQ_INSERT_TAIL(&hamt->entries, entry, next);
296 STAILQ_INSERT_TAIL(&hamt->entries, entry, next)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
EC3TrackImpl.java 33 List<BitStreamInfo> entries = new LinkedList<BitStreamInfo>(); field in class:EC3TrackImpl
59 for (BitStreamInfo entry : entries) {
65 entries.add(bsi);
73 if (entries.size() == 0) {
76 samplerate = entries.get(0).samplerate;
86 int[] deps = new int[entries.size()];
87 int[] chan_locs = new int[entries.size()];
88 for (BitStreamInfo bsi : entries) {
94 for (BitStreamInfo bsi : entries) {
433 ", entries=" + entries
    [all...]

Completed in 948 milliseconds

1 2 3 4 5 6 7 8 91011>>