Searched defs:descriptor (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-798.js70 var descriptor = {
88 Object.defineProperty(x, 'c', descriptor)
/external/v8/test/mjsunit/regress/
H A Dregress-798.js70 var descriptor = {
88 Object.defineProperty(x, 'c', descriptor)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCustomElementDefinition.cpp36 PassRefPtr<CustomElementDefinition> CustomElementDefinition::create(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks) argument
38 return adoptRef(new CustomElementDefinition(descriptor, callbacks));
41 CustomElementDefinition::CustomElementDefinition(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks) argument
42 : m_descriptor(descriptor)
H A DCustomElementDefinition.h48 const CustomElementDescriptor& descriptor() const { return m_descriptor; } function in class:WebCore::CustomElementDefinition
H A DCustomElementDescriptorHash.h42 static unsigned hash(const CustomElementDescriptor& descriptor) argument
44 return WTF::pairIntHash(AtomicStringHash::hash(descriptor.type()), WTF::pairIntHash(AtomicStringHash::hash(descriptor.namespaceURI()), AtomicStringHash::hash(descriptor.localName())));
/external/chromium_org/components/autofill/core/common/
H A Dweb_element_descriptor.h23 std::string descriptor; member in struct:autofill::WebElementDescriptor
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dgenerated_enum_reflection.h62 LIBPROTOBUF_EXPORT bool ParseNamedEnum(const EnumDescriptor* descriptor,
67 bool ParseNamedEnum(const EnumDescriptor* descriptor, argument
71 if (!ParseNamedEnum(descriptor, name, &tmp)) return false;
78 // descriptor.h.
79 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
H A Dgenerated_message_reflection_unittest.cc46 #include <google/protobuf/descriptor.h>
62 unittest::TestAllTypes::descriptor()->FindFieldByName(name);
71 unittest::TestAllTypes::descriptor());
95 unittest::TestAllTypes::descriptor());
132 unittest::TestAllTypes::descriptor());
213 unittest::TestAllTypes::descriptor());
225 unittest::TestAllExtensions::descriptor());
236 const Descriptor* descriptor = message.GetDescriptor(); local
237 TestUtil::ReflectionTester reflection_tester(descriptor);
252 &message, descriptor
258 const Descriptor* descriptor = message.GetDescriptor(); local
435 const Descriptor* descriptor = message.GetDescriptor(); local
[all...]
H A Dmessage.h82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
126 #include <google/protobuf/descriptor.h>
155 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
168 // the optimize_for option in descriptor.proto.
182 // must have the same descriptor, but need not necessarily be the same class.
239 // Parse a protocol buffer from a file descriptor. If successful, the entire
252 // Serialize the message and write it to the given file descriptor. All
295 const Descriptor* GetDescriptor() const { return GetMetadata().descriptor; }
[all...]
/external/proguard/src/proguard/
H A DMemberSpecification.java36 public final String descriptor; field in class:MemberSpecification
66 * @param descriptor the class member descriptor. The
67 * descriptor may be null to specify any
75 String descriptor)
81 this.descriptor = descriptor;
102 (this.descriptor == null ? other.descriptor == null : this.descriptor
71 MemberSpecification(int requiredSetAccessFlags, int requiredUnsetAccessFlags, String annotationType, String name, String descriptor) argument
[all...]
/external/chromium/chrome/browser/chromeos/input_method/
H A Dinput_method_util_unittest.cc131 const InputMethodDescriptor* descriptor = local
133 ASSERT_TRUE(NULL != descriptor); // ASSERT_NE doesn't compile.
134 EXPECT_EQ("pinyin", descriptor->id);
135 EXPECT_EQ("Pinyin", descriptor->display_name);
136 EXPECT_EQ("us", descriptor->keyboard_layout);
140 EXPECT_EQ("zh", descriptor->language_code);
205 const InputMethodDescriptor* descriptor = local
207 ASSERT_TRUE(NULL != descriptor); // ASSERT_NE doesn't compile.
209 GetFirstLoginInputMethodIds("en-US", *descriptor, &input_method_ids);
216 const InputMethodDescriptor* descriptor local
228 const InputMethodDescriptor* descriptor = local
240 const InputMethodDescriptor* descriptor = local
252 const InputMethodDescriptor* descriptor = local
264 const InputMethodDescriptor* descriptor = local
276 const InputMethodDescriptor* descriptor = local
288 const InputMethodDescriptor* descriptor = local
[all...]
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_domain_descriptor_unittest.cc34 scoped_refptr<PolicyDomainDescriptor> descriptor = local
36 EXPECT_EQ(POLICY_DOMAIN_EXTENSIONS, descriptor->domain());
37 EXPECT_TRUE(descriptor->components().empty());
65 descriptor->RegisterComponent("abc", schema.Pass());
67 EXPECT_EQ(1u, descriptor->components().size());
68 EXPECT_EQ(1u, descriptor->components().count("abc"));
71 descriptor->FilterBundle(&bundle);
92 descriptor->FilterBundle(&bundle);
125 descriptor->FilterBundle(&bundle);
146 descriptor
[all...]
H A Dpolicy_service_stub.cc23 scoped_refptr<const PolicyDomainDescriptor> descriptor) {}
22 RegisterPolicyDomain( scoped_refptr<const PolicyDomainDescriptor> descriptor) argument
/external/chromium_org/chrome/browser/ui/ash/
H A Dime_controller_chromeos.cc52 const chromeos::input_method::InputMethodDescriptor& descriptor = local
54 const std::string& layout = descriptor.id();
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
H A Dpython_descriptor.h39 #include <google/protobuf/descriptor.h>
54 // The proto2 descriptor that this object represents.
55 const google::protobuf::FieldDescriptor* descriptor; member in struct:google::protobuf::python::__anon13352
69 // Identity of the descriptor (PyLong used as a poiner).
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_enum.cc42 #include <google/protobuf/descriptor.pb.h>
50 EnumGenerator::EnumGenerator(const EnumDescriptor* descriptor) argument
51 : descriptor_(descriptor) {
178 // at module init time because it wouldn't work with descriptor.proto, but
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DPropertyDescriptorEditorProvider.java29 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor) argument
32 Object attributeValue = descriptor.getValue("enumerationValues");
33 if (isEnumerationProperty(descriptor)) {
49 private static boolean isEnumerationProperty(PropertyDescriptor descriptor) { argument
50 Object attributeValue = descriptor.getValue("enumerationValues");
H A DPropertyEditorProvider.java40 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor) argument
/external/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dheapmm.h83 /* Heap descriptor. */
88 ** really be the AVL tree descriptor (type avl_avl). But (in the
90 ** AVL tree descriptor simply contains a pointer to the root. So,
91 ** whenever a pointer to the AVL tree descriptor is needed, I use the
96 ** (where heap_desc is a pointer to a heap descriptor). This trick
108 HMM_UNIQUE(descriptor); variable
112 void HMM_UNIQUE(init)(HMM_UNIQUE(descriptor) *desc);
115 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) num_addr_align_units);
119 HMM_UNIQUE(descriptor) *desc, HMM_UNIQUE(size_aau) needed_addr_align_units,
123 HMM_UNIQUE(descriptor) *des
[all...]
/external/proguard/src/proguard/classfile/
H A DLibraryField.java34 * descriptor string. This field is filled out by the <code>{@link
54 String descriptor)
56 super(u2accessFlags, name, descriptor);
52 LibraryField(int u2accessFlags, String name, String descriptor) argument
H A DLibraryMethod.java34 * descriptor string. This field is filled out by the <code>{@link
54 String descriptor)
56 super(u2accessFlags, name, descriptor);
52 LibraryMethod(int u2accessFlags, String name, String descriptor) argument
/external/proguard/src/proguard/classfile/util/
H A DDescriptorClassEnumeration.java29 * classes mentioned in a given descriptor or signature.
35 private String descriptor; field in class:DescriptorClassEnumeration
45 * Creates a new DescriptorClassEnumeration for the given descriptor.
47 public DescriptorClassEnumeration(String descriptor) argument
49 this.descriptor = descriptor;
54 * Returns the number of classes contained in the descriptor. This
78 * descriptor.
82 return index < descriptor.length();
87 * Returns the next fluff (surrounding class names) from the descriptor
[all...]
H A DExternalTypeEnumeration.java28 * types listed in a given external descriptor string. The method name can
39 private String descriptor; field in class:ExternalTypeEnumeration
43 public ExternalTypeEnumeration(String descriptor) argument
45 setDescriptor(descriptor);
54 void setDescriptor(String descriptor) argument
56 this.descriptor = descriptor;
64 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN) + 1;
68 throw new IllegalArgumentException("Missing opening parenthesis in descriptor ["+descriptor
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DNamedFieldVisitor.java28 * a name and descriptor pair.
35 private final String descriptor; field in class:NamedFieldVisitor
40 String descriptor,
44 this.descriptor = descriptor;
53 programClass.fieldAccept(name, descriptor, memberVisitor);
59 libraryClass.fieldAccept(name, descriptor, memberVisitor);
39 NamedFieldVisitor(String name, String descriptor, MemberVisitor memberVisitor) argument
H A DNamedMethodVisitor.java28 * a name and descriptor pair.
35 private final String descriptor; field in class:NamedMethodVisitor
40 String descriptor,
44 this.descriptor = descriptor;
53 programClass.methodAccept(name, descriptor, memberVisitor);
59 libraryClass.methodAccept(name, descriptor, memberVisitor);
39 NamedMethodVisitor(String name, String descriptor, MemberVisitor memberVisitor) argument

Completed in 650 milliseconds

1234567891011>>