/system/connectivity/shill/cellular/ |
cellular_service.h | 81 const Stringmap& olp() const { return olp_; } 86 void set_serving_operator(const Stringmap& serving_operator); 87 const Stringmap& serving_operator() const { return serving_operator_; } 118 Stringmap* GetUserSpecifiedApn(); 119 Stringmap* GetLastGoodApn(); 120 virtual void SetLastGoodApn(const Stringmap& apn_info); 175 Stringmap(CellularService::*get)(Error* error), 176 bool(CellularService::*set)(const Stringmap& value, Error* error)); 186 Stringmap GetApn(Error* error); 187 bool SetApn(const Stringmap& value, Error* error) [all...] |
cellular_service.cc | 64 static bool GetNonEmptyField(const Stringmap& stringmap, 67 Stringmap::const_iterator it = stringmap.find(fieldname); 68 if (it != stringmap.end() && !it->second.empty()) { 152 Stringmap(CellularService::*get)(Error* error), 154 const Stringmap& value, Error* error)) { 158 new CustomAccessor<CellularService, Stringmap>(this, get, set))); 170 Stringmap* CellularService::GetUserSpecifiedApn() { 171 Stringmap::iterator it = apn_info_.find(kApnProperty) [all...] |
cellular_service_unittest.cc | 181 Stringmap test_operator; 188 const Stringmap& serving_operator = service_->serving_operator(); 203 Stringmap olp; 238 Stringmap testapn; 251 Stringmap resultapn = service_->GetApn(&error); 254 Stringmap::const_iterator it = resultapn.find(kApnProperty); 270 Stringmap testapn; 282 Stringmap resultapn = service_->GetApn(&error); 286 Stringmap emptyapn; 306 Stringmap testapn [all...] |
/external/llvm/include/llvm/ADT/ |
StringSet.h | 10 // StringSet - A set-like wrapper for the StringMap. 17 #include "llvm/ADT/StringMap.h" 21 /// StringSet - A wrapper for StringMap that provides set-like functionality. 23 class StringSet : public llvm::StringMap<char, AllocatorTy> { 24 typedef llvm::StringMap<char, AllocatorTy> base;
|
StringMap.h | 1 //===--- StringMap.h - String Hash table map interface ----------*- C++ -*-===// 10 // This file defines the StringMap class. 40 /// StringMapImpl - This is the base class of StringMap that is shared among 114 /// a StringMap. It contains the Value itself and the key: the string length 213 /// StringMap - This is an unconventional map that is specialized for handling 218 class StringMap : public StringMapImpl { 224 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} 225 explicit StringMap(unsigned InitialSize) 228 explicit StringMap(AllocatorTy A) 231 StringMap(unsigned InitialSize, AllocatorTy A [all...] |
/external/llvm/unittests/ADT/ |
StringMapTest.cpp | 1 //===- llvm/unittest/ADT/StringMapMap.cpp - StringMap unit tests ----------===// 11 #include "llvm/ADT/StringMap.h" 21 StringMap<uint32_t> testMap; 54 StringMap<uint32_t>::iterator it = testMap.begin(); 84 const StringMap<uint32_t>& constTestMap = testMap; 139 // StringMap has a tricky corner case when the map is small (<8 buckets) and 142 llvm::StringMap<int> Map(2); 173 for (StringMap<uint32_t>::iterator it = testMap.begin(); 189 StringMap<uint32_t>::value_type* entry = 190 StringMap<uint32_t>::value_type::Create [all...] |
/external/clang/include/clang/StaticAnalyzer/Frontend/ |
ModelConsumer.h | 20 #include "llvm/ADT/StringMap.h" 30 /// This consumer collects the bodies of function definitions into a StringMap 34 ModelConsumer(llvm::StringMap<Stmt *> &Bodies); 39 llvm::StringMap<Stmt *> &Bodies;
|
FrontendActions.h | 14 #include "llvm/ADT/StringMap.h" 40 /// parsed, the function definitions will be collected into a StringMap. 43 ParseModelFileAction(llvm::StringMap<Stmt *> &Bodies); 51 llvm::StringMap<Stmt *> &Bodies;
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfStringPool.h | 13 #include "llvm/ADT/StringMap.h" 30 StringMap<EntryTy, BumpPtrAllocator &> Pool;
|
/external/llvm/lib/Object/ |
RecordStreamer.h | 21 StringMap<State> Symbols; 28 typedef StringMap<State>::const_iterator const_iterator;
|
/frameworks/compile/slang/ |
slang_rs_export_element.h | 24 #include "llvm/ADT/StringMap.h" 49 typedef llvm::StringMap<const ElementInfo*> ElementInfoMapTy;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
UnicodeMap.java | 61 private TreeMap<String,T> stringMap; 78 stringMap = null; 124 that.stringMap = stringMap == null ? null : (TreeMap<String, T>) stringMap.clone(); 396 if (stringMap == null) { 397 stringMap = new TreeMap<String,T>(); 399 stringMap.put(string, value); 401 } else if (stringMap != null) { 402 if (stringMap.remove(string) != null) [all...] |
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
UnicodeMap.java | 60 private TreeMap<String,T> stringMap; 77 stringMap = null; 123 that.stringMap = stringMap == null ? null : (TreeMap<String, T>) stringMap.clone(); 395 if (stringMap == null) { 396 stringMap = new TreeMap<String,T>(); 398 stringMap.put(string, value); 400 } else if (stringMap != null) { 401 if (stringMap.remove(string) != null) [all...] |
/external/llvm/include/llvm/AsmParser/ |
SlotMapping.h | 17 #include "llvm/ADT/StringMap.h" 36 StringMap<Type *> NamedTypes;
|
/external/llvm/test/Transforms/GVN/ |
nonescaping-malloc.ll | 15 %"struct.llvm::StringMap<void*,llvm::MallocAllocator>" = type { %"struct.llvm::StringMapImpl", %"struct.llvm::MallocAllocator" } 22 define %"struct.llvm::StringMapEntry<void*>"* @_Z3fooRN4llvm9StringMapIPvNS_15MallocAllocatorEEEPKc(%"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %X, i8* %P) ssp { 30 %tmp1 = call %"struct.llvm::StringMapEntry<void*>"* @_ZN4llvm9StringMapIPvNS_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %X, %"struct.llvm::StringRef"* %tmp) ssp 40 define linkonce_odr %"struct.llvm::StringMapEntry<void*>"* @_ZN4llvm9StringMapIPvNS_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, %"struct.llvm::StringRef"* nocapture %Key) ssp align 2 { 46 %tmp2.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, i64 0, i32 0 48 %tmp4.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, i64 0, i32 0, i32 0 99 %tmp25.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm::StringMap<void*,llvm::MallocAllocator>"* %this, i64 0, i32 0, i32 [all...] |
/external/jetty/src/java/org/eclipse/jetty/io/ |
BufferCache.java | 25 import org.eclipse.jetty.util.StringMap; 36 private final StringMap _stringMap=new StringMap(StringMap.CASE_INSENSTIVE); 165 ",stringMap="+_stringMap+
|
/external/llvm/include/llvm/Support/ |
SpecialCaseList.h | 51 #include "llvm/ADT/StringMap.h" 90 StringMap<StringMap<Entry>> Entries; 91 StringMap<StringMap<std::string>> Regexps;
|
/external/clang/include/clang/Frontend/ |
PCHContainerOperations.h | 14 #include "llvm/ADT/StringMap.h" 93 llvm::StringMap<std::unique_ptr<PCHContainerWriter>> Writers; 94 llvm::StringMap<std::unique_ptr<PCHContainerReader>> Readers;
|
LayoutOverrideSource.h | 15 #include "llvm/ADT/StringMap.h" 39 llvm::StringMap<Layout> Layouts;
|
/system/connectivity/shill/ |
accessor_interface.h | 69 typedef std::map<std::string, std::string> Stringmap; 70 typedef std::vector<Stringmap> Stringmaps; 86 typedef std::shared_ptr<AccessorInterface<Stringmap>> StringmapAccessor;
|
/external/llvm/lib/Support/ |
SpecialCaseList.cpp | 142 for (StringMap<StringMap<std::string>>::const_iterator I = Regexps.begin(), 145 for (StringMap<std::string>::const_iterator II = I->second.begin(), 160 StringMap<StringMap<Entry> >::const_iterator I = Entries.find(Section); 162 StringMap<Entry>::const_iterator II = I->second.find(Category);
|
/external/llvm/include/llvm/TableGen/ |
StringToOffsetTable.h | 15 #include "llvm/ADT/StringMap.h" 26 StringMap<unsigned> StringOffset;
|
/external/llvm/tools/dsymutil/ |
NonRelocatableStringpool.h | 23 /// \brief Entries are stored into the StringMap and simply linked 26 typedef StringMap<std::pair<uint32_t, StringMapEntryBase *>, BumpPtrAllocator>
|
/frameworks/compile/mclinker/include/mcld/LD/ |
MergedStringTable.h | 14 #include <llvm/ADT/StringMap.h> 26 typedef llvm::StringMap<size_t> StringMapTy;
|
/external/clang/lib/StaticAnalyzer/Frontend/ |
FrontendActions.cpp | 21 ParseModelFileAction::ParseModelFileAction(llvm::StringMap<Stmt *> &Bodies)
|