Searched refs:getValue (Results 1 - 25 of 313) sorted by relevance

1234567891011>>

/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/bundle-multi-link/
H A Dbundle.c26 int getValue() function
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java25 * restrictions see {@link #getValue} and {@link #setValue}.</p>
75 ((value == null) ? (e.getValue() == null)
76 : value.equals(e.getValue()));
96 public final Object getValue() { method in class:MapEntryParameter
H A DStoredEntrySet.java57 return add(entry.getKey(), entry.getValue());
86 cursor.findBoth(entry.getKey(), entry.getValue(), true);
121 cursor.findBoth(entry.getKey(), entry.getValue(), false);
140 Object val = entry.getValue();
H A DStoredMapEntry.java33 oldValue = getValue();
/macosx-10.10/WTF-7600.1.24/wtf/
H A DPossiblyNull.h44 bool getValue(T& out) WARN_UNUSED_RETURN;
49 template <typename T> bool PossiblyNull<T>::getValue(T& out) function in class:WTF::PossiblyNull
/macosx-10.10/llvmCore-3425.0.34/unittests/ADT/
H A DDenseMapTest.cpp54 int getValue() const { return Value; }
64 return Val.getValue() * 37u;
89 typename T::mapped_type getValue(int i = 0) {
145 this->Map[this->getKey()] = this->getValue();
155 EXPECT_EQ(this->getValue(), it->second);
162 EXPECT_EQ(this->getValue(), this->Map.lookup(this->getKey()));
163 EXPECT_EQ(this->getValue(), this->Map[this->getKey()]);
168 this->Map[this->getKey()] = this->getValue();
178 this->Map[this->getKey()] = this->getValue();
188 this->Map[this->getKey()] = this->getValue();
[all...]
H A DSmallVectorTest.cpp58 int getValue() const { function in class:__anon10802::Constructable
77 return c0.getValue() == c1.getValue();
82 return c0.getValue() != c1.getValue();
118 EXPECT_EQ(value, v[i].getValue());
252 EXPECT_EQ(i+1, this->theVector[i].getValue());
269 EXPECT_EQ(1, it->getValue());
273 EXPECT_EQ(2, it->getValue());
278 EXPECT_EQ(2, it->getValue());
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DStringPool.h87 if (S) ++S->getValue().Refcount;
91 if (S) ++S->getValue().Refcount;
98 if (S) ++S->getValue().Refcount;
106 if (--S->getValue().Refcount == 0) {
107 S->getValue().Pool->InternTable.remove(S);
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DValueSymbolTable.cpp28 << *VI->getValue()->getType() << "' Name = '"
59 if (NewName.getValue() == 0) {
81 if (Entry.getValue() == 0) {
98 if (NewName.getValue() == 0) {
114 I->getValue()->dump();
H A DIntrinsicInst.cpp67 const Value *DbgValueInst::getValue() const { function in class:DbgValueInst
71 Value *DbgValueInst::getValue() { function in class:DbgValueInst
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A DsiginfoUtils.cpp55 if(pd->getValue(kMSCompatibilityMode)) {
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A DsiginfoUtils.cpp55 if(pd->getValue(kMSCompatibilityMode)) {
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DStringPool.cpp31 S->getValue().Pool = this;
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DPropertySlot.h77 JSValue getValue(ExecState*, PropertyName) const;
78 JSValue getValue(ExecState*, unsigned propertyName) const;
110 return m_data.custom.getValue;
159 void setCustom(JSObject* slotBase, unsigned attributes, GetValueFunc getValue) argument
161 ASSERT(getValue);
162 m_data.custom.getValue = getValue;
171 void setCacheableCustom(JSObject* slotBase, unsigned attributes, GetValueFunc getValue) argument
173 ASSERT(getValue);
174 m_data.custom.getValue
232 GetValueFunc getValue; member in struct:JSC::PropertySlot::__anon2677::__anon2679
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DSequenceStats.java49 public long getValue() { method in class:SequenceStats
/macosx-10.10/llvmCore-3425.0.34/utils/TableGen/
H A DStringToOffsetTable.h32 if (Entry.getValue() == -1U) {
40 return Entry.getValue();
/macosx-10.10/llvmCore-3425.0.34/lib/TableGen/
H A DRecord.cpp108 int64_t Val = II->getValue();
163 int64_t Value = II->getValue();
199 return IntInit::get(BI->getValue());
206 Result |= Bit->getValue() << i;
733 std::string Name = LHSs->getValue();
737 if (const RecordVal *RV = CurRec->getValue(Name)) {
747 const RecordVal *RV = CurRec->getValue(TemplateArgName);
761 const RecordVal *RV = CurMultiClass->Rec.getValue(MCName);
819 if (LHSs->getValue().empty()) {
897 return StringInit::get(LHSs->getValue()
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp30 return ConstantInt::get(C->getContext(), C->getValue()-1);
62 return ConstantInt::get(C->getType(), ~C->getValue());
176 const APInt &AndRHSV = cast<ConstantInt>(AndRHS)->getValue();
183 const APInt& AddRHS = cast<ConstantInt>(OpRHS)->getValue();
213 AndRHS->getValue() & ShlMask);
215 if (CI->getValue() == ShlMask)
234 AndRHS->getValue() & ShrMask);
236 if (CI->getValue() == ShrMask)
255 AndRHS->getValue() & ShrMask);
323 const APInt& V = Val->getValue();
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSPrimitiveValue.h247 return getValue<T>();
249 return getValue<T>() / 1000;
251 return getValue<T>();
253 return getValue<T>() * 1000;
281 float getFloatValue(unsigned short unitType, ExceptionCode& ec) const { return getValue<float>(unitType, ec); }
282 float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
283 float getFloatValue() const { return getValue<float>(); }
285 int getIntValue(unsigned short unitType, ExceptionCode& ec) const { return getValue<int>(unitType, ec); }
286 int getIntValue(unsigned short unitType) const { return getValue<int>(unitType); }
287 int getIntValue() const { return getValue<in
289 template<typename T> inline T getValue(unsigned short unitType, ExceptionCode& ec) const { return clampTo<T>(getDoubleValue(unitType, ec)); } function in class:WebCore::CSSPrimitiveValue
290 template<typename T> inline T getValue(unsigned short unitType) const { return clampTo<T>(getDoubleValue(unitType)); } function in class:WebCore::CSSPrimitiveValue
291 template<typename T> inline T getValue() const { return clampTo<T>(getDoubleValue()); } function in class:WebCore::CSSPrimitiveValue
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DRawAccessor.java68 Object val = getValue(o, priKeyField);
84 Object val = getValue(o, priKeyField);
108 output.registerPriKeyObject(getValue(o, priKeyField));
124 input.registerPriKeyObject(getValue(o, priKeyField));
186 return getValue(o, fld);
208 private Object getValue(Object o, FieldInfo field) { method in class:RawAccessor
217 Object val = getValue(o, field);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp125 InFlag = Chain.getValue(1);
130 InFlag = Chain.getValue(1);
136 InFlag = Chain.getValue(1);
140 InFlag = Chain.getValue(1);
147 InFlag = Chain.getValue(1);
155 InFlag = Chain.getValue(1);
226 InFlag = Chain.getValue(1);
230 InFlag = Chain.getValue(1);
234 InFlag = Chain.getValue(1);
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Ducharstrietest.cpp307 trie->getValue()!=2000000000
315 trie->getValue()!=44444
328 trie->getValue()!=99999
355 int32_t getValue() const { return value; } function in class:__anon1210::Generator
373 builder_->add(gen.getString(), gen.getValue(), errorCode);
392 int32_t value=gen.getValue();
402 if(!USTRINGTRIE_HAS_VALUE(result) || result!=trie->current() || value!=trie->getValue()) {
404 "next()!=current() or getValue() wrong "
484 if(trie->next(u_n)!=USTRINGTRIE_INTERMEDIATE_VALUE || 6!=trie->getValue()) {
487 // hasUniqueValue() after getValue()
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/ADT/
H A DImmutableMap.h214 value_type_ref operator*() const { return itr->getValue(); }
215 value_type* operator->() const { return &itr->getValue(); }
217 key_type_ref getKey() const { return itr->getValue().first; }
218 data_type_ref getData() const { return itr->getValue().second; }
235 if (T) return &T->getValue().second;
245 return Root ? &(Root->getMaxElement()->getValue()) : 0;
367 value_type_ref operator*() const { return itr->getValue(); }
368 value_type* operator->() const { return &itr->getValue(); }
370 key_type_ref getKey() const { return itr->getValue().first; }
371 data_type_ref getData() const { return itr->getValue()
[all...]
H A DPackedVector.h30 static T getValue(const BitVectorTy &Bits, unsigned Idx) { function in class:llvm::PackedVectorBase
47 static T getValue(const BitVectorTy &Bits, unsigned Idx) { function in class:llvm::PackedVectorBase
95 return Vec.getValue(Vec.Bits, Idx);
127 return base::getValue(Bits, Idx);
/macosx-10.10/llvmCore-3425.0.34/utils/yaml2obj/
H A Dyaml2obj.cpp45 StringRef Value = SN->getValue(Storage);
139 StringRef KeyValue = Key->getValue(Storage);
141 if (!parseHeaderCharacteristics(i->getValue()))
144 yaml::ScalarNode *Value = dyn_cast<yaml::ScalarNode>(i->getValue());
154 StringRef ValueValue = Value->getValue(Storage);
264 StringRef Char = CharValue->getValue(Storage);
328 StringRef KeyValue = Key->getValue(Storage);
330 yaml::ScalarNode *Value = dyn_cast<yaml::ScalarNode>(si->getValue());
334 StringRef Name = Value->getValue(Storage);
391 = dyn_cast<yaml::SequenceNode>(si->getValue());
[all...]

Completed in 246 milliseconds

1234567891011>>