Searched defs:definition (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementRegistry.cpp107 RefPtr<CustomElementDefinition> definition = CustomElementDefinition::create(descriptor, lifecycleCallbacks); local
109 if (!constructorBuilder->createConstructor(document, definition.get(), exceptionState))
112 m_definitions.add(descriptor, definition);
115 if (!constructorBuilder->didRegisterDefinition(definition.get())) {
120 return definition.get();
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);
/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/extensions/common/features/
H A Dsimple_feature_unittest.cc615 base::DictionaryValue definition; local
616 feature.Parse(&definition);
633 definition.Set("whitelist", whitelist);
634 definition.Set("extension_types", extension_types);
635 definition.Set("contexts", contexts);
637 definition.Set("min_manifest_version", new base::FundamentalValue(2));
638 definition.Set("max_manifest_version", new base::FundamentalValue(3));
640 feature.Parse(&definition);
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_synchronizer.h68 explicit TextureGroup(const TextureDefinition& definition);
71 TextureDefinition definition; member in struct:gpu::gles2::MailboxSynchronizer::TextureGroup
H A Dmailbox_synchronizer.cc73 const TextureDefinition& definition)
74 : definition(definition) {}
80 : version(group->definition.version()), group(group) {}
125 Texture* new_texture = group->definition.CreateTexture();
222 scoped_refptr<NativeImageBuffer> image_buffer = group->definition.image();
225 if (!group->definition.IsOlderThan(texture_version.version))
230 if (group->definition.Matches(texture))
238 group->definition = TextureDefinition(texture->target(),
265 TextureDefinition& definition local
72 TextureGroup( const TextureDefinition& definition) argument
[all...]
/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/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DCustomElementConstructorBuilder.cpp171 bool CustomElementConstructorBuilder::createConstructor(Document* document, CustomElementDefinition* definition, ExceptionState& exceptionState) argument
179 if (!prototypeIsValid(definition->descriptor().type(), exceptionState))
186 CustomElementException::throwException(CustomElementException::ContextDestroyedRegisteringDefinition, definition->descriptor().type(), exceptionState);
190 const CustomElementDescriptor& descriptor = definition->descriptor();
238 bool CustomElementConstructorBuilder::didRegisterDefinition(CustomElementDefinition* definition) const
242 return m_callbacks->setBinding(definition, CustomElementBinding::create(m_scriptState->isolate(), m_prototype));
H A DV8PerContextData.cpp135 void V8PerContextData::addCustomElementBinding(CustomElementDefinition* definition, PassOwnPtr<CustomElementBinding> binding) argument
137 ASSERT(!m_customElementBindings->contains(definition));
138 m_customElementBindings->add(definition, binding);
141 void V8PerContextData::clearCustomElementBinding(CustomElementDefinition* definition) argument
143 CustomElementBindingMap::iterator it = m_customElementBindings->find(definition);
148 CustomElementBinding* V8PerContextData::customElementBinding(CustomElementDefinition* definition) argument
150 CustomElementBindingMap::const_iterator it = m_customElementBindings->find(definition);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementRareData.h122 void setCustomElementDefinition(PassRefPtr<CustomElementDefinition> definition) { m_customElementDefinition = definition; } argument
/external/clang/test/CodeGenCXX/
H A Dmangle-template.cpp137 struct definition { struct in struct:test10::X
143 typename X<T>::template definition<U> f(T, U) { }
H A Dvisibility.cpp26 struct definition { struct in struct:test25::X
32 X<int>::definition<A> a;
732 // definition. It's not really clear what we can do here, because we
733 // produce the symbols before even seeing the DEFAULT definition of zed.
/external/oprofile/libregex/
H A Dop_regex.cpp97 string const & definition)
99 defs[name] = expand_string(definition);
150 throw bad_regex("definition not found and used in pattern: ("
96 add_definition(string const & name, string const & definition) argument
/external/llvm/tools/gold/
H A Dgold-plugin.cpp348 int definition = attrs & LTO_SYMBOL_DEFINITION_MASK; local
350 switch (definition) {
368 (*message)(LDPL_ERROR, "Unknown definition attribute: %d", definition);
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_sit.cpp350 const char *definition = string; local
359 parseError->offset = (int32_t)(string - definition);
442 ucol_prepareShortStringOpen( const char *definition, argument
467 ucol_sit_readSpecs(&s, definition, parseError, status);
502 ucol_openFromShortString( const char *definition, argument
508 UTRACE_DATA1(UTRACE_INFO, "short string = \"%s\"", definition);
528 const char *string = definition;
531 string = ucol_sit_readSpecs(&s, definition, parseError, status);
548 parseError->offset = (int32_t)(string - definition);
655 ucol_normalizeShortDefinitionString(const char *definition, argument
[all...]
/external/clang/tools/libclang/
H A DCXCursor.cpp1120 const MacroDefinition *definition = getCursorMacroDefinition(cursor); local
1121 const IdentifierInfo *MacroInfo = definition->getName();
/external/icu/icu4c/source/i18n/
H A Ducol_sit.cpp336 const char *definition = string; local
345 parseError->offset = (int32_t)(string - definition);
428 ucol_prepareShortStringOpen( const char *definition, argument
453 ucol_sit_readSpecs(&s, definition, parseError, status);
488 ucol_openFromShortString( const char *definition, argument
494 UTRACE_DATA1(UTRACE_INFO, "short string = \"%s\"", definition);
514 const char *string = definition;
517 string = ucol_sit_readSpecs(&s, definition, parseError, status);
534 parseError->offset = (int32_t)(string - definition);
576 ucol_normalizeShortDefinitionString(const char *definition, argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Daria_util.js91 'definition' : 'aria_role_definition',
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h383 // Returns the definition (for let vars) or type (for parameter & self vars)
384 SExpr *definition() { return Definition.get(); } function in class:clang::threadSafety::Variable
385 const SExpr *definition() const { return Definition.get(); } function in class:clang::threadSafety::Variable
419 SExprRef Definition; // The TIL type or definition
763 // This is a variable declaration, so traverse the definition.
774 Cmp.compare(VarDecl->definition(), E->VarDecl->definition());
818 // A rewrite must introduce the variable with a null definition, and update
1778 // This is a variable declaration, so traverse the definition.
1789 Cmp.compare(VarDecl->definition(),
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp1091 const char* definition; member in struct:deqp::__anon19940
1119 dst << compareFuncs[compFuncNdx].definition << "\n";
/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp1078 const char* definition; member in struct:deqp::gles31::Functional::__anon20294
1129 dst << compareFuncs[compFuncNdx].definition << "\n";
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasm-pp.c60 * Store the definition of a single-line macro.
74 * Store the definition of a multi-line macro. This is also used to
130 * the substituted parameter. So in the definition
775 len += 1 + 6 + 1 + strlen(name) + 1 + 3; /* macro definition */
776 len += i * (1 + 9 + 1 + 1 + 1 + 3 + 2); /* macro parameter definition */
1880 * defined, or nparam is -1, the address of the definition structure
1937 * in a %macro definition line.
3296 /* Expand the macro definition now for %xdefine and %ixdefine */
5065 * definition; and unless we're in a non-emitting
5084 * shove the tokenised line on to the macro definition
5220 pp_pre_define(char *definition) argument
5243 pp_pre_undefine(char *definition) argument
5260 pp_builtin_define(char *definition) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fUniformApiTests.cpp1262 const char* definition; member in struct:deqp::__anon20144
1313 dst << compareFuncs[compFuncNdx].definition << "\n";
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js429 parent:["widget"]}, complementary:{namefrom:["author"], parent:["landmark"]}, composite:{"abstract":!0, childpresentational:!1, namefrom:["author"], parent:["widget"], properties:["aria-activedescendant"]}, contentinfo:{namefrom:["author"], parent:["landmark"]}, definition:{namefrom:["author"], parent:["section"]}, dialog:{namefrom:["author"], namerequired:!0, parent:["window"]}, directory:{namefrom:["contents", "author"], parent:["list"]}, document:{namefrom:[" author"], namerequired:!0, parent:["structure"],
487 axs.constants.STRUCTURE_ROLE_TO_NAME = {article:"aria_role_article", application:"aria_role_application", banner:"aria_role_banner", columnheader:"aria_role_columnheader", complementary:"aria_role_complementary", contentinfo:"aria_role_contentinfo", definition:"aria_role_definition", directory:"aria_role_directory", document:"aria_role_document", form:"aria_role_form", group:"aria_role_group", heading:"aria_role_heading", img:"aria_role_img", list:"aria_role_list", listitem:"aria_role_listitem",

Completed in 9199 milliseconds

12