Searched refs:attrs (Results 51 - 75 of 209) sorted by relevance

123456789

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DAttList.java52 // * @param attrs List of attributes this will contain
54 // public AttList(NamedNodeMap attrs)
57 // m_attrs = attrs;
66 * @param attrs List of attributes this will contain
69 public AttList(NamedNodeMap attrs, DOMHelper dh) argument
72 m_attrs = attrs;
/external/skia/src/xml/
H A DSkDOM.cpp54 const SkDOMAttr* attrs() const function in struct:SkDOMNode
58 SkDOMAttr* attrs() function in struct:SkDOMNode
123 const Attr* attr = node->attrs();
139 return node->fAttrCount ? node->attrs() : NULL;
147 return (attr - node->attrs() + 1) < node->fAttrCount ? attr + 1 : NULL;
169 fAttr = node->attrs();
239 memcpy(node->attrs(), fAttrs.begin(), attrCount * sizeof(SkDOM::Attr));
445 const Attr* attr = node->attrs();
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DGraphicsContext3DMac.mm81 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
86 RefPtr<GraphicsContext3D> context = adoptRef(new GraphicsContext3D(attrs, hostWindow, false));
90 GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, bool)
94 , m_attrs(attrs)
/external/clang/lib/Parse/
H A DParseDecl.cpp109 void Parser::ParseGNUAttributes(ParsedAttributes &attrs, argument
157 ParseGNUAttributeArgs(AttrName, AttrNameLoc, attrs, endLoc);
160 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc,
449 void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) { argument
458 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
463 void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) { argument
468 attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0,
473 void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) { argument
477 attrs.addNew(PP.getIdentifierInfo("opencl_kernel_function"),
659 ParsedAttributes &attrs,
657 ParseAvailabilityAttribute(IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc) argument
1130 DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs) argument
1151 ParseDeclaration(StmtVector &Stmts, unsigned Context, SourceLocation &DeclEnd, ParsedAttributesWithRange &attrs) argument
1218 ParseSimpleDeclaration(StmtVector &Stmts, unsigned Context, SourceLocation &DeclEnd, ParsedAttributesWithRange &attrs, bool RequireSemi, ForRangeInit *FRI) argument
4497 attrs, T.getCloseLocation()); local
5064 attrs, T.getCloseLocation()); local
[all...]
H A DParser.cpp573 ParsedAttributesWithRange attrs(AttrFactory);
574 MaybeParseCXX0XAttributes(attrs);
575 MaybeParseMicrosoftAttributes(attrs);
577 Result = ParseExternalDeclaration(attrs);
619 Parser::ParseExternalDeclaration(ParsedAttributesWithRange &attrs, argument
652 return ParseExternalDeclaration(attrs);
655 ProhibitAttributes(attrs);
697 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
708 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
720 return ParseDeclaration(Stmts, Declarator::FileContext, DeclEnd, attrs);
828 ParseDeclOrFunctionDefInternal(ParsedAttributesWithRange &attrs, ParsingDeclSpec &DS, AccessSpecifier AS) argument
886 ParseDeclarationOrFunctionDefinition(ParsedAttributesWithRange &attrs, ParsingDeclSpec *DS, AccessSpecifier AS) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNewHdfParser.java56 ArrayList<String> attrs = null; field in class:NewHdfParser.HdfNameAttrs
62 if (attrs != null) {
63 attrs.clear();
69 if (attrs == null) {
70 attrs = new ArrayList<String>(10);
72 attrs.ensureCapacity(attrs.size() + 2);
74 attrs.add(key);
75 attrs.add(value);
80 if (attrs !
[all...]
/external/kernel-headers/original/linux/
H A Dattribute_container.h21 struct class_device_attribute **attrs; member in struct:attribute_container
/external/webkit/Source/JavaScriptCore/
H A Dcreate_hash_table41 my @attrs = ();
74 @attrs = ();
86 push(@attrs, length($att) > 0 ? $att : "0");
287 print " { \"$key\", $attrs[$i], (intptr_t)" . $castStr . "($firstValue), (intptr_t)$secondValue THUNK_GENERATOR($thunkGenerator) },\n";
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DTextCheckerClientEnchant.cpp84 GOwnPtr<PangoLogAttr> attrs(g_new(PangoLogAttr, utf8Length + 1));
87 pango_get_log_attrs(utf8Text.get(), -1, -1, language, attrs.get(), utf8Length + 1);
93 if (attrs.get()[i].is_word_start) {
98 while (attrs.get()[end].is_word_end < 1)
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserQt.cpp157 if (NamedNodeMap* attrs = element->attributes()) {
158 for (unsigned i = 0; i < attrs->length(); i++) {
159 Attribute* attr = attrs->attributeItem(i);
297 static void attributesStartElementNsHandler(AttributeParseState* state, const QXmlStreamAttributes& attrs) argument
299 if (attrs.count() <= 0)
304 for (int i = 0; i < attrs.count(); i++) {
305 const QXmlStreamAttribute& attr = attrs[i];
320 QString dummy = QString(QLatin1String("<?xml version=\"1.0\"?><attrs %1 />")).arg(string);
355 static inline void handleElementAttributes(Element* newElement, const QXmlStreamAttributes &attrs, ExceptionCode& ec, argument
358 for (int i = 0; i < attrs
[all...]
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/
H A Diexploder.rb81 @htmlAttr = readTagsDir("#{data_path}/html-attrs")
321 attrs = []
325 when 0 then attrs << 'lang'
326 when 1 then attrs << 'dir'
327 when 2 then attrs << 'profile'
333 attrs << 'EXCLUDED_src'
335 attrs << 'src'
339 while attrs.length < attrNum
344 attrs << attribute
348 for attr in attrs
[all...]
/external/clang/include/clang/Sema/
H A DAttributeList.h542 ParsedAttributes(ParsedAttributes &attrs)
543 : pool(attrs.pool), list(attrs.list) {
544 attrs.list = 0;
573 void takeAllFrom(ParsedAttributes &attrs) {
574 addAll(attrs.list);
575 attrs.list = 0;
576 pool.takeAllFrom(attrs.pool);
/external/quake/src/com/android/quake/
H A DQuakeView.java60 public QuakeView(Context context, AttributeSet attrs) { argument
61 super(context, attrs);
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Ddeduplicate_tests.py84 attrs, path = line.strip().split('\t')
90 _, _, hash = attrs.split(' ')
/external/chromium/chrome/browser/renderer_host/
H A Dgtk_im_context_wrapper.h89 PangoAttrList* attrs,
/external/expat/amiga/
H A Dexpat_68k.h63 void _68k_startelementhandler(void *userdata, const char *name, const char **attrs);
/external/replicaisland/src/com/replica/replicaisland/
H A DConversationDialogActivity.java229 public TypewriterTextView(Context context, AttributeSet attrs) { argument
230 super(context, attrs);
233 public TypewriterTextView(Context context, AttributeSet attrs, int defStyle) { argument
234 super(context, attrs, defStyle);
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DDefineGrammarItemsWalker.g130 : ^( 'scope' name=ID attrScopeAction* attrs=ACTION )
132 AttributeScope scope = grammar.defineGlobalScope($name.text,$attrs.getToken());
134 scope.addAttributes($attrs.text, ';');
293 ( attrScopeAction* attrs=ACTION
295 r.ruleScope = grammar.createRuleScope(r.name,$attrs.getToken());
297 r.ruleScope.addAttributes($attrs.text, ';');
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java264 org.xml.sax.helpers.AttributesImpl attrs =
271 attrs.addAttribute(dtm.getNamespaceURI(i),
282 attrs);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509AttributeCertificateHolder.java150 Attribute[] attrs = new Attribute[seq.size()];
154 attrs[i] = Attribute.getInstance(seq.getObjectAt(i));
157 return attrs;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509V2AttributeCertificate.java279 X509Attribute[] attrs = new X509Attribute[seq.size()];
283 attrs[i] = new X509Attribute((ASN1Encodable)seq.getObjectAt(i));
286 return attrs;
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMSerializer.java216 NamedNodeMap attrs = element.getAttributes();
217 for (int i = 0, imax = attrs.getLength(); i < imax; ++i) {
218 Attr attr = (Attr) attrs.item(i);
/external/openssl/crypto/store/
H A Dstr_mem.c227 STORE_ATTR_INFO *attrs = NULL; local
243 while((attrs = STORE_parse_attrs_next(attribute_context)))
256 sk_STORE_ATTR_INFO_push(context->search_attributes,attrs);
/external/elfutils/tests/
H A Dshow-die-info.c106 } attrs[] = variable in typeref:struct:__anon5347
221 #define nattrs (sizeof (attrs) / sizeof (attrs[0]))
266 if (dwarf_hasattr (die, attrs[cnt].code))
267 printf (" %s", attrs[cnt].name);
/external/webkit/Source/WebCore/platform/mac/
H A DHTMLConverter.mm59 + (NSDictionary *)_standardMarkerAttributesForAttributes:(NSDictionary *)attrs;
610 NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
652 if (font) [attrs setObject:font forKey:NSFontAttributeName];
653 if (foregroundColor) [attrs setObject:foregroundColor forKey:NSForegroundColorAttributeName];
654 if (backgroundColor && ![self _elementHasOwnBackgroundColor:element]) [attrs setObject:backgroundColor forKey:NSBackgroundColorAttributeName];
656 if ([fontEffect rangeOfString:@"outline"].location != NSNotFound) [attrs setObject:[NSNumber numberWithDouble:3.0] forKey:NSStrokeWidthAttributeName];
657 if ([fontEffect rangeOfString:@"emboss"].location != NSNotFound) [attrs setObject:[[[NSShadow alloc] init] autorelease] forKey:NSShadowAttributeName];
660 if ([textDecoration rangeOfString:@"underline"].location != NSNotFound) [attrs setObject:[NSNumber numberWithInteger:NSUnderlineStyleSingle] forKey:NSUnderlineStyleAttributeName];
661 if ([textDecoration rangeOfString:@"line-through"].location != NSNotFound) [attrs setObject:[NSNumber numberWithInteger:NSUnderlineStyleSingle] forKey:NSStrikethroughStyleAttributeName];
664 if ([verticalAlign rangeOfString:@"super"].location != NSNotFound) [attrs setObjec
[all...]

Completed in 522 milliseconds

123456789