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

1 2 3 4 5 6 7 8 910

  /external/parameter-framework/upstream/parameter/
ParameterBlockType.cpp 55 void CParameterBlockType::populate(CElement *pElement) const function in class:CParameterBlockType
69 base::populate(pChildParameterBlock);
73 base::populate(pElement);
ParameterBlockType.h 49 virtual void populate(CElement *pElement) const;
InstanceDefinition.cpp 55 populate(pFatherElement);
ComponentInstance.cpp 121 void CComponentInstance::populate(CElement *pElement) const function in class:CComponentInstance
134 base::populate(pChildComponent);
136 _pComponentType->populate(pChildComponent);
139 base::populate(pElement);
141 _pComponentType->populate(static_cast<CComponent *>(pElement));
ComponentInstance.h 63 virtual void populate(CElement *pElement) const;
ComponentType.h 44 virtual void populate(CElement *pElement) const;
ComponentType.cpp 80 // Populate children
114 void CComponentType::populate(CElement *pElement) const function in class:CComponentType
116 // Populate children
117 base::populate(pElement);
122 // Populate from extended type
123 _pExtendsComponentType->populate(pElement);
TypeElement.h 86 virtual void populate(CElement *pElement) const;
  /external/parameter-framework/upstream/xmlserializer/
XmlDocSink.h 59 if (!xmlDocSource.populate(serializingContext)) {
XmlMemoryDocSource.h 57 * Implementation of CXmlDocSource::populate() method.
64 virtual bool populate(CXmlSerializingContext &serializingContext);
  /external/guava/guava-gwt/src/com/google/common/collect/
ArrayListMultimap_CustomFieldSerializer.java 37 Multimap_CustomFieldSerializerBase.populate(
HashBasedTable_CustomFieldSerializer.java 32 return Table_CustomFieldSerializerBase.populate(reader, HashBasedTable.create());
HashMultimap_CustomFieldSerializer.java 38 Multimap_CustomFieldSerializerBase.populate(in, HashMultimap.create());
HashMultiset_CustomFieldSerializer.java 36 return (HashMultiset<Object>) Multiset_CustomFieldSerializerBase.populate(
LinkedHashMultiset_CustomFieldSerializer.java 37 Multiset_CustomFieldSerializerBase.populate(
Multiset_CustomFieldSerializerBase.java 27 * {@link #populate(SerializationStreamReader, Multiset)}.
33 static Multiset<Object> populate( method in class:Multiset_CustomFieldSerializerBase
Table_CustomFieldSerializerBase.java 26 * Serializers should delegate to {@link #serialize} and {@link #populate}.
33 static <T extends StandardTable<Object, Object, Object>> T populate( method in class:Table_CustomFieldSerializerBase
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMultimapAsMapImplementsMapTest.java 45 populate(delegate);
ImmutableSetMultimapAsMapImplementsMapTest.java 45 populate(delegate);
UnmodifiableMultimapAsMapImplementsMapTest.java 46 populate(delegate);
ConstrainedMultimapAsMapImplementsMapTest.java 48 populate(delegate);
MultimapsTransformValuesAsMapTest.java 46 populate(delegate);
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CommandList.java 20 public static void populate() { method in class:CommandList
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
BatteryStatsTimeBaseTest.java 40 public void populate(long uptime, long realtime, boolean running, long pastUptime, method in class:BatteryStatsTimeBaseTest.TestTimeBase
172 tb.populate(100, 200, true, 300, 400, 500, 600, 700, 800);
187 tb.populate(100, 200, false, 300, 400, 500, 600, 700, 800);
200 tb.populate(100, 200, false, 300, 400, 500, 600, 700, 800);
214 tb1.populate(100, 200, true, 300, 400, 500, 600, 700, 800);
235 tb1.populate(100, 200, false, 300, 400, 500, 600, 700, 800);
255 tb1.populate(100, 200, true, 300, 400, 500, 600, 700, 800);
266 tb2.populate(1, 2, true, 3, 4, 5, 6, 7, 8);
280 tb.populate(100, 200, true, 300, 400, 500, 600, 50, 60);
299 tb.populate(100, 200, true, 300, 400, 500, 600, 50, 60)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForMapsInJavaUtil.java 160 return populate(new LinkedHashMap<String, String>(), entries);
187 return populate(new TreeMap<String, String>(), entries);
208 return populate(new TreeMap<String, String>(
232 return populate(
254 return populate(new ConcurrentHashMap<String, String>(), entries);
272 return populate(new ConcurrentSkipListMap<String, String>(), entries);
291 return populate(new ConcurrentSkipListMap<String, String>(
310 return populate(new HashMap<String, String>(), entries);
314 // populate() on an empty map
315 private static <T, M extends Map<T, String>> M populate(
    [all...]

Completed in 326 milliseconds

1 2 3 4 5 6 7 8 910