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

1 2

  /external/webkit/WebCore/dom/
MappedAttribute.h 54 MappedAttribute(const QualifiedName& name, const AtomicString& value, CSSMappedAttributeDeclaration* declaration)
55 : Attribute(name, value), m_styleDecl(declaration)
58 MappedAttribute(const AtomicString& name, const AtomicString& value, CSSMappedAttributeDeclaration* declaration)
59 : Attribute(name, value), m_styleDecl(declaration)
  /external/webkit/WebCore/css/
WebKitCSSKeyframeRule.h 71 CSSMutableStyleDeclaration* declaration() { return m_style.get(); } function in class:WebCore::WebKitCSSKeyframeRule
72 const CSSMutableStyleDeclaration* declaration() const { return m_style.get(); } function in class:WebCore::WebKitCSSKeyframeRule
CSSStyleRule.h 57 CSSMutableStyleDeclaration* declaration() { return m_style.get(); } function in class:WebCore::CSSStyleRule
CSSGrammar.y 243 %type <boolean> declaration
734 '{' maybe_space declaration [ ';' maybe_space declaration ]* '}' maybe_space
1182 declaration {
1185 | decl_list declaration {
1208 declaration ';' maybe_space {
1211 | declaration invalid_block_list maybe_space {
1214 | declaration invalid_block_list ';' maybe_space {
1223 | decl_list declaration ';' maybe_space {
1236 declaration label
    [all...]
CSSParser.cpp 272 bool CSSParser::parseValue(CSSMutableStyleDeclaration* declaration, int id, const String& string, bool important)
277 ASSERT(!declaration->stylesheet() || declaration->stylesheet()->isCSSStyleSheet());
278 m_styleSheet = static_cast<CSSStyleSheet*>(declaration->stylesheet());
294 declaration->addParsedProperties(m_parsedProperties, m_numParsedProperties);
329 bool CSSParser::parseColor(CSSMutableStyleDeclaration* declaration, const String& string)
334 ASSERT(!declaration->stylesheet() || declaration->stylesheet()->isCSSStyleSheet());
335 m_styleSheet = static_cast<CSSStyleSheet*>(declaration->stylesheet());
367 bool CSSParser::parseDeclaration(CSSMutableStyleDeclaration* declaration, const String& string
    [all...]
CSSStyleSelector.cpp 575 // See if we have already resolved the variables in this declaration.
582 // If this declaration has any variables in it, then we need to make a cloned
583 // declaration with as many variables resolved as possible for this style selector's media.
594 // Now iterate over the properties in the original declaration. As we resolve variables we'll end up
595 // mutating the new declaration (possibly expanding shorthands). The new declaration has no m_node
648 // and parse our new declaration.
684 addMatchedDeclaration(m_matchedRules[i]->rule()->declaration());
705 CSSMutableStyleDeclaration* decl = rule->declaration();
    [all...]
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 325 * Returns the generic declaration for the type variable with the specified
330 * @param declaration
331 * the declaration to start searching
332 * @return the declaration which defines the specified type variable
335 String variableName, IClassDefinition declaration) {
337 assert declaration != null;
339 if (!Uninitialized.isInitialized(declaration.getTypeParameters())) {
340 declaration = classFinder.initializeClass(declaration
341 .getPackageName(), declaration.getName())
489 IGenericDeclaration declaration = genericDecl; local
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/
Android.mk 20 LOCAL_CFLAGS += -pipe -fomit-frame-pointer -Wall -Wno-trigraphs -Werror-implicit-function-declaration -fno-strict-aliasing -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -msoft-float -Uarm -DMODULE -D__LINUX_ARM_ARCH__=7 -fno-common -DLINUX -DOMAP_3430 -fpic
  /external/webkit/WebCore/bindings/js/
JSCSSStyleDeclarationCustom.cpp 47 CSSStyleDeclaration* declaration = impl(); local
50 if (declaration->isMutableStyleDeclaration()) {
51 CSSMutableStyleDeclaration* mutableDeclaration = static_cast<CSSMutableStyleDeclaration*>(declaration);
  /external/v8/test/mjsunit/regress/
regress-220.js 30 // Ensure that compiling a declaration of a function does not crash.
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
c-pretty-print.h 65 c_pretty_print_fn declaration; member in struct:c_pretty_print_info
103 pp_c_base (PPI)->declaration (pp_c_base (PPI), T)
  /external/bison/src/
parse-gram.y 212 | declarations declaration
215 declaration: label
519 declaration DECL and location LOC. */
548 complain_at (loc, _("missing identifier in parameter declaration"));
parse-gram.c 660 "declarations", "declaration", "grammar_declaration",
    [all...]
  /frameworks/base/tools/aidl/
aidl_language_y.y 50 | document_items declaration {
74 declaration: label
91 fprintf(stderr, "%s:%d syntax error in parcelable declaration. Expected type name.\n",
96 fprintf(stderr, "%s:%d syntax error in parcelable declaration. Expected type name, saw \"%s\".\n",
134 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
139 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
161 fprintf(stderr, "%s:%d: syntax error before ';' (expected method declaration)\n",
  /external/v8/test/mjsunit/
const-eval-init.js 29 // This only makes sense in local scopes since the declaration and
  /external/tinyxml/
xmltest.cpp 385 TiXmlDeclaration* declaration = doc.FirstChild()->ToDeclaration(); local
386 assert( declaration );
397 XmlTest( "Location tracking: Declaration row", declaration->Row(), 1 );
398 XmlTest( "Location tracking: Declaration col", declaration->Column(), 5 );
531 XmlTest( "UTF-8: Declaration column.", 1, dec->Column() );
623 XmlTest( "Copy/Assign: declaration copy.", "UTF-8", decCopy.Encoding() );
  /external/v8/src/
scopes.h 38 // A hash map to support fast variable declaration and lookup.
154 // Adds the specific declaration node to the list of declarations in
157 void AddDeclaration(Declaration* declaration);
243 ZoneList<Declaration*>* declarations() { return &decls_; }
320 ZoneList<Declaration*> decls_;
scopes.cc 283 void Scope::AddDeclaration(Declaration* declaration) {
284 decls_.Add(declaration);
    [all...]
string.js 29 // This file relies on the fact that the following declaration has been made
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uiterator.h 255 #error This declaration is for doxygen only; it is not compiled.
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java     [all...]
  /external/libpng/
CHANGES     [all...]
  /dalvik/docs/
prettify.js 164 /** token style for a markup declaration such as a DOCTYPE. */
    [all...]
  /external/libxml2/
parser.c 357 errmsg = "'>' required to close NOTATION declaration\n";
407 errmsg = "Text declaration '<?xml' required\n";
410 errmsg = "parsing XML declaration: '?>' expected\n";
452 errmsg = "Malformed declaration expecting version\n";
    [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 490 milliseconds

1 2