Searched refs:Pair (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DPair.h35 class Pair : public RefCounted<Pair> { class in namespace:WebCore
37 static PassRefPtr<Pair> create()
39 return adoptRef(new Pair);
41 static PassRefPtr<Pair> create(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second)
43 return adoptRef(new Pair(first, second));
45 virtual ~Pair() { }
59 bool equals(const Pair& other) const { return compareCSSValuePtr(m_first, other.m_first) && compareCSSValuePtr(m_second, other.m_second); }
72 Pair() : m_first(0), m_second(0) { } function in class:WebCore::Pair
73 Pair(PassRefPt function in class:WebCore::Pair
[all...]
H A DCSSPrimitiveValue.h36 class Pair;
298 Pair* getPairValue(ExceptionCode&) const;
299 Pair* getPairValue() const { return m_primitiveUnitType != CSS_PAIR ? 0 : m_value.pair; }
359 void init(PassRefPtr<Pair>);
376 Pair* pair;
H A DCSSToStyleMap.cpp38 #include "Pair.h"
212 if (Pair* pair = primitiveValue->getPairValue()) {
243 Pair* pair = primitiveValue->getPairValue();
279 Pair* pair = primitiveValue->getPairValue();
649 Pair* pair = primitiveValue->getPairValue();
H A DCSSPrimitiveValue.cpp37 #include "Pair.h"
354 void CSSPrimitiveValue::init(PassRefPtr<Pair> p)
846 Pair* CSSPrimitiveValue::getPairValue(ExceptionCode& ec) const
1138 if (Pair* pairValue = getPairValue())
1153 if (Pair* pairValue = getPairValue())
1215 // Pair is not exposed to the CSSOM, no need for a deep clone.
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DDenseMapInfo.h135 typedef std::pair<T, U> Pair; typedef in struct:llvm::DenseMapInfo
139 static inline Pair getEmptyKey() {
143 static inline Pair getTombstoneKey() {
147 static unsigned getHashValue(const Pair& PairVal) {
160 static bool isEqual(const Pair &LHS, const Pair &RHS) {
H A DMapVector.h67 std::pair<KeyT, unsigned> Pair = std::make_pair(Key, 0); local
68 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
/macosx-10.9.5/objc4-551.1/runtime/
H A Dllvm-DenseMapInfo.h151 typedef std::pair<T, U> Pair; typedef in struct:objc::DenseMapInfo
155 static inline Pair getEmptyKey() {
159 static inline Pair getTombstoneKey() {
163 static unsigned getHashValue(const Pair& PairVal) {
176 static bool isEqual(const Pair &LHS, const Pair &RHS) {
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsunfns.c361 sun_item_create (Pair)
362 Lisp_Object Pair;
372 CHECK_LIST_CONS (Pair, Pair);
373 String = Fcar(Pair);
375 Value = Fcdr(Pair);
455 Lisp_Object Value, Pair;
472 Pair = Ffuncall (1, symbol);
473 xpos += XINT (XCDR (Pair));
474 ypos += XINT (XCAR (Pair));
448 Lisp_Object Value, Pair; variable
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DConstantMerge.cpp153 PointerIntPair<Constant*, 1, bool> Pair(Init, hasKnownAlignment(GV));
154 GlobalVariable *&Slot = CMap[Pair];
185 PointerIntPair<Constant*, 1, bool> Pair(Init, hasKnownAlignment(GV));
186 GlobalVariable *Slot = CMap[Pair];
/macosx-10.9.5/llvmCore-3425.0.33/lib/AsmParser/
H A DLLLexer.h87 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
88 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
H A DLLLexer.cpp84 uint64_t Pair[2]) {
85 Pair[0] = 0;
88 Pair[0] *= 16;
89 Pair[0] += parseHexChar(*Buffer);
91 Pair[1] = 0;
93 Pair[1] *= 16;
94 Pair[1] += parseHexChar(*Buffer);
103 uint64_t Pair[2]) {
104 Pair[1] = 0;
107 Pair[
83 HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]) argument
102 FP80HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]) argument
712 uint64_t Pair[2]; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DScalarEvolution.h386 std::pair<DenseMap<const SCEV *, ConstantRange>::iterator, bool> Pair = local
388 if (!Pair.second)
389 Pair.first->second = CR;
390 return Pair.first->second;
396 std::pair<DenseMap<const SCEV *, ConstantRange>::iterator, bool> Pair = local
398 if (!Pair.second)
399 Pair.first->second = CR;
400 return Pair.first->second;
H A DMemoryDependenceAnalysis.h278 /// Pair - The pair of the block and the skip-first-block flag.
279 BBSkipFirstBlockPair Pair; member in struct:llvm::MemoryDependenceAnalysis::NonLocalPointerInfo
/macosx-10.9.5/ruby-104/ruby/ext/openssl/lib/openssl/
H A Dx509.rb72 Pair = /\\(?:[#{Special}]|\\|"|#{HexPair})/
77 (?!["#])((?:#{StringChar}|#{Pair})*)|
79 "((?:#{QuoteChar}|#{Pair})*)"
87 return str.gsub(Pair){
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp912 std::pair<CachedNonLocalPointerInfo::iterator, bool> Pair = local
914 NonLocalPointerInfo *CacheInfo = &Pair.first->second;
918 if (!Pair.second) {
922 CacheInfo->Pair = BBSkipFirstBlockPair();
943 CacheInfo->Pair = BBSkipFirstBlockPair();
962 if (CacheInfo->Pair == BBSkipFirstBlockPair(StartBB, SkipFirstBlock)) {
998 CacheInfo->Pair = BBSkipFirstBlockPair(StartBB, SkipFirstBlock);
1000 CacheInfo->Pair = BBSkipFirstBlockPair();
1169 NLPI.Pair = BBSkipFirstBlockPair();
1183 CacheInfo->Pair
[all...]
H A DScalarEvolution.cpp1413 std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair = local
1415 if (Pair.second) {
1416 NewOps.push_back(Pair.first->first);
1418 Pair.first->second += NewScale;
1426 std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair = local
1428 if (Pair.second) {
1429 NewOps.push_back(Pair.first->first);
1431 Pair.first->second += Scale;
4038 std::pair<DenseMap<const Loop *, BackedgeTakenInfo>::iterator, bool> Pair =
4040 if (!Pair
[all...]
H A DBasicAliasAnalysis.cpp1237 std::pair<AliasCacheTy::iterator, bool> Pair = local
1239 if (!Pair.second)
1240 return Pair.first->second;
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A DSecDbItem.h128 typedef struct Pair *SecDbPairRef;
147 typedef struct Pair struct
151 } Pair; typedef in typeref:struct:Pair
164 /* q_pairs is an array of Pair structs. Elements with indices
214 Pair q_pairs[];
/macosx-10.9.5/llvmCore-3425.0.33/utils/yaml2obj/
H A Dyaml2obj.cpp57 value_type Pair; member in struct:hex_pair_iterator
62 // Initalize Pair.
70 return Pair;
79 Pair = value_type();
80 for (; Current != End && Pair.size() != 2; ++Current) {
85 Pair.push_back(*Current);
87 // Hit the end without getting 2 hex digits. Pair is invalid.
88 if (Pair.size() != 2)
106 typename hex_pair_iterator::value_type Pair = *I; local
108 if (StringRef(Pair
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DShadowStackGC.cpp335 std::pair<CallInst*, AllocaInst*> Pair = std::make_pair( local
338 Roots.push_back(Pair);
340 MetaRoots.push_back(Pair);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DObjCARC.cpp83 std::pair<typename MapTy::iterator, bool> Pair = local
85 if (Pair.second) {
87 Pair.first->second = Num;
91 return Vector[Pair.first->second].second;
96 std::pair<typename MapTy::iterator, bool> Pair = local
98 if (Pair.second) {
100 Pair.first->second = Num;
104 return std::make_pair(Vector.begin() + Pair.first->second, false);
1274 std::pair<CachedResultsTy::iterator, bool> Pair = local
1276 if (!Pair
1611 std::pair<ptr_iterator, bool> Pair = PerPtrTopDown.insert(*MI); local
1642 std::pair<ptr_iterator, bool> Pair = PerPtrBottomUp.insert(*MI); local
2103 std::pair<BasicBlock *, BasicBlock::iterator> Pair = local
2394 std::pair<Instruction *, const Value *> Pair = Worklist.pop_back_val(); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DLocal.cpp727 std::pair<DenseMap<uintptr_t, PHINode *>::iterator, bool> Pair = local
729 if (Pair.second) continue;
731 for (PHINode *OtherPN = Pair.first->second; ; ) {
743 PHINode *Old = Pair.first->second;
744 Pair.first->second = PN;
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-diff/
H A DDifferenceEngine.cpp189 BlockPair Pair = Queue.remove_min(); local
190 diff(Pair.first, Pair.second);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp1000 void DAGTypeLegalizer::GetPairElements(SDValue Pair, argument
1002 DebugLoc dl = Pair.getDebugLoc();
1003 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), Pair.getValueType());
1004 Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, NVT, Pair,
1006 Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, NVT, Pair,
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/tests/
H A Dtcusto1.cpp149 c4_View v3 = v1.Pair(v2);

Completed in 424 milliseconds

12