/external/protobuf/objectivec/google/protobuf/ |
D | Api.pbobjc.m | 87 .hasIndex = 0, 96 .hasIndex = GPBNoHasBit, 105 .hasIndex = GPBNoHasBit, 114 .hasIndex = 1, 123 .hasIndex = 2, 132 .hasIndex = GPBNoHasBit, 141 .hasIndex = 3, 208 .hasIndex = 0, 217 .hasIndex = 1, 226 .hasIndex = 2, [all …]
|
D | Type.pbobjc.m | 122 .hasIndex = 0, 131 .hasIndex = GPBNoHasBit, 140 .hasIndex = GPBNoHasBit, 149 .hasIndex = GPBNoHasBit, 158 .hasIndex = 1, 167 .hasIndex = 2, 241 .hasIndex = 0, 250 .hasIndex = 1, 259 .hasIndex = 2, 268 .hasIndex = 3, [all …]
|
D | Struct.pbobjc.m | 107 .hasIndex = GPBNoHasBit, 162 .hasIndex = -1, 171 .hasIndex = -1, 180 .hasIndex = -1, 189 .hasIndex = -1, 198 .hasIndex = -1, 207 .hasIndex = -1, 275 .hasIndex = GPBNoHasBit,
|
D | Wrappers.pbobjc.m | 71 .hasIndex = 0, 116 .hasIndex = 0, 161 .hasIndex = 0, 206 .hasIndex = 0, 251 .hasIndex = 0, 296 .hasIndex = 0, 340 .hasIndex = 0, 385 .hasIndex = 0, 430 .hasIndex = 0,
|
D | Duration.pbobjc.m | 73 .hasIndex = 0, 82 .hasIndex = 1,
|
D | Any.pbobjc.m | 73 .hasIndex = 0, 82 .hasIndex = 1,
|
D | Timestamp.pbobjc.m | 73 .hasIndex = 0, 82 .hasIndex = 1,
|
D | SourceContext.pbobjc.m | 71 .hasIndex = 0,
|
D | FieldMask.pbobjc.m | 71 .hasIndex = GPBNoHasBit,
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | StackMapType.java | 49 if (hasIndex()) { in StackMapType() 104 if (hasIndex()) { in dump() 112 public final boolean hasIndex() { in hasIndex() method in StackMapType
|
D | StackMapEntry.java | 237 return 1 + (types_of_stack_items[0].hasIndex() ? 3 : 1); in getMapEntrySize() 239 return 3 + (types_of_stack_items[0].hasIndex() ? 3 : 1); in getMapEntrySize() 247 len += types_of_local.hasIndex() ? 3 : 1; in getMapEntrySize() 253 len += types_of_local.hasIndex() ? 3 : 1; in getMapEntrySize() 256 len += types_of_stack_item.hasIndex() ? 3 : 1; in getMapEntrySize()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/ |
D | PropertyMetadataTest.java | 77 assertFalse(md.hasIndex()); in testPropertyMetadata() 79 assertTrue(md.hasIndex()); in testPropertyMetadata()
|
/external/protobuf/objectivec/ |
D | GPBDescriptor.m | 85 static NSArray *NewFieldsArrayForHasIndex(int hasIndex, 89 static NSArray *NewFieldsArrayForHasIndex(int hasIndex, 93 if (fieldDesc->description_->hasIndex == hasIndex) { 187 for (uint32_t i = 0, hasIndex = firstHasIndex; i < count; ++i, --hasIndex) { 189 NSArray *fieldsForOneof = NewFieldsArrayForHasIndex(hasIndex, fields_); 191 @"No fields for this oneof? (%s:%d)", name, hasIndex); 512 // If there is a positive hasIndex, then: 517 if ((coreDesc->hasIndex >= 0) && 518 (coreDesc->hasIndex != GPBNoHasBit) &&
|
D | GPBDescriptor_PackagePrivate.h | 95 int32_t hasIndex; member 272 return field->description_->hasIndex; in GPBFieldHasIndex()
|
D | GPBUtilities_PackagePrivate.h | 194 return GPBGetHasIvar(self, fieldDesc->hasIndex, fieldDesc->number); in GPBGetHasIvarField() 199 GPBSetHasIvar(self, fieldDesc->hasIndex, fieldDesc->number, value); in GPBSetHasIvarField()
|
/external/llvm/lib/CodeGen/ |
D | SlotIndexes.cpp | 148 while (Begin != MBB->begin() && !hasIndex(*Begin)) in repairIndexesInRange() 150 while (End != MBB->end() && !hasIndex(*End)) in repairIndexesInRange()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SlotIndexes.cpp | 185 while (Begin != MBB->begin() && !hasIndex(*Begin)) in repairIndexesInRange() 187 while (End != MBB->end() && !hasIndex(*End)) in repairIndexesInRange()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | SlotIndexes.cpp | 186 while (Begin != MBB->begin() && !hasIndex(*Begin)) in repairIndexesInRange() 188 while (End != MBB->end() && !hasIndex(*End)) in repairIndexesInRange()
|
/external/angle/src/common/ |
D | utilities.cpp | 897 bool hasIndex = true; in ParseResourceName() local 898 while (hasIndex) in ParseResourceName() 902 hasIndex = (open != std::string::npos) && (close == baseNameLength - 1); in ParseResourceName() 903 if (hasIndex) in ParseResourceName()
|
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | ProBoundsConstantArrayIndexCheck.cpp | 44 hasIndex(expr().bind("index")), unless(hasAncestor(isImplicit()))) in registerMatchers()
|
/external/python/httplib2/doc/html/_static/ |
D | searchtools.js | 241 hasIndex : function() { method 283 if (this.hasIndex())
|
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | SignedCharMisuseCheck.cpp | 116 arraySubscriptExpr(hasIndex(SignedCharCastExpr)).bind("arraySubscript"); in registerMatchers()
|
/external/llvm-project/clang/include/clang/Analysis/ |
D | ConstructionContext.h | 73 bool hasIndex() const { in hasIndex() function 163 assert(hasIndex()); in getIndex()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | PropertyMetadata.java | 259 public boolean hasIndex() { return _index != null; } in hasIndex() method in PropertyMetadata
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveIntervalAnalysis.h | 198 return !Indexes->hasIndex(Instr); in isNotInMIMap()
|