Home
last modified time | relevance | path

Searched refs:getOptions (Results 1 - 25 of 89) sorted by relevance

1234

/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DDescriptorsTest.java97 assertEquals("UnittestProto", file.getOptions().getJavaOuterClassname()); in testFileDescriptor()
159 messageType.getOptions()); in testDescriptor()
217 primitiveField.getOptions()); in testFieldDescriptor()
236 cordField.getOptions().getCtype()); in testFieldDescriptor()
248 extension.getOptions()); in testFieldDescriptor()
301 enumType.getOptions()); in testEnumDescriptor()
359 descriptor.getOptions().hasExtension(UnittestCustomOptions.messageOpt1)); in testCustomOptions()
361 descriptor.getOptions().getExtension(UnittestCustomOptions.messageOpt1)); in testCustomOptions()
367 field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
369 field.getOptions() in testCustomOptions()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp258 return bool(Record->getOptions() & in hasConstructor()
266 return bool(Record->getOptions() & in hasAssignmentOperator()
274 return bool(Record->getOptions() & in hasNestedTypes()
282 return bool(Record->getOptions() & codeview::ClassOptions::Intrinsic); in isIntrinsic()
289 return bool(Record->getOptions() & in hasCastOperator()
315 return bool(Record->getOptions() & codeview::ClassOptions::Nested); in isNested()
322 return bool(Record->getOptions() & in hasOverloadedOperator()
330 return bool(Record->getOptions() & codeview::ClassOptions::Packed); in isPacked()
337 return bool(Record->getOptions() & codeview::ClassOptions::Scoped); in isScoped()
H A DNativeTypePointer.cpp134 return (Record->getOptions() & PointerOptions::Const) != PointerOptions::None; in isConstType()
140 return (Record->getOptions() & PointerOptions::Restrict) != in isRestrictedType()
147 return (Record->getOptions() & PointerOptions::Volatile) != in isVolatileType()
154 return (Record->getOptions() & PointerOptions::Unaligned) != in isUnalignedType()
H A DNativeTypeFunctionSig.cpp176 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor()
186 return (MemberFunc.getOptions() & in isConstructorVirtualBase()
193 IsMemberFunction ? MemberFunc.getOptions() : Proc.getOptions(); in isCxxReturnUdt()
H A DTpiHashing.cpp29 ClassOptions Opts = Rec.getOptions(); in getHashForUdt()
58 ClassOptions Opts = Deserialized.getOptions(); in getTagRecordHashForUdt()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DDescriptorsTest.java101 assertEquals("UnittestProto", file.getOptions().getJavaOuterClassname()); in testFileDescriptor()
156 assertEquals(DescriptorProtos.MessageOptions.getDefaultInstance(), messageType.getOptions()); in testDescriptor()
206 assertEquals(DescriptorProtos.FieldOptions.getDefaultInstance(), primitiveField.getOptions()); in testFieldDescriptor()
223 assertEquals(DescriptorProtos.FieldOptions.CType.CORD, cordField.getOptions().getCtype()); in testFieldDescriptor()
232 assertEquals(DescriptorProtos.FieldOptions.getDefaultInstance(), extension.getOptions()); in testFieldDescriptor()
287 assertEquals(DescriptorProtos.EnumOptions.getDefaultInstance(), enumType.getOptions()); in testEnumDescriptor()
345 assertTrue(descriptor.getOptions().hasExtension(UnittestCustomOptions.messageOpt1)); in testCustomOptions()
348 descriptor.getOptions().getExtension(UnittestCustomOptions.messageOpt1)); in testCustomOptions()
353 assertTrue(field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
356 field.getOptions() in testCustomOptions()
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DDescriptors.java121 public FileOptions getOptions() { in getOptions() method in Descriptors.FileDescriptor
122 return proto.getOptions(); in getOptions()
691 public MessageOptions getOptions() { in getOptions() method in Descriptors.Descriptor
692 return proto.getOptions(); in getOptions()
1048 if (getContainingType().getOptions().getMapEntry()) { in needsUtf8Check()
1055 return getFile().getOptions().getJavaStringCheckUtf8(); in needsUtf8Check()
1061 && getMessageType().getOptions().getMapEntry(); in isMapField()
1095 return getOptions().getPacked(); in isPacked()
1097 return !getOptions().hasPacked() || getOptions() in isPacked()
1125 public FieldOptions getOptions() { getOptions() method in Descriptors.FieldDescriptor
1684 public EnumOptions getOptions() { getOptions() method in Descriptors.EnumDescriptor
1886 public EnumValueOptions getOptions() { getOptions() method in Descriptors.EnumValueDescriptor
1974 public ServiceOptions getOptions() { getOptions() method in Descriptors.ServiceDescriptor
2101 public MethodOptions getOptions() { getOptions() method in Descriptors.MethodDescriptor
2682 public OneofOptions getOptions() { getOptions() method in Descriptors.OneofDescriptor
[all...]
H A DDynamicMessage.java246 if (type.getOptions().getMessageSetWireFormat()) { in writeTo()
260 if (type.getOptions().getMessageSetWireFormat()) { in getSerializedSize()
332 if (type.getOptions().getMapEntry()) { in Builder()
358 if (type.getOptions().getMapEntry()) { in clear()
/third_party/node/lib/internal/fs/
H A Ddir.js28 getOptions,
61 ...getOptions(options, {
301 options = getOptions(options, {
325 options = getOptions(options, {
H A Dpromises.js57 getOptions,
830 options = getOptions(options);
847 options = getOptions(options);
966 options = getOptions(options);
972 options = getOptions(options);
988 options = getOptions(options, { encoding: 'utf8', mode: 0o666, flag: 'w' });
1012 options = getOptions(options, { encoding: 'utf8', mode: 0o666, flag: 'a' });
1019 options = getOptions(options, { flag: 'r' });
H A Dstreams.js35 getOptions,
155 options = copyObject(getOptions(options, kEmptyObject));
313 options = copyObject(getOptions(options, kEmptyObject));
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DFieldDescriptor.php180 !is_null($this->getMessageType()->getOptions()) &&
181 $this->getMessageType()->getOptions()->getMapEntry();
243 $options = $proto->getOptions();
H A DDescriptor.php170 public function getOptions() function
194 $desc->setOptions($proto->getOptions());
H A DOneofDescriptorProto.php80 public function getOptions() function
/third_party/protobuf/php/tests/
H A DWellKnownTest.php131 $this->assertSame(1, count($m->getOptions()));
163 $this->assertSame(1, count($m->getOptions()));
185 $this->assertSame(1, count($m->getOptions()));
205 $this->assertSame(1, count($m->getOptions()));
234 $this->assertSame(1, count($m->getOptions()));
340 $this->assertSame(1, count($m->getOptions()));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.h128 TargetOptions &getOptions() { return Options; } in getOptions() function in llvm::orc::JITTargetMachineBuilder
131 const TargetOptions &getOptions() const { return Options; } in getOptions() function in llvm::orc::JITTargetMachineBuilder
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/
H A DMf2DataModelFormatter.java151 Map<String, Object> opt = mf2OptToFixedOptions(selector.getOptions()); in findBestMatchingPattern()
178 Map<String, Object> options = mf2OptToVariableOptions(selector.getOptions(), arguments); in findBestMatchingPattern()
264 Map<String, Object> fixedOptions = mf2OptToFixedOptions(ph.getOptions()); in formatPlaceholder()
270 Map<String, Object> variableOptions = mf2OptToVariableOptions(ph.getOptions(), arguments); in formatPlaceholder()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp247 uint16_t Props = static_cast<uint16_t>(Class.getOptions()); in visitKnownRecord()
261 uint16_t Props = static_cast<uint16_t>(Union.getOptions()); in visitKnownRecord()
273 uint16_t Props = static_cast<uint16_t>(Enum.getOptions()); in visitKnownRecord()
275 W->printFlags("Properties", uint16_t(Enum.getOptions()), in visitKnownRecord()
314 W->printFlags("FunctionOptions", uint8_t(Proc.getOptions()), in visitKnownRecord()
327 W->printFlags("FunctionOptions", uint8_t(MF.getOptions()), in visitKnownRecord()
339 printMemberAttributes(M.getAccess(), M.getMethodKind(), M.getOptions()); in visitKnownRecord()
475 printMemberAttributes(Method.getAccess(), K, Method.getOptions()); in visitKnownMember()
H A DTypeRecordHelpers.cpp24 return Record.getOptions(); in getUdtOptions()
/third_party/node/lib/
H A Dfs.js102 getOptions,
385 options = getOptions(options, { flag: 'r' });
462 options = getOptions(options, { flag: 'r' });
1473 options = getOptions(options);
1511 options = getOptions(options);
1714 options = getOptions(options);
1729 options = getOptions(options);
2265 options = getOptions(options, { encoding: 'utf8', mode: 0o666, flag: 'w' });
2309 options = getOptions(options, { encoding: 'utf8', mode: 0o666, flag: 'w' });
2351 options = getOptions(option
[all...]
/third_party/protobuf/php/src/Google/Protobuf/
H A DEnumValue.php114 public function getOptions() function
H A DApi.php191 public function getOptions() function
H A DEnum.php130 public function getOptions() function
/third_party/node/deps/npm/node_modules/ssri/lib/
H A Dindex.js29 this.#getOptions()
44 #getOptions () {
94 this.#getOptions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp83 : IRCompiler(irManglingOptionsFromTargetOptions(JTMB.getOptions())), in ConcurrentIRCompiler()

Completed in 17 milliseconds

1234