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

1234567891011>>

/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-multi-link/
H A Dbundle.c26 int getValue() function
/macosx-10.9.5/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.9.5/llvmCore-3425.0.33/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:__anon10733::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.9.5/llvmCore-3425.0.33/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.9.5/llvmCore-3425.0.33/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.9.5/JavaScriptCore-7537.78.1/runtime/
H A DPropertySlot.h68 JSValue getValue(ExecState* exec, PropertyName propertyName) const function in class:JSC::PropertySlot
79 JSValue getValue(ExecState* exec, unsigned propertyName) const function in class:JSC::PropertySlot
127 void setCustom(JSValue slotBase, GetValueFunc getValue) argument
130 ASSERT(getValue);
131 m_getValue = getValue;
136 void setCacheableCustom(JSValue slotBase, GetValueFunc getValue) argument
139 ASSERT(getValue);
140 m_getValue = getValue;
/macosx-10.9.5/Security-55471.14.18/include/security_smime/
H A DsiginfoUtils.cpp55 if(pd->getValue(kMSCompatibilityMode)) {
/macosx-10.9.5/Security-55471.14.18/libsecurity_smime/lib/
H A DsiginfoUtils.cpp55 if(pd->getValue(kMSCompatibilityMode)) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DStringPool.cpp31 S->getValue().Pool = this;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSPrimitiveValue.h236 return getValue<T>();
238 return getValue<T>() / 1000;
240 return getValue<T>();
242 return getValue<T>() * 1000;
270 float getFloatValue(unsigned short unitType, ExceptionCode& ec) const { return getValue<float>(unitType, ec); }
271 float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
272 float getFloatValue() const { return getValue<float>(); }
274 int getIntValue(unsigned short unitType, ExceptionCode& ec) const { return getValue<int>(unitType, ec); }
275 int getIntValue(unsigned short unitType) const { return getValue<int>(unitType); }
276 int getIntValue() const { return getValue<in
278 template<typename T> inline T getValue(unsigned short unitType, ExceptionCode& ec) const { return clampTo<T>(getDoubleValue(unitType, ec)); } function in class:WebCore::CSSPrimitiveValue
279 template<typename T> inline T getValue(unsigned short unitType) const { return clampTo<T>(getDoubleValue(unitType)); } function in class:WebCore::CSSPrimitiveValue
280 template<typename T> inline T getValue() const { return clampTo<T>(getDoubleValue()); } function in class:WebCore::CSSPrimitiveValue
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DSequenceStats.java49 public long getValue() { method in class:SequenceStats
/macosx-10.9.5/WebCore-7537.78.1/plugins/efl/
H A DPluginPackageEfl.cpp53 NPP_GetValueProcPtr getValue = 0;
56 getValue = reinterpret_cast<NPP_GetValueProcPtr>(eina_module_symbol_get(m_module, "NP_GetValue"));
69 NPError err = getValue(0, NPPVpluginNameString, static_cast<void*>(&buffer));
75 err = getValue(0, NPPVpluginDescriptionString, static_cast<void*>(&buffer));
/macosx-10.9.5/CPANInternal-140/XML-XPath/XPath/Node/
H A DComment.pm50 $doch->comment( { Data => $self->getValue } );
82 =head2 getValue / getData
H A DText.pm58 $doch->characters( { Data => $self->getValue } );
84 =head2 getValue / getData
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DStringToOffsetTable.h32 if (Entry.getValue() == -1U) {
40 return Entry.getValue();
/macosx-10.9.5/llvmCore-3425.0.33/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.9.5/llvmCore-3425.0.33/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.9.5/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.9.5/llvmCore-3425.0.33/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.9.5/ICU-511.35/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:__anon1403::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.9.5/llvmCore-3425.0.33/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...]

Completed in 412 milliseconds

1234567891011>>