Searched refs:definition (Results 1 - 25 of 171) sorted by relevance

1234567

/external/lldb/source/Interpreter/
H A DProperty.cpp26 Property::Property (const PropertyDefinition &definition) : argument
27 m_name (definition.name),
28 m_description (definition.description),
30 m_is_global (definition.global)
32 switch (definition.type)
38 // "definition.default_uint_value" is not used
39 // "definition.default_cstr_value" as a string value that represents the default string value for the architecture/triple
40 m_value_sp.reset (new OptionValueArch(definition.default_cstr_value));
44 // "definition.default_uint_value" is always a OptionValue::Type
49 // "definition
[all...]
/external/stlport/test/unit/
H A Dmacro_checks.cpp6 # error Missing CHAR_BIT definition.
14 # error Missing CHAR_MAX definition.
18 # error Missing CHAR_MIN definition.
26 # error Missing INT_MAX definition.
30 # error Missing INT_MIN definition.
38 # error Missing LONG_MAX definition.
42 # error Missing LONG_MIN definition.
50 # error Missing SCHAR_MAX definition.
54 # error Missing SCHAR_MIN definition.
62 # error Missing SHRT_MAX definition
[all...]
/external/clang/test/PCH/
H A Dfuzzy-pch.c20 # error FOO has the wrong definition
27 // CHECK-FOO: definition of macro 'FOO' differs between the precompiled header ('1') and the command line ('blah')
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_handshake.py147 definition used in this test is a pair of an extension name and a
158 for formatted_string, definition in _TEST_TOKEN_EXTENSION_DATA:
160 definition, parse_extensions(formatted_string,
169 for formatted_string, definition in _TEST_TOKEN_EXTENSION_DATA:
171 definition, parse_extensions(formatted_string,
174 for formatted_string, definition in _TEST_QUOTED_EXTENSION_DATA:
176 definition, parse_extensions(formatted_string,
181 definition) in _TEST_REDUNDANT_TOKEN_EXTENSION_DATA:
183 definition, parse_extensions(formatted_string,
187 definition) i
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dcontent_setting.js18 var getSchema = this.functionSchemas.get.definition.parameters;
26 this.functionSchemas.set.definition.parameters);
34 var clearSchema = this.functionSchemas.clear.definition.parameters;
42 this.functionSchemas.getResourceIdentifiers.definition.parameters;
H A Dpage_action_custom_bindings.js15 setIcon(details, callback, this.name, this.definition.parameters,
H A Dsystem_indicator_custom_bindings.js17 setIcon(details, callback, this.name, this.definition.parameters,
H A Ddesktop_capture_custom_bindings.js35 this.definition.parameters, {});
42 sendRequest(this.name, [id], this.definition.parameters, {});
H A Dweb_request_custom_bindings.js16 sendRequest(this.name, args, this.definition.parameters,
H A Dchrome_direct_setting.js17 var getSchema = this.functionSchemas.get.definition.parameters;
25 this.functionSchemas.set.definition.parameters);
33 var clearSchema = this.functionSchemas.clear.definition.parameters;
H A Dchrome_setting.js17 var getSchema = this.functionSchemas.get.definition.parameters;
25 this.functionSchemas.set.definition.parameters);
33 var clearSchema = this.functionSchemas.clear.definition.parameters;
H A Dbrowser_action_custom_bindings.js16 setIcon(details, callback, this.name, this.definition.parameters,
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementRegistrationContext.cpp56 CustomElementDefinition* definition = m_registry.registerElement(document, constructorBuilder, type, validNames, exceptionState); local
58 if (!definition)
61 // Upgrade elements that were waiting for this definition.
62 OwnPtrWillBeRawPtr<CustomElementUpgradeCandidateMap::ElementSet> upgradeCandidates = m_candidates->takeUpgradeCandidatesFor(definition->descriptor());
68 CustomElement::define(*it, definition);
113 CustomElementDefinition* definition = m_registry.find(descriptor); local
114 if (definition) {
115 CustomElement::define(element, definition);
H A DCustomElementRegistry.cpp108 RefPtr<CustomElementDefinition> definition = CustomElementDefinition::create(descriptor, lifecycleCallbacks); local
110 if (!constructorBuilder->createConstructor(document, definition.get(), exceptionState))
113 m_definitions.add(descriptor, definition);
116 if (!constructorBuilder->didRegisterDefinition(definition.get())) {
121 return definition.get();
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_synchronizer.cc68 const TextureDefinition& definition)
69 : definition(definition) {}
75 : version(group->definition.version()), group(group) {}
120 Texture* new_texture = group->definition.CreateTexture();
189 scoped_refptr<NativeImageBuffer> image_buffer = group->definition.image();
192 if (!group->definition.IsOlderThan(texture_version.version))
197 if (group->definition.Matches(texture))
205 group->definition = TextureDefinition(texture->target(),
220 TextureDefinition& definition local
67 TextureGroup( const TextureDefinition& definition) argument
[all...]
H A Dmailbox_synchronizer.h63 explicit TextureGroup(const TextureDefinition& definition);
66 TextureDefinition definition; member in struct:gpu::gles2::MailboxSynchronizer::TextureGroup
/external/chromium_org/chrome/browser/profile_resetter/
H A Dprofile_resetter_browsertest.cc32 void AddCookie(const std::string& host, const std::string& definition);
39 const std::string& definition);
77 const std::string& definition) {
86 definition));
105 const std::string& definition) {
110 GURL(host), definition, net::CookieOptions(), local
76 AddCookie(const std::string& host, const std::string& definition) argument
102 SetCookieOnIOThread( net::URLRequestContextGetter* context_getter, const std::string& host, const std::string& definition) argument
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dv8_utilities.py119 def scoped_name(interface, definition, base_name):
122 partial_interface_implemented_as = definition.extended_attributes.get('PartialInterfaceImplementedAs')
125 if (definition.is_static or
126 definition.name in ('Constructor', 'NamedConstructor')):
141 """Returns a set of world suffixes for which a definition member has activity logging, for specified access type.
227 def gc_type(definition):
228 extended_attributes = definition.extended_attributes
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DRegisterAllocator.java75 * Returns the category (width) of the definition site of the register.
82 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg);
84 if (definition == null) {
88 return definition.getResult().getCategory();
93 * Returns the RegisterSpec of the definition of the register.
96 * @return definition spec of the register or null if it is never defined
100 SsaInsn definition = ssaMeth.getDefinitionForRegister(reg);
102 return definition == null ? null : definition.getResult();
106 * Returns true if the definition sit
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dstorage_area.js32 extendSchema(funSchema.definition.parameters),
/external/clang/test/Sema/
H A Dincomplete-decl.c6 struct foo f; // expected-error{{tentative definition has type 'struct foo' that is never completed}}
9 static struct foo g; // expected-warning {{tentative definition of variable with internal linkage has incomplete non-array type 'struct foo'}} \
10 expected-error{{tentative definition has type 'struct foo' that is never completed}}
15 int ary[]; // expected-warning {{tentative array definition assumed to have one element}}
19 int ary[]; // expected-error{{definition of variable with array type needs an explicit size or an initializer}}
24 int h[]; // expected-warning {{tentative array definition assumed to have one element}}
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml5 (* top ::= definition | external | expression | ';' *)
20 print_endline "parsed a function definition.";
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml7 (* top ::= definition | external | expression | ';' *)
22 print_endline "parsed a function definition.";
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml24 (* var definition *)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8PerContextData.cpp134 void V8PerContextData::addCustomElementBinding(CustomElementDefinition* definition, PassOwnPtr<CustomElementBinding> binding) argument
136 ASSERT(!m_customElementBindings->contains(definition));
137 m_customElementBindings->add(definition, binding);
140 void V8PerContextData::clearCustomElementBinding(CustomElementDefinition* definition) argument
142 CustomElementBindingMap::iterator it = m_customElementBindings->find(definition);
147 CustomElementBinding* V8PerContextData::customElementBinding(CustomElementDefinition* definition) argument
149 CustomElementBindingMap::const_iterator it = m_customElementBindings->find(definition);

Completed in 843 milliseconds

1234567