Searched defs:Key (Results 126 - 150 of 190) sorted by relevance

12345678

/external/clang/include/clang/AST/
H A DExprObjC.h214 Expr *Key; member in struct:clang::ObjCDictionaryElement
236 /// \brief Internal struct for storing Key/value pair.
238 Expr *Key; member in struct:clang::ObjCDictionaryLiteral_KeyValuePair
312 ObjCDictionaryElement Result = { KV.Key, KV.Value, SourceLocation(), None };
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp1014 bool checkDuplicateOrUnknownKey(yaml::Node *KeyNode, StringRef Key, argument
1016 if (!Keys.count(Key)) {
1020 KeyStatus &S = Keys[Key];
1022 error(KeyNode, Twine("duplicate key '") + Key + "'");
1132 StringRef Key; local
1136 if (!parseScalarString(I->getKey(), Key, Buffer))
1139 if (!checkDuplicateOrUnknownKey(I->getKey(), Key, Keys))
1143 if (Key == "name") {
1157 } else if (Key == "type") {
1168 } else if (Key
1314 StringRef Key; local
[all...]
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1301 const WeakObjectProfileTy &Key = P.second->first; local
1310 if (Key.isExactProfile())
1325 const NamedDecl *KeyProp = Key.getProperty();
H A DSemaExprObjC.cpp1010 ExprResult Key = CheckObjCCollectionLiteralElement(*this, Element.Key, local
1012 if (Key.isInvalid())
1021 Element.Key = Key.get();
1027 if (!Element.Key->containsUnexpandedParameterPack() &&
1031 << SourceRange(Element.Key->getLocStart(),
/external/flatbuffers/include/flatbuffers/
H A Dflexbuffers.h748 void Null(const char *key) { Key(key); Null(); }
751 void Int(const char *key, int64_t i) { Key(key); Int(i); }
754 void UInt(const char *key, uint64_t u) { Key(key); Int(u); }
757 void Float(const char *key, float f) { Key(key); Float(f); }
760 void Double(const char *key, double d) { Key(key); Double(d); }
763 void Bool(const char *key, bool b) { Key(key); Bool(b); }
769 Key(key);
777 Key(key);
785 Key(key);
793 Key(ke
797 size_t Key(const char *str, size_t len) { function in class:flexbuffers::FLATBUFFERS_FINAL_CLASS
815 size_t Key(const char *str) { return Key(str, strlen(str)); } function in class:flexbuffers::FLATBUFFERS_FINAL_CLASS
816 size_t Key(const std::string &str) { return Key(str.c_str(), str.size()); } function in class:flexbuffers::FLATBUFFERS_FINAL_CLASS
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1938 const SCEV *Key = SE.getMulExpr(MulOps); local
1939 auto Pair = M.insert({Key, NewScale});
10329 const SCEV *Key = N->getExpr();
10330 assert(Key && "Only SCEVUnionPredicate doesn't have an "
10333 SCEVToPreds[Key].push_back(N);
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp740 ValueType &operator[](const SUList &Key) { argument
/external/llvm/lib/IR/
H A DLLVMContextImpl.h61 static unsigned getHashValue(const APInt &Key) { argument
62 return static_cast<unsigned>(hash_value(Key));
72 static unsigned getHashValue(const APFloat &Key) { argument
73 return static_cast<unsigned>(hash_value(Key));
105 static unsigned getHashValue(const KeyTy& Key) { argument
106 return hash_combine(hash_combine_range(Key.ETypes.begin(),
107 Key.ETypes.end()),
108 Key.isPacked);
152 static unsigned getHashValue(const KeyTy& Key) { argument
153 return hash_combine(Key
948 getHashValue(const KeyTy &Key) argument
[all...]
/external/llvm/lib/Linker/
H A DIRMover.cpp812 auto *Key = dyn_cast<GlobalValue>(
814 if (!Key)
816 GlobalValue *DGV = getLinkedToGlobal(Key);
817 return !shouldLink(DGV, *Key);
1281 unsigned IRMover::StructTypeKeyInfo::getHashValue(const KeyTy &Key) { argument
1282 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
1283 Key.IsPacked);
1325 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked);
1326 auto I = NonOpaqueStructTypes.find_as(Key);
[all...]
/external/llvm/lib/MC/
H A DMCDwarf.cpp1471 static unsigned getHashValue(const CIEKey &Key) { argument
1473 hash_combine(Key.Personality, Key.PersonalityEncoding, Key.LsdaEncoding,
1474 Key.IsSignalFrame, Key.IsSimple));
1536 CIEKey Key(Frame.Personality, Frame.PersonalityEncoding,
1538 const MCSymbol *&CIEStart = IsEH ? CIEStarts[Key] : DummyDebugKey;
/external/llvm/lib/TableGen/
H A DRecord.cpp1279 typedef std::pair<RecTy *, Init *> Key; typedef
1280 static DenseMap<Key, std::unique_ptr<VarInit>> ThePool;
1282 Key TheKey(std::make_pair(T, VN));
1354 typedef std::pair<TypedInit *, unsigned> Key; typedef
1355 static DenseMap<Key, std::unique_ptr<VarBitInit>> ThePool;
1357 Key TheKey(std::make_pair(T, B));
1385 typedef std::pair<TypedInit *, unsigned> Key; typedef
1386 static DenseMap<Key, std::unique_ptr<VarListElementInit>> ThePool;
1388 Key TheKey(std::make_pair(T, E));
1456 typedef std::pair<Init *, TableGenStringKey> Key; typedef
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolution.cpp1406 const SCEV *Key = SE.getMulExpr(MulOps); local
1408 M.insert(std::make_pair(Key, NewScale));
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DRecord.cpp724 typedef std::pair<std::pair<unsigned, Init *>, RecTy *> Key; typedef
726 typedef DenseMap<Key, UnOpInit *> Pool;
729 Key TheKey(std::make_pair(std::make_pair(opc, lhs), Type));
873 > Key; typedef
875 typedef DenseMap<Key, BinOpInit *> Pool;
878 Key TheKey(std::make_pair(std::make_pair(std::make_pair(opc, lhs), rhs),
991 > Key; typedef
993 typedef DenseMap<Key, TernOpInit *> Pool;
996 Key TheKey(std::make_pair(std::make_pair(std::make_pair(std::make_pair(opc,
1301 typedef std::pair<RecTy *, TableGenStringKey> Key; typedef
1396 typedef std::pair<TypedInit *, unsigned> Key; typedef
1420 typedef std::pair<TypedInit *, unsigned> Key; typedef
1490 typedef std::pair<Init *, TableGenStringKey> Key; typedef
[all...]
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp3091 const ObjCContainerDecl *Key = local
3093 if (const ASTRecordLayout *Entry = ObjCLayouts[Key])
3118 ObjCLayouts[Key] = NewEntry;
/external/clang/lib/CodeGen/
H A DCGObjC.cpp160 const Expr *Key = DLE->getKeyValueElement(i).Key; local
164 llvm::Value *keyValue = EmitScalarExpr(Key);
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp416 BindingKey Key = BindingKey::Make(R, BindingKey::Default); variable
417 if (B.lookup(Key)) {
424 B = B.addBinding(Key, V);
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h2345 // Implements Key(inner_matcher) for the given argument pair type.
2346 // Key(inner_matcher) matches an std::pair whose 'first' field matches
2347 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
2392 // Implements polymorphic Key(matcher_for_key).
3136 // EXPECT_THAT(page_lengths, Each(Key(Le(3))));
3145 // Key(inner_matcher) matches an std::pair whose 'first' field matches
3146 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
3149 inline internal::KeyMatcher<M> Key(M inner_matcher) { function in namespace:testing
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp976 auto Key = std::make_pair(V1, V2); local
978 std::swap(Key.first, Key.second);
979 CachedCombinedShadow &CCS = CachedCombinedShadows[Key];
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmscgats.c1123 cmsBool IsAvailableOnList(KEYVALUE* p, const char* Key, const char* Subkey, KEYVALUE** LastPtr) argument
1131 if (*Key != '#') { // Comments are ignored
1133 if (cmsstrcasecmp(Key, p->Keyword) == 0)
1161 KEYVALUE* AddToList(cmsIT8* it8, KEYVALUE** Head, const char *Key, const char *Subkey, const char* xValue, WRITEMODE WriteAs) argument
1169 if (IsAvailableOnList(*Head, Key, Subkey, &p)) {
1173 // return SynError(it8, "duplicate key <%s>", Key);
1188 p->Keyword = AllocString(it8, Key);
1229 KEYVALUE* AddAvailableProperty(cmsIT8* it8, const char* Key, WRITEMODE as) argument
1231 return AddToList(it8, &it8->ValidKeywords, Key, NULL, NULL, as);
1236 KEYVALUE* AddAvailableSampleID(cmsIT8* it8, const char* Key) argument
1355 cmsIT8SetPropertyStr(cmsHANDLE hIT8, const char* Key, const char *Val) argument
1385 cmsIT8SetPropertyUncooked(cmsHANDLE hIT8, const char* Key, const char* Buffer) argument
1392 cmsIT8SetPropertyMulti(cmsHANDLE hIT8, const char* Key, const char* SubKey, const char *Buffer) argument
1400 cmsIT8GetProperty(cmsHANDLE hIT8, const char* Key) argument
1422 cmsIT8GetPropertyMulti(cmsHANDLE hIT8, const char* Key, const char *SubKey) argument
1924 KEYVALUE* Key; local
[all...]
/external/v8/src/compiler/
H A Deffect-control-linearizer.cc61 typedef std::pair<int32_t, int32_t> Key; typedef in class:v8::internal::compiler::__anon21551::BlockEffectControlMap
62 typedef ZoneMap<Key, BlockEffectControlData> Map;
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp2126 StringRef Key = KeyString->getValue(KeyStorage); local
2134 if (Key == "file") {
2139 } else if (Key == "offset") {
2142 } else if (Key == "remove") {
2145 } else if (Key == "text") {
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2631 // Transforms std::pair<const Key, Value> into std::pair<Key, Value>
2934 // Implements Key(inner_matcher) for the given argument pair type.
2935 // Key(inner_matcher) matches an std::pair whose 'first' field matches
2936 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
2981 // Implements polymorphic Key(matcher_for_key).
4309 // EXPECT_THAT(page_lengths, Each(Key(Le(3))));
4318 // Key(inner_matcher) matches an std::pair whose 'first' field matches
4319 // inner_matcher. For example, Contains(Key(Ge(5))) can be used to match an
4322 inline internal::KeyMatcher<M> Key( function in namespace:testing
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1077 SmallVector<const SCEV *, 2> Key = F.BaseRegs; local
1078 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1080 std::sort(Key.begin(), Key.end());
1081 return Uniquifier.count(Key);
1087 SmallVector<const SCEV *, 2> Key = F.BaseRegs; local
1088 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1090 std::sort(Key.begin(), Key.end());
1092 if (!Uniquifier.insert(Key)
2936 SmallVector<const SCEV *, 2> Key; local
[all...]
H A DObjCARC.cpp114 const_iterator find(KeyT Key) const {
115 typename MapTy::const_iterator It = Map.find(Key);
124 void blot(KeyT Key) { argument
125 typename MapTy::iterator It = Map.find(Key);
/external/v8/src/regexp/
H A Djsregexp.h240 typedef uc32 Key; typedef in class:v8::internal::DispatchTable::Config

Completed in 943 milliseconds

12345678