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

1 2 3 4 5 6 7 8

  /external/clang/test/CodeGenObjC/
attr-strong.c 6 struct s0 * __attribute__((objc_gc(strong))) g0;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementretrievetagname.java 66 String strong; local
70 strong = testEmployee.getNodeName();
71 assertEqualsAutoCase("element", "nodename", "code", strong);
72 strong = ((Element) /*Node */testEmployee).getTagName();
73 assertEqualsAutoCase("element", "tagname", "code", strong);
hc_elementreplaceexistingattribute.java 71 String strong; local
78 strong = testEmployee.getAttribute("class");
79 assertEquals("replacedValue", "", strong);
hc_namednodemapchildnoderange.java 68 String strong; local
hc_namednodemapwrongdocumenterr.java 77 String strong; local
  /external/skia/src/core/
SkTypefaceCache.cpp 18 bool strong) {
26 rec->fStrong = strong;
27 if (strong) {
71 bool strong = fArray[i].fStrong; local
72 if ((strong && face->getRefCnt() == 1) ||
73 (!strong && face->weak_expired()))
75 if (strong) {
111 bool strong) {
113 Get().add(face, requestedStyle, strong);
SkTypefaceCache.h 47 bool strong = true);
80 void add(SkTypeface*, SkTypeface::Style requested, bool strong = true);
  /build/tools/droiddoc/templates-pdk/assets/
customizations.js 3 $("#naMessage").show().html("<div><p><strong>This " + thing + " is not available with API Level " + selectedLevel + ".</strong></p>"
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentgetelementsbytagnametotallength.js 103 expectedNames[10] = "strong";
110 expectedNames[17] = "strong";
117 expectedNames[24] = "strong";
124 expectedNames[31] = "strong";
131 expectedNames[38] = "strong";
147 svgExpectedNames[9] = "strong";
154 svgExpectedNames[16] = "strong";
161 svgExpectedNames[23] = "strong";
168 svgExpectedNames[30] = "strong";
175 svgExpectedNames[37] = "strong";
    [all...]
hc_elementretrievetagname.js 95 var strong;
104 strong = testEmployee.nodeName;
106 assertEqualsAutoCase("element", "nodename","code",strong);
107 strong = testEmployee.tagName;
109 assertEqualsAutoCase("element", "tagname","code",strong);
hc_elementreplaceexistingattribute.js 100 var strong;
112 strong = testEmployee.getAttribute("class");
113 assertEquals("replacedValue","",strong);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentgetelementsbytagnametotallength.js 103 expectedNames[10] = "strong";
110 expectedNames[17] = "strong";
117 expectedNames[24] = "strong";
124 expectedNames[31] = "strong";
131 expectedNames[38] = "strong";
147 svgExpectedNames[9] = "strong";
154 svgExpectedNames[16] = "strong";
161 svgExpectedNames[23] = "strong";
168 svgExpectedNames[30] = "strong";
175 svgExpectedNames[37] = "strong";
    [all...]
hc_elementretrievetagname.js 95 var strong;
104 strong = testEmployee.nodeName;
106 assertEqualsAutoCase("element", "nodename","code",strong);
107 strong = testEmployee.tagName;
109 assertEqualsAutoCase("element", "tagname","code",strong);
hc_elementreplaceexistingattribute.js 100 var strong;
112 strong = testEmployee.getAttribute("class");
113 assertEquals("replacedValue","",strong);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodecomparedocumentposition30.js 91 var strong;
100 nameList = doc.getElementsByTagName("strong");
101 strong = nameList.item(0);
104 namePosition = code.compareDocumentPosition(strong);
nodecomparedocumentposition32.js 92 var strong;
102 nameList = doc.getElementsByTagName("strong");
103 strong = nameList.item(0);
106 documentPosition = strong.compareDocumentPosition(code);
nodecomparedocumentposition31.js 91 var strong;
103 nameList = doc.getElementsByTagName("strong");
104 strong = nameList.item(0);
109 namePosition = strong.compareDocumentPosition(newElem);
111 elemPosition = newElem.compareDocumentPosition(strong);
elementsetidattribute07.js 78 First use setAttribute to create two new attribute of the second and third strong element with different values.
104 elemList = doc.getElementsByTagName("strong");
126 assertEquals("elementsetidattribute1GetElementById07","strong",elemName);
130 assertEquals("elementsetidattribute2GetElementById07","strong",elemName);
documentnormalizedocument02.js 108 elemList = doc.getElementsByTagName("strong");
121 elemList = doc.getElementsByTagName("strong");
131 elemList = doc.getElementsByTagName("strong");
elementsetidattribute04.js 78 First use setAttribute to create a new attribute on the third strong element. Invoke setIdAttribute
103 elemList = doc.getElementsByTagName("strong");
116 assertEquals("elementsetidattributeGetElementById03","strong",elemName);
elementsetidattribute09.js 78 First use setAttribute to create two new attributes on the second strong element and sup element.
105 elemList1 = doc.getElementsByTagName("strong");
128 assertEquals("elementsetidattribute1GetElementById09","strong",elemName);
elementsetidattributenode03.js 78 Create a new attribute node on the second strong element. Invoke setIdAttributeNode on a newly created
104 elemList = doc.getElementsByTagName("strong");
117 assertEquals("elementsetidattributenodeGetElementById03","strong",elemName);
elementsetidattributenode04.js 78 Create a new namespace attribute on the second strong element. Invoke setIdAttributeNode on a newly created
104 elemList = doc.getElementsByTagName("strong");
117 assertEquals("elementsetidattributenodeGetElementById04","strong",elemName);
elementsetidattributens04.js 83 Invoke setIdAttributeNS on newly added attribute on the third strong element. Verify by calling
108 elemList = doc.getElementsByTagNameNS("*","strong");
121 assertEquals("elementsetidattributensGetElementById04","strong",elemName);
  /dalvik/tests/074-gc-thrash/src/
Main.java 197 private static String strong[] = new String[MAX_DEPTH]; field in class:Deep
219 * "weak" should be matched in "strong", and the two should be
223 if (strong[i] != weak[i].get()) {
224 System.err.println("Deep: " + i + " strong=" + strong[i] +
230 * Wipe "strong", do a GC, see if "weak" got collected.
233 strong[i] = null;
293 strong[depth] = funStr;

Completed in 234 milliseconds

1 2 3 4 5 6 7 8