HomeSort by relevance Sort by last modified time
    Searched full:attributes (Results 151 - 175 of 6465) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/html/canvas/
WebGLContextAttributes.cpp 40 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
42 return adoptRef(new WebGLContextAttributes(attributes));
50 WebGLContextAttributes::WebGLContextAttributes(GraphicsContext3D::Attributes attributes)
52 , m_attrs(attributes)
120 GraphicsContext3D::Attributes WebGLContextAttributes::attributes() const function in class:WebCore::WebGLContextAttributes
  /external/jdiff/src/jdiff/
APIHandler.java 7 import org.xml.sax.Attributes;
73 java.lang.String qName, Attributes attributes) {
78 String apiName = attributes.getValue("name");
79 String version = attributes.getValue("jdversion"); // Not used yet
83 String pkgName = attributes.getValue("name");
87 String className = attributes.getValue("name");
88 String parentName = attributes.getValue("extends");
90 if (attributes.getValue("abstract").compareTo("true") == 0)
92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorAttributeSet.java 28 import org.xml.sax.Attributes;
51 * @param attributes The attributes attached to the element. If
52 * there are no attributes, it shall be an empty
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
92 * @param attributes The specified or defaulted attributes
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PrivateKeyInfo.java 27 private ASN1Set attributes; field in class:PrivateKeyInfo
62 ASN1Set attributes)
67 this.attributes = attributes;
86 attributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false);
125 return attributes;
136 * attributes [0] IMPLICIT Attributes OPTIONAL
142 * Attributes ::= SET OF Attribute
153 if (attributes != null
    [all...]
  /external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js 16 for(var i=0; i < node.attributes.length; i++) {
17 if (node.attributes[i].nodeName == 'displaystyle') {
18 newnode.setAttribute(node.attributes[i].nodeName,node.attributes[i].nodeValue);
62 for(var j=0; j < node.attributes.length; j++) {
63 if (node.attributes[j].nodeValue!="italic" &&
64 node.attributes[j].nodeValue!="" &&
65 node.attributes[j].nodeValue!="inherit" &&
66 node.attributes[j].nodeValue!=undefined) {
67 str += " "+node.attributes[j].nodeName+"="
    [all...]
  /external/openssl/crypto/store/
str_lib.c 254 X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[],
264 attributes, parameters);
280 int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[],
304 object, attributes, parameters);
335 int STORE_revoke_certificate(STORE *s, OPENSSL_ITEM attributes[],
342 attributes, parameters))
351 int STORE_delete_certificate(STORE *s, OPENSSL_ITEM attributes[],
358 attributes, parameters))
367 void *STORE_list_certificate_start(STORE *s, OPENSSL_ITEM attributes[],
376 STORE_OBJECT_TYPE_X509_CERTIFICATE, attributes, parameters)
1537 OPENSSL_ITEM *attributes; member in struct:attr_list_ctx_st
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitviewportattributes.cpp 35 * @see_also: #WebKitWebView::viewport-attributes-recompute-requested
36 * @see_also: #WebKitWebView::viewport-attributes-changed
43 * The #WebKitWebView::viewport-attributes-changed signal will be emitted with #WebKitViewportAttributes
44 * when the viewport attributes are updated in the case of loading web pages contain
50 * override those values in the handler of #WebKitWebView::viewport-attributes-recompute-requested signal.
56 * /<!-- -->* Connect to the viewport-attributes-changes signal *<!-- -->/
57 * WebKitViewportAttributes* attributes = webkit_web_view_get_viewport_attributes (web_view);
58 * g_signal_connect (web_view, "viewport-attributes-recompute-requested", G_CALLBACK (viewport_recompute_cb), window);
59 * g_signal_connect (web_view, "viewport-attributes-changed", G_CALLBACK (viewport_changed_cb), window);
60 * g_signal_connect (attributes, "notify::valid", G_CALLBACK (viewport_valid_changed_cb), web_view)
537 ViewportAttributes attributes = computeViewportAttributes(arguments, priv->desktopWidth, priv->deviceWidth, priv->deviceHeight, priv->deviceDPI, IntSize(priv->availableWidth, priv->availableHeight)); local
    [all...]
  /dalvik/dx/tests/021-code-attrib-LineNumberTable/
expected.txt 31 attributes[0]:
42 attributes[0]:
48 end attributes[0]
49 end attributes[0]
  /dalvik/dx/tests/022-code-attrib-LocalVariableTable/
expected.txt 35 attributes[0]:
46 attributes[0]:
53 end attributes[0]
54 end attributes[0]
  /dalvik/dx/tests/028-class-attrib-EnclosingMethod/
expected.txt 23 attributes[0]:
28 end attributes[0]
55 attributes[0]:
60 end attributes[0]
  /development/ndk/platforms/android-3/arch-arm/lib-bootstrap/
libdl.so 
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 36 /** Track the attributes within a scope. A named scoped has just its list
37 * of attributes. Each rule has potentially 3 scopes: return values,
45 * of predefined attributes. I keep this out of the runtime.Token
83 protected LinkedHashMap<String,Attribute> attributes = new LinkedHashMap(); field in class:AttributeScope
108 /** From a chunk of text holding the definitions of the attributes,
110 * the list of attributes for this scope. Pass in the character
133 attributes.put(attr.name, attr);
138 attributes.put(name, new Attribute(name,decl));
159 return (Attribute)attributes.get(name);
162 /** Used by templates to get all attributes */
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
PKCS12BagAttributeCarrier.java 9 * allow us to set attributes on objects that can go into a PKCS12 store.
  /external/clang/test/CodeGen/
attr-coldhot.c 11 // CHECK: attributes [[ATTR]] = { {{.*}}optsize{{.*}} }
  /external/clang/test/CodeGenCXX/
cxx11-noreturn.cpp 10 // CHECK: attributes [[NR]] = { noreturn nounwind{{.*}} }
  /external/clang/test/CodeGenObjC/
nonlazy-msgSend.m 8 // CHECK: attributes [[NLB]] = { nonlazybind }
  /external/clang/test/PCH/
cxx11-statement-attributes.cpp 2 // RUN: %clang_cc1 -include %S/Inputs/cxx11-statement-attributes.h -std=c++11 -Wimplicit-fallthrough -fsyntax-only %s -o - -verify
3 // Run the same tests, this time with the attributes loaded from the PCH file.
4 // RUN: %clang_cc1 -x c++-header -emit-pch -std=c++11 -o %t %S/Inputs/cxx11-statement-attributes.h
7 // Warning from Inputs/cxx11-statement-attributes.h:
  /external/clang/test/Parser/
access-spec-attrs.cpp 4 public __attribute__((unavailable)): // expected-error {{access specifier can only have annotation attributes}}
  /external/clang/test/SemaObjC/
weak-property.m 13 @property (weak, assign) id v1; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
14 @property (weak, copy) id v2; // expected-error {{property attributes 'copy' and 'weak' are mutually exclusive}}
15 @property (weak, retain) id v3; // expected-error {{property attributes 'retain' and 'weak' are mutually exclusive}}
16 @property (weak, assign) id v4; // expected-error {{property attributes 'assign' and 'weak' are mutually exclusive}}
  /external/e2fsprogs/misc/
lsattr.1.in 4 lsattr \- list file attributes on a Linux second extended file system
15 lists the file attributes on a second extended file system. See
17 for a description of the attributes and what they mean.
21 Recursively list attributes of directories and their contents.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
PlatformStatus.java 29 NamedNodeMap attributes = anElement.getAttributes(); local
30 this.id = (String) attributes.getNamedItem("id").getNodeValue();
31 this.name = (String) attributes.getNamedItem("name").getNodeValue();
32 this.fileName = (String) attributes.getNamedItem("fileName").getNodeValue();
  /external/llvm/test/Assembler/
2008-09-29-RetAttr.ll 1 ; Test return attributes
  /external/llvm/test/Transforms/FunctionAttrs/
2008-09-03-ReadOnly.ll 13 ; CHECK: attributes #0 = { readonly }
  /external/markdown/MarkdownTest/Tests_2007/
Inline HTML (Advanced).text 17 And with attributes:
  /external/webkit/LayoutTests/fast/encoding/
high-bit-latin1.html 14 document.write(document.getElementById("t").attributes[1].name == "\u00e0" ? "PASS" : "FAIL");

Completed in 851 milliseconds

1 2 3 4 5 67 8 91011>>