Searched defs:getValue (Results 226 - 250 of 422) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h125 /// getValue - Return the base address of the memory access. This may either
132 const Value *getValue() const { return PtrInfo.V.dyn_cast<const Value*>(); } function in class:llvm::MachineMemOperand
/external/llvm/include/llvm/IR/
H A DIntrinsicInst.h99 const Value *getValue() const;
100 Value *getValue();
199 Value *getValue() const { return const_cast<Value*>(getArgOperand(1)); } function in class:llvm::MemSetInst
204 assert(getValue()->getType() == Val->getType() &&
/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp82 int getValue() const { function in class:__anon26457::Constructable
125 return c0.getValue() == c1.getValue();
130 return c0.getValue() != c1.getValue();
184 EXPECT_EQ(value, v[i].getValue());
332 EXPECT_EQ(i+1, this->theVector[i].getValue());
349 EXPECT_EQ(1, it->getValue());
353 EXPECT_EQ(2, it->getValue());
358 EXPECT_EQ(2, it->getValue());
[all...]
/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java172 public Object getValue(String name) { method in class:NameValueList
264 Object val = this.getValue(name);
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java116 into.write(percentEncode(toString(parameter.getValue()))
190 map.put(key, toString(f.getValue()));
222 public String getValue() { method in class:OAuth.Parameter
236 return percentEncode(getKey()) + '=' + percentEncode(getValue());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLocationManager.java163 List<Criteria> criteriaList = locationProviderEntry.getValue();
379 public List<Criteria> getValue() { method in class:ShadowLocationManager.LocationProviderEntry
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
H A DTestSharedPreferences.java34 return (String) getValue(key, defValue);
37 private Object getValue(String key, Object defValue) { method in class:TestSharedPreferences
50 return (Integer) getValue(key, defValue);
55 return (Long) getValue(key, defValue);
60 return (Float) getValue(key, defValue);
65 return (Boolean) getValue(key, defValue);
/external/skia/src/animator/
H A DSkMemberInfo.cpp138 void SkMemberInfo::getValue(const SkDisplayable* displayable, SkOperand value[], int count) const { function in class:SkMemberInfo
/external/smack/src/org/jivesoftware/smack/packet/
H A DPrivacyItem.java235 public String getValue() { method in class:PrivacyItem
239 return this.getRule().getValue();
282 if (getValue() != null) {
283 buf.append(" value=\"").append(getValue()).append("\"");
380 public String getValue() { method in class:PrivacyItem.PrivacyRule
/external/smack/src/org/jivesoftware/smackx/
H A DFormField.java354 public String getValue() { method in class:FormField.Option
372 buf.append("<value>").append(StringUtils.escapeForXML(getValue())).append("</value>");
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DAccessFlags.java178 public int getValue() { method in class:AccessFlags
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAX1ParserAdapter.java222 public String getValue(int i) method in class:SAX1ParserAdapter.AttributesWrapper
224 return attrs.getValue(i);
227 public String getValue(String name) method in class:SAX1ParserAdapter.AttributesWrapper
229 return attrs.getValue(name);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java74 public String getValue() {return uri;} method in class:DOM2DTMdefaultNamespaceDeclarationNode
/external/chromium_org/third_party/icu/source/common/
H A Ducharstriebuilder.cpp52 int32_t getValue() const { return value; } function in class:UCharsTrieElement
239 return elements[i].getValue();
H A Duprops.cpp300 IntPropertyGetValue *getValue; member in struct:IntProperty
468 return prop.getValue(prop, c, which);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dmessagepattern.h761 int32_t getValue() const { function in class:MessagePattern::Part
/external/chromium_org/third_party/skia/include/views/
H A DSkWidget.h255 uint16_t getValue() const { return fValue; } function in class:SkProgressView
/external/clang/include/clang/Lex/
H A DLiteralSupport.h172 uint64_t getValue() const { return Value; } function in class:clang::CharLiteralParser
/external/deqp/framework/randomshaders/
H A DrsgBinaryOps.hpp50 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_type); } function in class:rsg::BinaryOp
H A DrsgVariableManager.cpp321 const ValueEntry* VariableManager::getValue (const Variable* variable) const function in class:rsg::VariableManager
H A DrsgVariableValue.hpp318 StridedValueAccess<Stride> getValue (const VariableType& type) { return StridedValueAccess<Stride>(type, &m_value[0]); } function in class:rsg::ValueStorage
319 ConstStridedValueAccess<Stride> getValue (const VariableType& type) const { return ConstStridedValueAccess<Stride>(type, &m_value[0]); } function in class:rsg::ValueStorage
352 ValueAccess getValue (void) { return m_storage.getValue(m_variable->getType()); } function in class:rsg::VariableValue
353 ConstValueAccess getValue (void) const { return m_storage.getValue(m_variable->getType()); } function in class:rsg::VariableValue
/external/deqp/modules/egl/
H A DteglChooseConfigTests.cpp201 EGLint getValue (EGLenum name) function in class:deqp::egl::ChooseConfigSimpleCase
280 attributes.push_back(std::pair<EGLenum, EGLint>(m_attribute, getValue(m_attribute)));
369 EGLint (*getValue)(de::Random& rnd); member in struct:deqp::egl::ChooseConfigRandomCase::AttribSpec
420 out.push_back(std::make_pair(spec.attribute, spec.getValue(rnd)));
/external/guava/guava/src/com/google/common/collect/
H A DTables.java89 public V getValue() { method in class:Tables.ImmutableCell
108 && Objects.equal(getValue(), other.getValue());
114 return Objects.hashCode(getRowKey(), getColumnKey(), getValue());
118 return "(" + getRowKey() + "," + getColumnKey() + ")=" + getValue();
265 cell.getColumnKey(), cell.getRowKey(), cell.getValue());
307 cell.getColumnKey(), cell.getRowKey(), cell.getValue()));
316 cell.getColumnKey(), cell.getRowKey(), cell.getValue()));
476 function.apply(cell.getValue()));
496 cell.getValue(), ge
[all...]
/external/icu/icu4c/source/common/
H A Ducharstriebuilder.cpp52 int32_t getValue() const { return value; } function in class:UCharsTrieElement
239 return elements[i].getValue();
/external/icu/icu4c/source/common/unicode/
H A Dmessagepattern.h761 int32_t getValue() const { function in class:MessagePattern::Part

Completed in 506 milliseconds

1234567891011>>