Searched defs:getValue (Results 176 - 200 of 339) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDelegatedData.java67 public String getValue() { method in class:DelegatedData
68 return getDelegate().getValue();
245 public String getValue(String path, String defaultValue) { method in class:DelegatedData
246 return getDelegate().getValue(path, defaultValue);
255 public String getValue(String path) { method in class:DelegatedData
256 return getDelegate().getValue(path);
/external/jsilver/src/org/clearsilver/
H A DDelegatedHdf.java104 public String getValue(String hdfname, String default_value) { method in class:DelegatedHdf
105 return getHdf().getValue(hdfname, default_value);
H A DHDF.java79 String getValue(String hdfName, String defaultValue); method in interface:HDF
/external/llvm/include/llvm/ADT/
H A DScopedHashTable.h53 const V &getValue() const { return Val; } function in class:llvm::ScopedHashTableVal
54 V &getValue() { return Val; } function in class:llvm::ScopedHashTableVal
121 return Node->getValue();
124 return &Node->getValue();
182 return I->second->getValue();
/external/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h117 /// getValue - Return the base address of the memory access. This may either
124 const Value *getValue() const { return PtrInfo.V; } function in class:llvm::MachineMemOperand
/external/llvm/include/llvm/IR/
H A DIntrinsicInst.h99 const Value *getValue() const;
100 Value *getValue();
194 Value *getValue() const { return const_cast<Value*>(getArgOperand(1)); } function in class:llvm::MemSetInst
197 assert(getValue()->getType() == Val->getType() &&
/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp58 int getValue() const { function in class:__anon21797::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...]
/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/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRawHeaders.java245 public String getValue(int index) { method in class:RawHeaders
269 result.add(getValue(i));
360 List<String> values = entry.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/dexlib/src/main/java/org/jf/dexlib/Util/
H A DAccessFlags.java171 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-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DHashMapTest.java302 && hm.containsValue(m.getValue()));
748 public Object getValue() { method in class:HashMapTest.MockEntry
/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 Duprops.cpp326 IntPropertyGetValue *getValue; member in struct:IntProperty
450 * Properties with mask==0 and getValue==NULL are handled in code.
489 return prop.getValue(prop, c, which);
/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.h157 uint64_t getValue() const { return Value; } function in class:clang::CharLiteralParser
/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/icu4c/common/
H A Ducharstriebuilder.cpp52 int32_t getValue() const { return value; } function in class:UCharsTrieElement
239 return elements[i].getValue();
/external/icu4c/common/unicode/
H A Dmessagepattern.h764 int32_t getValue() const { function in class:MessagePattern::Part

Completed in 623 milliseconds

1234567891011>>