Home
last modified time | relevance | path

Searched refs:removeCount (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/ui/cocoa/
Dnsview_additions_unittest.mm20 @property(readonly, nonatomic) int removeCount; property
27 @synthesize removeCount = removeCount_;
99 EXPECT_EQ(0, [parent removeCount]);
104 EXPECT_EQ(0, [parent removeCount]);
/external/mesa3d/src/mesa/program/
Dprog_optimize.c175 GLint i, removeEnd = 0, removeCount = 0; in remove_instructions() local
182 if (removeCount == 0) { in remove_instructions()
185 removeCount = 1; in remove_instructions()
189 removeCount++; in remove_instructions()
196 if (removeCount > 0) { in remove_instructions()
197 GLint removeStart = removeEnd - removeCount + 1; in remove_instructions()
198 _mesa_delete_instructions(prog, removeStart, removeCount); in remove_instructions()
199 removeStart = removeCount = 0; /* reset removal info */ in remove_instructions()
204 if (removeCount > 0) { in remove_instructions()
205 GLint removeStart = removeEnd - removeCount + 1; in remove_instructions()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprog_optimize.c175 GLint i, removeEnd = 0, removeCount = 0; in remove_instructions() local
182 if (removeCount == 0) { in remove_instructions()
185 removeCount = 1; in remove_instructions()
189 removeCount++; in remove_instructions()
196 if (removeCount > 0) { in remove_instructions()
197 GLint removeStart = removeEnd - removeCount + 1; in remove_instructions()
198 _mesa_delete_instructions(prog, removeStart, removeCount); in remove_instructions()
199 removeStart = removeCount = 0; /* reset removal info */ in remove_instructions()
204 if (removeCount > 0) { in remove_instructions()
205 GLint removeStart = removeEnd - removeCount + 1; in remove_instructions()
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DChangeComponentsComponent.java117 final int removeCount = mComponentsToRemove.getCount(); in activate() local
118 for (int x = 0; x < removeCount; x++) { in activate()
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/
Dmetadata_cache.js538 var removeCount = this.totalCount_ - desiredCount;
552 removeCount = Math.min(removeCount, toRemove.length);
553 this.totalCount_ -= removeCount;
554 for (var index = 0; index < removeCount; index++) {
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
Dbase_unittests.js262 var removeCount = 0;
272 removeCount++;
275 equal(removeCount, 2);
/external/guava/guava/src/com/google/common/collect/
DMultisets.java646 int removeCount = occurrencesToRemove.count(entry.getElement());
647 if (removeCount >= entry.getCount()) {
650 } else if (removeCount > 0) {
651 multisetToModify.remove(entry.getElement(), removeCount);
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp5097 size_t removeCount = nodesToRemoveFromChain.size(); in updateHoverActiveState() local
5098 for (size_t i = 0; i < removeCount; ++i) { in updateHoverActiveState()