HomeSort by relevance Sort by last modified time
    Searched refs:descriptor (Results 1 - 25 of 625) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition.cpp 36 PassRefPtr<CustomElementDefinition> CustomElementDefinition::create(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks)
38 return adoptRef(new CustomElementDefinition(descriptor, callbacks));
41 CustomElementDefinition::CustomElementDefinition(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks)
42 : m_descriptor(descriptor)
CustomElementDescriptorHash.h 42 static unsigned hash(const CustomElementDescriptor& descriptor)
44 return WTF::pairIntHash(AtomicStringHash::hash(descriptor.type()), WTF::pairIntHash(AtomicStringHash::hash(descriptor.namespaceURI()), AtomicStringHash::hash(descriptor.localName())));
CustomElementMicrotaskResolutionStep.cpp 39 PassOwnPtrWillBeRawPtr<CustomElementMicrotaskResolutionStep> CustomElementMicrotaskResolutionStep::create(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor)
41 return adoptPtrWillBeNoop(new CustomElementMicrotaskResolutionStep(context, element, descriptor));
44 CustomElementMicrotaskResolutionStep::CustomElementMicrotaskResolutionStep(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor)
47 , m_descriptor(descriptor)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 39 #include <google/protobuf/descriptor.pb.h>
40 #include <google/protobuf/descriptor.h>
80 // descriptor.
81 string ClassName(const Descriptor* descriptor);
82 string ClassName(const EnumDescriptor* descriptor);
83 string ClassName(const ServiceDescriptor* descriptor);
84 string ClassName(const FileDescriptor* descriptor);
86 inline string ExtensionIdentifierName(const FieldDescriptor* descriptor) {
87 return ToJavaName(descriptor->full_name(), descriptor->file())
    [all...]
java_extension.cc 79 ExtensionGenerator::ExtensionGenerator(const FieldDescriptor* descriptor)
80 : descriptor_(descriptor) {
91 void InitTemplateVars(const FieldDescriptor* descriptor,
96 vars["name"] = UnderscoresToCamelCase(descriptor);
97 vars["containing_type"] = ClassName(descriptor->containing_type());
98 vars["number"] = SimpleItoa(descriptor->number());
99 vars["constant_name"] = FieldConstantName(descriptor);
100 vars["index"] = SimpleItoa(descriptor->index());
102 descriptor->is_repeated() ? "" : DefaultValue(descriptor);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstNat.java 26 * {@code non-null;} the instance for name {@code TYPE} and descriptor
37 /** {@code non-null;} the descriptor (type) */
38 private final CstUtf8 descriptor; field in class:CstNat
44 * @param descriptor {@code non-null;} the descriptor
46 public CstNat(CstUtf8 name, CstUtf8 descriptor) {
51 if (descriptor == null) {
52 throw new NullPointerException("descriptor == null");
56 this.descriptor = descriptor;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstNat.java 26 * {@code non-null;} the instance for name {@code TYPE} and descriptor
37 /** {@code non-null;} the descriptor (type) */
38 private final CstString descriptor; field in class:CstNat
44 * @param descriptor {@code non-null;} the descriptor
46 public CstNat(CstString name, CstString descriptor) {
51 if (descriptor == null) {
52 throw new NullPointerException("descriptor == null");
56 this.descriptor = descriptor;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstNat.java 26 * {@code non-null;} the instance for name {@code TYPE} and descriptor
37 /** {@code non-null;} the descriptor (type) */
38 private final CstString descriptor; field in class:CstNat
44 * @param descriptor {@code non-null;} the descriptor
46 public CstNat(CstString name, CstString descriptor) {
51 if (descriptor == null) {
52 throw new NullPointerException("descriptor == null");
56 this.descriptor = descriptor;
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
generated_enum_reflection.h 62 LIBPROTOBUF_EXPORT bool ParseNamedEnum(const EnumDescriptor* descriptor,
67 bool ParseNamedEnum(const EnumDescriptor* descriptor,
71 if (!ParseNamedEnum(descriptor, name, &tmp)) return false;
78 // descriptor.h.
79 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 24 * local, on a stack, or in a method descriptor. Instances of this
239 /** {@code non-null;} field descriptor for the type */
240 private final String descriptor; field in class:Type
283 * given descriptor. See vmspec-2 sec4.3.2 for details on the
284 * field descriptor syntax. This method does <i>not</i> allow
286 * descriptor.
288 * @param descriptor {@code non-null;} the descriptor
290 * @throws IllegalArgumentException thrown if the descriptor has
293 public static Type intern(String descriptor) {
852 String descriptor = type.getDescriptor(); local
    [all...]
Prototype.java 22 * Representation of a method descriptor. Instances of this class are
31 /** {@code non-null;} method descriptor */
32 private final String descriptor; field in class:Prototype
45 * given method descriptor. See vmspec-2 sec4.3.3 for details on the
46 * field descriptor syntax.
48 * @param descriptor {@code non-null;} the descriptor
50 * @throws IllegalArgumentException thrown if the descriptor has
53 public static Prototype intern(String descriptor) {
54 if (descriptor == null)
391 String descriptor = desc.getDescriptor(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 25 * local, on a stack, or in a method descriptor. Instances of this
240 /** {@code non-null;} field descriptor for the type */
241 private final String descriptor; field in class:Type
284 * given descriptor. See vmspec-2 sec4.3.2 for details on the
285 * field descriptor syntax. This method does <i>not</i> allow
287 * descriptor.
289 * @param descriptor {@code non-null;} the descriptor
291 * @throws IllegalArgumentException thrown if the descriptor has
294 public static Type intern(String descriptor) {
853 String descriptor = type.getDescriptor(); local
    [all...]
Prototype.java 22 * Representation of a method descriptor. Instances of this class are
31 /** {@code non-null;} method descriptor */
32 private final String descriptor; field in class:Prototype
45 * given method descriptor. See vmspec-2 sec4.3.3 for details on the
46 * field descriptor syntax.
48 * @param descriptor {@code non-null;} the descriptor
50 * @throws IllegalArgumentException thrown if the descriptor has
53 public static Prototype intern(String descriptor) {
54 if (descriptor == null)
391 String descriptor = desc.getDescriptor(); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 25 * local, on a stack, or in a method descriptor. Instances of this
255 /** {@code non-null;} field descriptor for the type */
256 private final String descriptor; field in class:Type
300 * field descriptor syntax. This method does <i>not</i> allow
302 * descriptor.
304 * @param clazz {@code non-null;} class whose descriptor
314 * given descriptor. See vmspec-2 sec4.3.2 for details on the
315 * field descriptor syntax. This method does <i>not</i> allow
317 * descriptor.
319 * @param descriptor {@code non-null;} the descripto
919 String descriptor = type.getDescriptor(); local
    [all...]
Prototype.java 31 /** {@code non-null;} method descriptor */
32 private final String descriptor; field in class:Prototype
45 * given method descriptor. See vmspec-2 sec4.3.3 for details on the
46 * field descriptor syntax.
48 * @param descriptor {@code non-null;} the descriptor
50 * @throws IllegalArgumentException thrown if the descriptor has
53 public static Prototype intern(String descriptor) {
54 if (descriptor == null) {
55 throw new NullPointerException("descriptor == null")
387 String descriptor = desc.getDescriptor(); local
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 41 #include <google/protobuf/descriptor.pb.h>
54 void SetCommonFieldVariables(const FieldDescriptor* descriptor,
57 (*variables)["name"] = FieldName(descriptor);
58 (*variables)["index"] = SimpleItoa(descriptor->index());
59 (*variables)["number"] = SimpleItoa(descriptor->number());
60 (*variables)["classname"] = ClassName(FieldScope(descriptor), false);
61 (*variables)["declared_type"] = DeclaredTypeMethodName(descriptor->type());
64 WireFormat::TagSize(descriptor->number(), descriptor->type()));
65 (*variables)["deprecation"] = descriptor->options().deprecated(
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
python_generator.h 46 class Descriptor;
77 void PrintNestedEnums(const Descriptor& descriptor) const;
85 const Descriptor& message_descriptor,
88 int (Descriptor::*CountFn)() const,
89 const FieldDescriptor* (Descriptor::*GetterFn)(int) const) const;
90 void PrintFieldsInDescriptor(const Descriptor& message_descriptor) const;
91 void PrintExtensionsInDescriptor(const Descriptor& message_descriptor) const;
93 void PrintDescriptor(const Descriptor& message_descriptor) const;
94 void PrintNestedDescriptors(const Descriptor& containing_descriptor) const
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
heapmm.h 85 /* Heap descriptor. */
90 ** really be the AVL tree descriptor (type avl_avl). But (in the
92 ** AVL tree descriptor simply contains a pointer to the root. So,
93 ** whenever a pointer to the AVL tree descriptor is needed, I use the
98 ** (where heap_desc is a pointer to a heap descriptor). This trick
110 HMM_UNIQUE(descriptor); variable
114 void HMM_UNIQUE(init)(HMM_UNIQUE(descriptor) *desc);
117 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) num_addr_align_units);
121 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) needed_addr_align_units,
125 HMM_UNIQUE(descriptor) *desc, void *mem
    [all...]
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
heapmm.h 85 /* Heap descriptor. */
90 ** really be the AVL tree descriptor (type avl_avl). But (in the
92 ** AVL tree descriptor simply contains a pointer to the root. So,
93 ** whenever a pointer to the AVL tree descriptor is needed, I use the
98 ** (where heap_desc is a pointer to a heap descriptor). This trick
110 HMM_UNIQUE(descriptor); variable
114 void HMM_UNIQUE(init)(HMM_UNIQUE(descriptor) *desc);
117 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) num_addr_align_units);
121 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) needed_addr_align_units,
125 HMM_UNIQUE(descriptor) *desc, void *mem
    [all...]
  /art/runtime/verifier/
method_verifier_test.cc 32 void VerifyClass(const std::string& descriptor)
34 ASSERT_TRUE(descriptor != NULL);
35 mirror::Class* klass = class_linker_->FindSystemClass(Thread::Current(), descriptor.c_str());
50 const char* descriptor = dex->GetClassDescriptor(class_def); local
51 VerifyClass(descriptor);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyDescriptorEditorProvider.java 29 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor)
32 Object attributeValue = descriptor.getValue("enumerationValues");
33 if (isEnumerationProperty(descriptor)) {
49 private static boolean isEnumerationProperty(PropertyDescriptor descriptor) {
50 Object attributeValue = descriptor.getValue("enumerationValues");
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
message_factory.py 48 def GetPrototype(self, descriptor):
49 """Builds a proto2 message class based on the passed in descriptor.
51 Passing a descriptor with a fully qualified name matching a previous
55 descriptor: The descriptor to build from.
58 A class describing the passed in descriptor.
61 if descriptor.full_name not in self._classes:
63 descriptor.name.encode('ascii', 'ignore'),
65 {'DESCRIPTOR': descriptor})
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-linkage.cc 65 CallDescriptor* descriptor = linkage.GetIncomingDescriptor(); local
66 CHECK_NE(NULL, descriptor);
68 CHECK_EQ(1 + i, descriptor->JSParameterCount());
69 CHECK_EQ(1, descriptor->ReturnCount());
70 CHECK_EQ(Operator::kNoProperties, descriptor->properties());
71 CHECK_EQ(true, descriptor->IsJSFunctionCall());
93 CallDescriptor* descriptor = linkage.GetJSCallDescriptor(i); local
94 CHECK_NE(NULL, descriptor);
95 CHECK_EQ(i, descriptor->JSParameterCount());
96 CHECK_EQ(1, descriptor->ReturnCount())
    [all...]
  /external/chromium_org/components/autofill/core/common/
web_element_descriptor.h 23 std::string descriptor; member in struct:autofill::WebElementDescriptor
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseObserver.java 41 * @param descriptor {@code non-null;} descriptor of the member
44 String descriptor);
53 * @param descriptor {@code non-null;} descriptor of the member
57 String descriptor, Member member);

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 91011>>