Home
last modified time | relevance | path

Searched refs:HasProperty (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/clang/test/Refactor/Extract/
DObjCProperty.m3 @interface HasProperty interface
5 @property (strong) HasProperty *item;
7 - (HasProperty *)implicitProp;
9 - (void)setImplicitSetter:(HasProperty *)value; argument
13 @implementation HasProperty implementation
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dshared_prefs_test.py66 self.assertTrue(prefs.HasProperty('myValue'))
69 self.assertFalse(prefs.HasProperty('myValue'))
174 self.assertFalse(prefs.HasProperty('someHashValue'))
176 self.assertTrue(prefs.HasProperty('databaseVersion')) # still there
Dshared_prefs.py343 def HasProperty(self, key): member in SharedPrefs
/external/icing/icing/index/main/
Dmain-index.cc76 found = exact || hits_in_prefix_section.HasProperty(tvi); in FindShortestValidTermWithPrefixHits()
186 if (!exact && !hits_in_prefix_section.HasProperty(main_itr.GetValueIndex())) { in GetAccessorForPrefixTerm()
209 if (property_reader.HasProperty(GetNamespacePropertyId(namespace_id), in IsTermInNamespaces()
368 if (!has_prefix_prop_reader.HasProperty(other_term_itr.GetValueIndex())) { in AddBranchPoints()
438 if (!prop_reader.HasProperty(property_id, other_tvi) && in CopyProperties()
448 if (prop_reader.HasProperty(property_id, other_tvi) && in CopyProperties()
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
DHasPropertyTest.java7 import static org.hamcrest.beans.HasProperty.hasProperty;
/external/icing/icing/legacy/index/
Dicing-dynamic-trie_test.cc616 EXPECT_TRUE(reader.HasProperty(val_idx)); in TEST_F()
617 EXPECT_FALSE(reader.HasProperty(1000)); in TEST_F()
625 EXPECT_FALSE(reader.HasProperty(val_idx)); in TEST_F()
640 EXPECT_TRUE(reader.HasProperty(val_idx)); in TEST_F()
685 EXPECT_TRUE(readers.HasProperty(i, val_idx[j])); in TEST_F()
704 EXPECT_TRUE(readers.HasProperty(i, val_idx[j])); in TEST_F()
706 EXPECT_FALSE(readers.HasProperty(i, val_idx[j])); in TEST_F()
Dicing-dynamic-trie.h452 bool HasProperty(uint32_t value_index) const;
488 bool HasProperty(uint32_t property_id, uint32_t value_index) const;
Dicing-dynamic-trie.cc994 if (del_prop_.HasProperty(value_index)) { in SuffixToValueAsString()
999 if (all_props_.HasProperty(i, value_index)) { in SuffixToValueAsString()
1348 if (prop_readers.HasProperty(i, value_index)) { in Compact()
2538 bool IcingDynamicTrie::PropertyReaderBase::HasProperty( in HasProperty() function in icing::lib::IcingDynamicTrie::PropertyReaderBase
2573 bool IcingDynamicTrie::PropertyReadersAll::HasProperty( in HasProperty() function in icing::lib::IcingDynamicTrie::PropertyReadersAll
/external/llvm/lib/CodeGen/
DMachineFunction.cpp61 bool HasProperty = Properties[i]; in print() local
62 if (OnlySet && !HasProperty) in print()
66 ROS << (HasProperty ? "SSA, " : "Post SSA, "); in print()
69 ROS << (HasProperty ? "" : "not ") << "tracking liveness, "; in print()
72 ROS << (HasProperty ? "AllVRegsAllocated" : "HasVRegs"); in print()
/external/icing/icing/index/
Dindex.cc82 if (property_reader.HasProperty(GetNamespacePropertyId(namespace_id), in IsTermInNamespaces()
/external/pdfium/fxjs/xfa/
Dcfxjse_resolveprocessor.cpp278 if (curNode->HasProperty(pChild->GetElementType())) in ResolveNormal()
445 if (parentNode->HasProperty(child->GetElementType())) { in ResolveNormal()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.h96 bool HasProperty(XFA_Element property) const;
Dcxfa_node.cpp1053 bool CXFA_Node::HasProperty(XFA_Element property) const { in HasProperty() function in CXFA_Node
1177 if (HasProperty(pChild->GetElementType())) { in GetNodeListWithFilter()
1523 if (bOnlyChild && HasProperty(pNode->GetElementType())) in CountChildren()
1538 if (bOnlyChild && HasProperty(pNode->GetElementType())) in GetChildInternal()
1672 if (!parent->HasProperty(GetElementType())) { in GetSiblings()
5010 return parent && parent->HasProperty(GetElementType()); in IsProperty()