Searched refs:getValue (Results 201 - 225 of 1169) sorted by relevance

1234567891011>>

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DRefSortedMap.java55 public V getValue() { method in class:RefSortedMap.MapEntry
67 ^ (getValue() == null ? 0 : getValue().hashCode());
78 && (getValue() == null ? entry.getValue() == null : getValue()
79 .equals(entry.getValue()));
322 return idx >= 0 ? entries.get(idx).getValue() : null;
341 put(e.getKey(), e.getValue());
352 return entries.remove(idx).getValue();
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDEREnumerated.java28 return new ASN1Enumerated(((DEREnumerated)obj).getValue());
89 public BigInteger getValue() method in class:DEREnumerated
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DPBKDF2Params.java81 return iterationCount.getValue();
88 return keyLength.getValue();
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h42 return Val.hasValue() && Val.getValue();
47 return Val.hasValue() && !Val.getValue();
/external/clang/tools/diagtool/
H A DListWarnings.cpp76 flagHistogram.GetOrCreateValue(entry.Flag).getValue().push_back(diagID);
102 << flagHistogram.GetOrCreateValue("pedantic").getValue().size()
/external/guava/guava-gwt/src/com/google/common/collect/
H A DMultimap_CustomFieldSerializerBase.java75 writer.writeInt(entry.getValue().size());
76 for (Object value : entry.getValue()) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DColorResourceLoader.java31 public int getValue(int colorId) { method in class:ColorResourceLoader
37 Integer colorResolverValue = colorResolver.getValue(resourceName);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DListPreferenceTest.java70 assertThat(listPreference.getValue(), nullValue());
72 assertThat(listPreference.getValue(), equalTo("testing"));
/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/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java133 String str = applyQuotes(currItem.getValue(), openQuote, closeQuote, allowCommas);
317 if (itemValue.equals(arrayNode.getChild(oldChild).getValue()))
534 destSchema = new XMPNode(sourceSchema.getName(), sourceSchema.getValue(),
607 sourceNode.getValue() == null || sourceNode.getValue().length() == 0 :
626 destXMP.setNode(destNode, sourceNode.getValue(), sourceNode.getOptions(), true);
673 sourceItem.getQualifier(1).getValue());
675 (sourceItem.getValue() == null ||
676 sourceItem.getValue().length() == 0))
690 if (!XMPConst.X_DEFAULT.equals(sourceItem.getQualifier(1).getValue())
[all...]
H A DXMPSerializerRDF.java427 appendNodeValue(prop.getValue(), true);
531 appendNodeValue(qualifier.getValue(), true);
596 appendNodeValue(node.getValue(), true);
601 else if (node.getValue() == null || node.getValue().length() == 0)
610 appendNodeValue (node.getValue(), false);
836 String prefix = node.getValue().substring(0, node.getValue().length() - 1);
991 appendNodeValue(qualifier.getValue(), true);
1037 appendNodeValue(node.getValue(), tru
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DConfigResults.java107 return this.baseline.getValue();
250 double buildValue = buildResults.getValue();
252 double baselineValue = baselineResults.getValue();
338 return this.current.getValue();
436 double value = buildResults.getValue(dim_id);
443 double value = buildResults.getValue(dim_id);
506 double baselineValue = this.baseline.getValue();
507 double currentValue = this.current.getValue();
533 buffer.append(Util.timeString((long)this.current.getValue()));
537 buffer.append(Util.timeString((long)this.baseline.getValue()));
[all...]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DSkeletonLoader.java88 angle = SAXUtil.parseFloat(attribs.getValue("angle"));
97 time = SAXUtil.parseFloat(attribs.getValue("time"));
102 String boneName = SAXUtil.parseString(attribs.getValue("bone"));
108 String boneName = attribs.getValue("bone");
109 String parentName = attribs.getValue("parent");
117 bone = new Bone(attribs.getValue("name"));
118 int id = SAXUtil.parseInt(attribs.getValue("id"));
126 String name = SAXUtil.parseString(attribs.getValue("name"));
127 float length = SAXUtil.parseFloat(attribs.getValue("length"));
162 Bone bone = entry.getValue();
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp107 const RecordVal *Filter = MapRec->getValue("FilterClass");
108 FilterClass = Filter->getValue()->getAsUnquotedString();
249 Init *CurInstrVal = CurInstr->getValue(RowFieldsJ)->getValue();
275 RecordVal *ColFieldName = CurInstr->getValue(ColFields->getElement(j));
276 std::string CurInstrVal = ColFieldName->getValue()->getAsUnquotedString();
319 Init *KeyInstrVal = KeyInstr->getValue(RowFieldsJ)->getValue();
338 Init *CurInstrInit = CurInstr->getValue(ColFieldJ)->getValue();
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h68 /// getValue - Returns the data value associated with the tree node.
69 const value_type& getValue() const { return value; } function in class:llvm::ImutAVLTree
76 key_type_ref CurrentKey = ImutInfo::KeyOfValue(T->getValue());
118 if (!ImutInfo::isEqual(ImutInfo::KeyOfValue(getValue()),
123 if (!ImutInfo::isDataEqual(ImutInfo::DataOfValue(getValue()),
131 return isElementEqual(RHS->getValue());
203 ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()),
204 ImutInfo::KeyOfValue(getValue()))) &&
209 ImutInfo::isLess(ImutInfo::KeyOfValue(getValue()),
210 ImutInfo::KeyOfValue(getRight()->getValue())))
429 value_type_ref getValue(TreeTy* T) const { return T->value; } function in class:llvm::ImutAVLFactory
[all...]
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp73 StringRef S(A->getValue());
87 switch (A->getValue()[0]) {
111 StringRef V = A->getValue(Idx);
128 StringRef Name = A->getValue();
144 StringRef Name = A->getValue();
160 StringRef Name = A->getValue();
176 StringRef Name = A->getValue();
192 StringRef Name = A->getValue();
236 StringRef checkerList = A->getValue();
250 StringRef configList = A->getValue();
[all...]
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractReferenceMap.java205 return (entry.getValue() != null);
234 return entry.getValue();
501 list.add(new DefaultMapEntry<K, V>(e.getKey(), e.getValue()));
559 * If getKey() or getValue() returns null, it means
613 public V getValue() { method in class:AbstractReferenceMap.ReferenceEntry
614 return (parent.valueType > HARD) ? refValue.get() : super.getValue();
624 V old = getValue();
653 Object entryValue = entry.getValue(); // convert to hard reference
659 return parent.isEqualKey(entryKey, getKey()) && parent.isEqualValue(entryValue, getValue());
670 return parent.hashEntry(getKey(), getValue());
895 public V getValue() { method in class:AbstractReferenceMap.ReferenceMapIterator
[all...]
H A DAbstractHashedMap.java52 protected static final String GETVALUE_INVALID = "getValue() can only be called after next() and before remove()";
195 return entry.getValue();
250 if (entry.getValue() == null) {
260 if (isEqualValue(value, entry.getValue())) {
284 V oldValue = entry.getValue();
313 put(entry.getKey(), entry.getValue());
330 V oldValue = entry.getValue();
390 * @param value2 the second value extracted from the entry via <code>getValue()</code>
748 public V getValue() { method in class:AbstractHashedMap.HashMapIterator
753 return current.getValue();
1048 public V getValue() { method in class:AbstractHashedMap.HashEntry
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp26 return ConstantInt::get(C->getContext(), C->getValue() + 1);
30 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()
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMap.java58 V previous = delegate.put(key, checkNotNull(entry.getValue()));
122 checkNotNull(entry.getValue());
127 entries.add(entryOf((K) entry.getKey(), (V) entry.getValue()));
134 put(entry.getKey(), entry.getValue());
152 entry.getKey(), entry.getValue());
177 return ImmutableMap.<K, V>of(entry.getKey(), entry.getValue());
182 checkNotNull(e.getKey()), checkNotNull(e.getValue()));
/external/llvm/lib/MC/
H A DMCContext.cpp115 MCSymbol *Sym = Entry.getValue();
132 if (NameEntry->getValue()) {
139 } while (NameEntry->getValue());
249 if (Entry.getValue()) return Entry.getValue();
283 if (Entry.getValue()) return Entry.getValue();
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp141 WriteAsOperand(OS, cast<SCEVConstant>(this)->getValue(), false);
238 WriteAsOperand(OS, U->getValue(), false);
277 return SC->getValue()->isZero();
283 return SC->getValue()->isOne();
289 return SC->getValue()->isAllOnesValue();
304 return SC->getValue()->getValue().isNegative();
388 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
405 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
430 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java174 _value = ((_CacheEntry) entry).getValue();
190 public List<? extends DNSEntry> getValue() { method in class:DNSCache._CacheEntry
210 return this.getValue().isEmpty();
221 return this.getKey().equals(((Map.Entry<?, ?>) entry).getKey()) && this.getValue().equals(((Map.Entry<?, ?>) entry).getValue());
458 aNewValue = new ArrayList<DNSEntry>(oldEntry.getValue());
486 result = existingEntry.getValue().remove(dnsEntry);
488 if (existingEntry.getValue().isEmpty()) {
511 aNewValue = new ArrayList<DNSEntry>(oldEntry.getValue());
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp68 EXPECT_EQ(cast<SCEVConstant>(M0->getOperand(0))->getValue()->getZExtValue(),
70 EXPECT_EQ(cast<SCEVConstant>(M1->getOperand(0))->getValue()->getZExtValue(),
72 EXPECT_EQ(cast<SCEVConstant>(M2->getOperand(0))->getValue()->getZExtValue(),
76 EXPECT_EQ(cast<SCEVUnknown>(M0->getOperand(1))->getValue(), V0);
77 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V1);
78 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V2);
85 EXPECT_EQ(cast<SCEVUnknown>(M0->getOperand(1))->getValue(), V0);
86 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V0);
87 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPublicKey.java78 this.y = derY.getValue();
101 this.dhSpec = new DHParameterSpec(params.getP().getValue(), params.getG().getValue());
154 if (l.getValue().compareTo(BigInteger.valueOf(p.getValue().bitLength())) > 0)

Completed in 1910 milliseconds

1234567891011>>