HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 151 - 175 of 2434) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/jetty/src/java/org/eclipse/jetty/webapp/
ClasspathPattern.java 32 * When an entry starts with '-' (minus), reverse matching is performed.
33 * When an entry ends with '.' (period), prefix matching is performed.
41 private static class Entry
49 final private List<Entry> _entries = new ArrayList<Entry>();
92 Entry entry = null; local
95 entry = createEntry(pattern);
96 if (entry != null) {
98 _entries.add(entry);
114 Entry entry = null; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.h 34 class ARMPLT0 : public PLT::Entry<sizeof(arm_plt0)> {
39 class ARMPLT1 : public PLT::Entry<sizeof(arm_plt1)> {
55 // hasPLT1 - return if this plt section has any plt1 entry
  /hardware/libhardware/modules/camera/
VendorTags.cpp 35 // Describes a single vendor tag entry
36 struct Entry {
45 const Entry* tags;
48 // Entry arrays for each section
49 const Entry DemoWizardry[demo_wizardry_end - demo_wizardry_start] = {
60 const Entry DemoSorcery[demo_sorcery_end - demo_sorcery_start] = {
67 const Entry DemoMagic[demo_magic_end - demo_magic_start] = {
108 // Get a static handle to a specific vendor tag entry
109 const Entry* getEntry(uint32_t tag)
171 const Entry* entry = getEntry(tag) local
181 const Entry* entry = getEntry(tag); local
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 89 FeedContract.Entry._ID,
90 FeedContract.Entry.COLUMN_NAME_ENTRY_ID,
91 FeedContract.Entry.COLUMN_NAME_TITLE,
92 FeedContract.Entry.COLUMN_NAME_LINK,
93 FeedContract.Entry.COLUMN_NAME_PUBLISHED};
208 final List<FeedParser.Entry> entries = feedParser.parse(stream);
215 HashMap<String, FeedParser.Entry> entryMap = new HashMap<String, FeedParser.Entry>();
216 for (FeedParser.Entry e : entries) {
222 Uri uri = FeedContract.Entry.CONTENT_URI; // Get all entrie
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 89 FeedContract.Entry._ID,
90 FeedContract.Entry.COLUMN_NAME_ENTRY_ID,
91 FeedContract.Entry.COLUMN_NAME_TITLE,
92 FeedContract.Entry.COLUMN_NAME_LINK,
93 FeedContract.Entry.COLUMN_NAME_PUBLISHED};
208 final List<FeedParser.Entry> entries = feedParser.parse(stream);
215 HashMap<String, FeedParser.Entry> entryMap = new HashMap<String, FeedParser.Entry>();
216 for (FeedParser.Entry e : entries) {
222 Uri uri = FeedContract.Entry.CONTENT_URI; // Get all entrie
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncAdapter.java 89 FeedContract.Entry._ID,
90 FeedContract.Entry.COLUMN_NAME_ENTRY_ID,
91 FeedContract.Entry.COLUMN_NAME_TITLE,
92 FeedContract.Entry.COLUMN_NAME_LINK,
93 FeedContract.Entry.COLUMN_NAME_PUBLISHED};
208 final List<FeedParser.Entry> entries = feedParser.parse(stream);
215 HashMap<String, FeedParser.Entry> entryMap = new HashMap<String, FeedParser.Entry>();
216 for (FeedParser.Entry e : entries) {
222 Uri uri = FeedContract.Entry.CONTENT_URI; // Get all entrie
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 97 Iterator<Entry> it = sparseIterator();
98 Entry e;
112 Iterator<Entry> it = sparseIterator();
113 Entry e;
124 Iterator<Entry> it = sparseIterator();
125 Entry e;
140 Iterator<Entry> it = sparseIterator();
141 Entry e;
178 Iterator<Entry> it = sparseIterator();
179 Entry e
305 final Entry entry = iterator.next(); local
331 final Entry entry = iterator.next(); local
    [all...]
  /art/runtime/
type_lookup_table.cc 50 return SupportedSize(num_class_defs) ? RoundUpToPowerOfTwo(num_class_defs) * sizeof(Entry) : 0u;
75 entries_(storage != nullptr ? reinterpret_cast<Entry*>(storage) : new Entry[mask_ + 1]),
77 static_assert(alignof(Entry) == 4u, "Expecting Entry to be 4-byte aligned.");
78 DCHECK_ALIGNED(storage, alignof(Entry));
88 Entry entry; local
89 entry.str_offset = str_id.string_data_off_;
90 entry.data = MakeData(i, hash, GetSizeMask())
102 Entry entry; local
138 const Entry* entry = &entries_[pos]; local
    [all...]
  /external/v8/src/compiler/
node-cache.cc 24 struct NodeCache<Key, Hash, Pred>::Entry {
35 Entry* old_entries = entries_;
39 entries_ = zone->NewArray<Entry>(num_entries);
40 memset(entries_, 0, sizeof(Entry) * num_entries);
44 Entry* old = &old_entries[i];
50 Entry* entry = &entries_[j]; local
51 if (!entry->value_) {
52 entry->key_ = old->key_;
53 entry->value_ = old->value_
72 Entry* entry = &entries_[hash & (kInitialSize - 1)]; local
82 Entry* entry = &entries_[i]; local
94 Entry* entry = &entries_[hash & (size_ - 1)]; local
    [all...]
  /frameworks/base/core/java/android/os/
DropBoxManager.java 50 /** Flag value: Entry's content was deleted to save space. */
63 * Broadcast Action: This is broadcast when a new entry is added in the dropbox.
82 * when the entry was created.
87 * A single entry retrieved from the drop box.
91 public static class Entry implements Parcelable, Closeable {
99 /** Create a new empty Entry with no contents. */
100 public Entry(String tag, long millis) {
110 /** Create a new Entry with plain text contents. */
111 public Entry(String tag, long millis, String text) {
123 * Create a new Entry with byte array contents
325 Entry entry = new Entry(tag, 0, file, flags); local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapTestSuiteBuilder.java 57 import java.util.Map.Entry;
69 TestMultimapGenerator<K, V, M>, M, Map.Entry<K, V>> {
106 ? extends OneSizeTestContainerGenerator<M, Map.Entry<K, V>>>
141 extends OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
152 extends OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
163 OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
174 OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
190 OneSizeTestContainerGenerator<M, Map.Entry<K, V>>> parentBuilder) {
283 for (Map.Entry<Feature<?>, Feature<?>> entry : GET_FEATURE_MAP.entries())
347 Map.Entry<K, Collection<V>> entry = (Entry<K, Collection<V>>) o; local
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStats.java 98 public static class Entry {
115 public Entry() {
119 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
124 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets,
130 public Entry(String iface, int uid, int set, int tag, int roaming, long rxBytes,
153 public void add(Entry another) {
179 if (o instanceof Entry) {
180 final Entry e = (Entry) o;
257 NetworkStats.Entry entry = null local
325 final Entry entry = recycle != null ? recycle : new Entry(); local
402 NetworkStats.Entry entry = null; local
499 final Entry entry = getTotal(null); local
539 final Entry entry = recycle != null ? recycle : new Entry(); local
626 final Entry entry = new Entry(); local
686 final Entry entry = new Entry(); local
715 final Entry entry = new Entry(); local
744 Entry entry = new Entry(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
LinkedHashMapTest.java 38 Map.Entry<String, String> newest = null;
39 for (Map.Entry<String, String> e : m.entrySet()) {
59 Map.Entry<String, String> newest = null;
60 for (Map.Entry<String, String> e : m.entrySet()) {
68 for (Map.Entry<String, String> e : m.entrySet()) {
91 Map.Entry<String, String> newest = null;
92 for (Map.Entry<String, String> e : m.entrySet()) {
101 for (Map.Entry<String, String> e : m.entrySet()) {
118 Map.Entry<String, String> newest = null;
119 for (Map.Entry<String, String> e : m.entrySet())
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularImmutableMap.java 32 RegularImmutableMap(Entry<? extends K, ? extends V>... entries) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestMapGenerator.java 30 extends TestContainerGenerator<Map<K, V>, Map.Entry<K, V>> {
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsFilterEntriesAsMapTest.java 24 import java.util.Map.Entry;
34 private static final Predicate<Map.Entry<String, Integer>> PREDICATE
35 = new Predicate<Map.Entry<String, Integer>>() {
36 @Override public boolean apply(Entry<String, Integer> entry) {
37 return !"badkey".equals(entry.getKey()) && 55556 != entry.getValue();
  /external/llvm/lib/Target/Mips/
MipsOptimizePICCall.cpp 86 /// instruction and load the function address from object Entry.
87 unsigned getCount(ValueType Entry);
90 /// that loads from object Entry.
91 unsigned getReg(ValueType Entry);
94 void incCntAndSetReg(ValueType Entry, unsigned Reg);
215 ValueType Entry;
218 if (!isCallViaRegister(*I, Reg, Entry))
222 unsigned N = getCount(Entry);
229 getCallTargetRegOpnd(*I)->setReg(getReg(Entry));
237 if (Entry)
    [all...]
  /external/llvm/test/MC/MachO/ARM/
data-in-code.s 25 @ CHECK: Entry {
31 @ CHECK: Entry {
37 @ CHECK: Entry {
43 @ CHECK: Entry {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
Mp4TrackImpl.java 35 private List<TimeToSampleBox.Entry> decodingTimeEntries;
36 private List<CompositionTimeToSample.Entry> compositionTimeEntries;
38 private List<SampleDependencyTypeBox.Entry> sampleDependencies;
50 decodingTimeEntries = new LinkedList<TimeToSampleBox.Entry>();
51 compositionTimeEntries = new LinkedList<CompositionTimeToSample.Entry>();
52 sampleDependencies = new LinkedList<SampleDependencyTypeBox.Entry>();
84 for (TrackRunBox.Entry entry : trun.getEntries()) {
87 decodingTimeEntries.get(decodingTimeEntries.size() - 1).getDelta() != entry.getSampleDuration()) {
88 decodingTimeEntries.add(new TimeToSampleBox.Entry(1, entry.getSampleDuration()))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
IndexSection.java 40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
OffsetSection.java 40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
SimpleCache.java 35 protected boolean removeEldestEntry(final Map.Entry<K, V> eldest) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java 18 import com.android.gallery3d.common.Entry;
22 @Entry.Table("download")
23 public class DownloadEntry extends Entry {
26 public static interface Columns extends Entry.Columns {
  /system/security/keystore/
auth_token_table.cpp 53 Entry new_entry(auth_token, clock_function_());
56 LOG_W("Auth token table filled up; replacing oldest entry", 0);
111 entries_, [&](Entry& e) { return e.token()->challenge == op_handle && !e.completed(); });
127 Entry* newest_match = NULL;
128 for (auto& entry : entries_)
129 if (entry.SatisfiesAuth(sids, auth_type) && entry.is_newer_than(newest_match))
130 newest_match = &entry;
153 void AuthTokenTable::RemoveEntriesSupersededBy(const Entry& entry) {
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableEnumMap.java 42 Entry<K, V> entry = Iterables.getOnlyElement(map.entrySet()); local
43 return ImmutableMap.of(entry.getKey(), entry.getValue());
99 ImmutableSet<Entry<K, V>> createEntrySet() {
108 public UnmodifiableIterator<Entry<K, V>> iterator() {
109 return new UnmodifiableIterator<Entry<K, V>>() {
110 private final Iterator<Entry<K, V>> backingIterator = delegate.entrySet().iterator();
118 public Entry<K, V> next() {
119 Entry<K, V> entry = backingIterator.next()
    [all...]

Completed in 389 milliseconds

1 2 3 4 5 67 8 91011>>