HomeSort by relevance Sort by last modified time
    Searched full:section (Results 226 - 250 of 10156) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
annotations-global.c 18 // FOOS: private unnamed_addr constant [7 x i8] c"sfoo_{{.}}\00", section "llvm.metadata"
19 // FOOS: private unnamed_addr constant [7 x i8] c"sfoo_{{.}}\00", section "llvm.metadata"
21 // FOOS: @llvm.global.annotations = appending global [10 x { i8*, i8*, i8*, i32 }] {{.*}}i8* @sfoo{{.*}}i8* @sfoo{{.*}}, section "llvm.metadata"
24 // FOO: private unnamed_addr constant [6 x i8] c"foo_{{.}}\00", section "llvm.metadata"
25 // FOO: private unnamed_addr constant [6 x i8] c"foo_{{.}}\00", section "llvm.metadata"
27 // FOO: @llvm.global.annotations = appending global [10 x { i8*, i8*, i8*, i32 }] {{.*}}i8* @foo{{.*}}i8* @foo{{.*}}, section "llvm.metadata"
30 // A: private unnamed_addr constant [8 x i8] c"ann_a_{{.}}\00", section "llvm.metadata"
31 // A: private unnamed_addr constant [8 x i8] c"ann_a_{{.}}\00", section "llvm.metadata"
32 // A: private unnamed_addr constant [8 x i8] c"ann_a_{{.}}\00", section "llvm.metadata"
33 // A: private unnamed_addr constant [8 x i8] c"ann_a_{{.}}\00", section "llvm.metadata
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-4.js 24 ECMA Section: 15.9.2.2 Date constructor used as a function
37 var SECTION = "15.9.2.2";
41 writeHeaderToLog(SECTION+" "+TITLE );
54 array[item++] = new TestCase( SECTION, "Date( 2000,1,29,0,0,0)", (new Date()).toString(), Date(2000,1,29,0,0,0));
55 array[item++] = new TestCase( SECTION, "Date( 2000,1,28,23,59,59)", (new Date()).toString(), Date( 2000,1,28,23,59,59));
56 array[item++] = new TestCase( SECTION, "Date( 2000,1,27,16,0,0)", (new Date()).toString(), Date(2000,1,27,16,0,0));
60 array[item++] = new TestCase( SECTION, "Date(2004,11,31,23,59,59)", (new Date()).toString(), Date(2004,11,31,23,59,59));
61 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,0)", (new Date()).toString(), Date(2005,0,1,0,0,0) );
62 array[item++] = new TestCase( SECTION, "Date(2005,0,1,0,0,1)", (new Date()).toString(), Date(2005,0,1,0,0,1) );
63 array[item++] = new TestCase( SECTION, "Date(2004,11,31,16,0,0,0)", (new Date()).toString(), Date(2004,11,31,16,0,0,0))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
asterisk.js 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
36 writeHeaderToLog( SECTION + " "+ TITLE);
42 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('d*'))",
46 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('cd*'))",
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('cx*d'))",
54 testcases[count++] = new TestCase ( SECTION, "'xxxxxxx'.match(new RegExp('(x*)(x+)'))",
58 testcases[count++] = new TestCase ( SECTION, "'1234567890'.match(new RegExp('(\\d*)(\\d+)'))",
63 testcases[count++] = new TestCase ( SECTION, "'1234567890'.match(new RegExp('(\\d*)\\d(\\d+)'))",
68 testcases[count++] = new TestCase ( SECTION, "'xxxxxxx'.match(new RegExp('(x+)(x*)'))",
72 testcases[count++] = new TestCase ( SECTION, "'xxxxxxyyyyyy'.match(new RegExp('x*y+$'))"
    [all...]
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/
project.pbxproj 9 /* Begin PBXBuildFile section */
16 /* End PBXBuildFile section */
18 /* Begin PBXContainerItemProxy section */
26 /* End PBXContainerItemProxy section */
28 /* Begin PBXFileReference section */
37 /* End PBXFileReference section */
39 /* Begin PBXFrameworksBuildPhase section */
57 /* End PBXFrameworksBuildPhase section */
59 /* Begin PBXGroup section */
115 /* End PBXGroup section */
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
dowhile-007.js 3 * ECMA Section:
11 var SECTION = "dowhile-007";
16 writeHeaderToLog( SECTION + " "+ TITLE);
72 SECTION,
78 SECTION,
84 SECTION,
90 SECTION,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
array_split_1.js 24 ECMA Section: Array.split()
33 var SECTION = "Free Perl";
39 writeHeaderToLog( SECTION + " "+ TITLE);
44 testcases[tc++] = new TestCase( SECTION,
49 testcases[tc++] = new TestCase( SECTION,
54 testcases[tc++] = new TestCase( SECTION,
64 testcases[tc++] = new TestCase( SECTION,
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 15 * Provides a scrolling text view previewing a named section of a
40 String section = intent.getStringExtra("section"); local
41 if (section == null || section.length() == 0) {
42 section = "SYSTEM LOG";
49 String text = BugReportParser.extractSystemLogs(in, section);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.13.2-3.js 24 ECMA Section: 11.13.2 Compound Assignment: %=
46 var SECTION = "11.13.2-3";
51 writeHeaderToLog( SECTION + " Compound Assignment: +=");
60 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 %= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 %= VAR2") );
61 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 %= VAR2; VAR1") );
62 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 %= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 %= VAR2") );
63 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=0; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=0; VAR1 %= VAR2; VAR1") );
64 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=NaN; VAR1 %= VAR2", Number.NaN, eval("VAR1 = 0; VAR2=Number.NaN; VAR1 %= VAR2") );
65 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=NaN; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = 0; VAR2=Number.NaN; VAR1 %= VAR2; VAR1") );
69 array[item++] = new TestCase( SECTION, "VAR1 = Infinity; VAR2= Infinity; VAR1 %= VAR2; VAR1", Number.NaN, eval("VAR1 = Number. (…)
    [all...]
11.5.3.js 24 ECMA Section: 11.5.3 Applying the % operator
56 var SECTION = "11.5.3";
62 writeHeaderToLog( SECTION + " Applying the % operator");
84 array[item++] = new TestCase( SECTION, "Number.NaN % Number.NaN", Number.NaN, Number.NaN % Number.NaN );
85 array[item++] = new TestCase( SECTION, "Number.NaN % 1", Number.NaN, Number.NaN % 1 );
86 array[item++] = new TestCase( SECTION, "1 % Number.NaN", Number.NaN, 1 % Number.NaN );
88 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY % Number.NaN", Number.NaN, Number.POSITIVE_INFINITY % Number.NaN );
89 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.NaN", Number.NaN, Number.NEGATIVE_INFINITY % Number.NaN );
94 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY % Number.NEGATIVE_INFINITY", Number.NaN, Number.NEGATIVE_INFINITY % Number.NEGATIVE_INFINITY );
95 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY % Number.NEGATIVE_INFINITY", Number.NaN, Number.POSITIVE_INFINI (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.3.js 24 ECMA Section: 10.1.3.js Variable Instantiation
30 var SECTION = "10.1.3";
36 writeHeaderToLog( SECTION + " "+ TITLE);
49 new TestCase(SECTION,
57 new TestCase(SECTION,
65 new TestCase(SECTION,
70 new TestCase(SECTION,
75 new TestCase(SECTION,
80 new TestCase(SECTION,
86 new TestCase(SECTION, "function t1(a,a) { return a; }; t1( 4 );"
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.18.js 24 ECMA Section: 15.8.2.18 tan( x )
36 var SECTION = "15.8.2.18";
42 writeHeaderToLog( SECTION + " "+ TITLE);
51 array[item++] = new TestCase( SECTION, "Math.tan.length", 1, Math.tan.length );
53 array[item++] = new TestCase( SECTION, "Math.tan()", Number.NaN, Math.tan() );
54 array[item++] = new TestCase( SECTION, "Math.tan(void 0)", Number.NaN, Math.tan(void 0));
55 array[item++] = new TestCase( SECTION, "Math.tan(null)", 0, Math.tan(null) );
56 array[item++] = new TestCase( SECTION, "Math.tan(false)", 0, Math.tan(false) );
58 array[item++] = new TestCase( SECTION, "Math.tan(NaN)", Number.NaN, Math.tan(Number.NaN) );
59 array[item++] = new TestCase( SECTION, "Math.tan(0)", 0, Math.tan(0))
    [all...]
15.8.2.2.js 24 ECMA Section: 15.8.2.2 acos( x )
35 var SECTION = "15.8.2.2";
40 writeHeaderToLog( SECTION + " "+ TITLE);
49 array[item++] = new TestCase( SECTION, "Math.acos.length", 1, Math.acos.length );
51 array[item++] = new TestCase( SECTION, "Math.acos(void 0)", Number.NaN, Math.acos(void 0) );
52 array[item++] = new TestCase( SECTION, "Math.acos()", Number.NaN, Math.acos() );
53 array[item++] = new TestCase( SECTION, "Math.acos(null)", Math.PI/2, Math.acos(null) );
54 array[item++] = new TestCase( SECTION, "Math.acos(NaN)", Number.NaN, Math.acos(Number.NaN) );
56 array[item++] = new TestCase( SECTION, "Math.acos(a string)", Number.NaN, Math.acos("a string") );
57 array[item++] = new TestCase( SECTION, "Math.acos('0')", Math.PI/2, Math.acos('0') )
    [all...]
15.8.2.4.js 24 ECMA Section: 15.8.2.4 atan( x )
38 var SECTION = "15.8.2.4";
44 writeHeaderToLog( SECTION + " "+ TITLE);
53 array[item++] = new TestCase( SECTION, "Math.atan.length", 1, Math.atan.length );
55 array[item++] = new TestCase( SECTION, "Math.atan()", Number.NaN, Math.atan() );
56 array[item++] = new TestCase( SECTION, "Math.atan(void 0)", Number.NaN, Math.atan(void 0) );
57 array[item++] = new TestCase( SECTION, "Math.atan(null)", 0, Math.atan(null) );
58 array[item++] = new TestCase( SECTION, "Math.atan(NaN)", Number.NaN, Math.atan(Number.NaN) );
60 array[item++] = new TestCase( SECTION, "Math.atan('a string')", Number.NaN, Math.atan("a string") );
61 array[item++] = new TestCase( SECTION, "Math.atan('0')", 0, Math.atan('0') )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/NativeObjects/
15-1.js 24 ECMA Section: 15 Native ECMAScript Objects
39 var SECTION = "15-1";
44 writeHeaderToLog( SECTION + " "+ TITLE);
53 array[item++] = new TestCase( SECTION, "Function.prototype.__proto__", Object.prototype, Function.prototype.__proto__ );
54 array[item++] = new TestCase( SECTION, "Array.prototype.__proto__", Object.prototype, Array.prototype.__proto__ );
55 array[item++] = new TestCase( SECTION, "String.prototype.__proto__", Object.prototype, String.prototype.__proto__ );
56 array[item++] = new TestCase( SECTION, "Boolean.prototype.__proto__", Object.prototype, Boolean.prototype.__proto__ );
57 array[item++] = new TestCase( SECTION, "Number.prototype.__proto__", Object.prototype, Number.prototype.__proto__ );
58 // array[item++] = new TestCase( SECTION, "Math.prototype.__proto__", Object.prototype, Math.prototype.__proto__ );
59 array[item++] = new TestCase( SECTION, "Date.prototype.__proto__", Object.prototype, Date.prototype.__proto__ )
    [all...]
15-2.js 24 ECMA Section: 15 Native ECMAScript Objects
39 var SECTION = "15-2";
44 writeHeaderToLog( SECTION + " "+ TITLE);
52 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ );
53 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
54 array[item++] = new TestCase( SECTION, "String.__proto__", Function.prototype, String.__proto__ );
55 array[item++] = new TestCase( SECTION, "Boolean.__proto__", Function.prototype, Boolean.__proto__ );
56 array[item++] = new TestCase( SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
57 array[item++] = new TestCase( SECTION, "Date.__proto__", Function.prototype, Date.__proto__ );
58 array[item++] = new TestCase( SECTION, "TestCase.__proto__", Function.prototype, TestCase.__proto__ )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.4-3.js 24 ECMA Section: 15.5.4.4 String.prototype.charAt(pos)
50 var SECTION = "15.5.4.4-3";
55 writeHeaderToLog( SECTION + " "+ TITLE);
73 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "h", foo.charAt(0) );
74 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "e", foo.charAt(1) );
75 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "l", foo.charAt(2) );
76 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "l", foo.charAt(3) );
77 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "o", foo.charAt(4) );
78 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "", foo.charAt(-1) );
79 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello'); ", "", foo.charAt(5) )
    [all...]
15.5.4.2-1.js 24 ECMA Section: 15.5.4.2 String.prototype.toString()
39 var SECTION = "15.5.4.2-1";
44 writeHeaderToLog( SECTION + " "+ TITLE);
52 array[item++] = new TestCase( SECTION, "String.prototype.toString()", "", String.prototype.toString() );
53 array[item++] = new TestCase( SECTION, "(new String()).toString()", "", (new String()).toString() );
54 array[item++] = new TestCase( SECTION, "(new String(\"\")).toString()", "", (new String("")).toString() );
55 array[item++] = new TestCase( SECTION, "(new String( String() )).toString()","", (new String(String())).toString() );
56 array[item++] = new TestCase( SECTION, "(new String( \"h e l l o\" )).toString()", "h e l l o", (new String("h e l l o")).toString() );
57 array[item++] = new TestCase( SECTION, "(new String( 0 )).toString()", "0", (new String(0)).toString() );
15.5.4.js 24 ECMA Section: 15.5.4 Properties of the String prototype object
31 var SECTION = "15.5.4";
36 writeHeaderToLog( SECTION + " "+ TITLE);
45 array[item++] = new TestCase( SECTION,
50 array[item++] = new TestCase( SECTION, "typeof String.prototype", "object", typeof String.prototype );
51 array[item++] = new TestCase( SECTION, "String.prototype.valueOf()", "", String.prototype.valueOf() );
52 array[item++] = new TestCase( SECTION, "String.prototype +''", "", String.prototype + '' );
53 array[item++] = new TestCase( SECTION, "String.prototype.length", 0, String.prototype.length );
54 // array[item++] = new TestCase( SECTION, "String.prototype.__proto__", Object.prototype, String.prototype.__proto__ );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.3-1.js 24 ECMA Section: 9.3 Type Conversion: ToNumber
44 var SECTION = "9.3-1";
50 writeHeaderToLog( SECTION + " ToNumber");
79 array[item++] = new TestCase( SECTION, "Number(new Number())", 0, Number(new Number()) );
80 array[item++] = new TestCase( SECTION, "Number(new Number(Number.NaN))",Number.NaN, Number(new Number(Number.NaN)) );
81 array[item++] = new TestCase( SECTION, "Number(new Number(0))", 0, Number(new Number(0)) );
82 array[item++] = new TestCase( SECTION, "Number(new Number(null))", 0, Number(new Number(null)) );
83 // array[item++] = new TestCase( SECTION, "Number(new Number(void 0))", Number.NaN, Number(new Number(void 0)) );
84 array[item++] = new TestCase( SECTION, "Number(new Number(true))", 1, Number(new Number(true)) );
85 array[item++] = new TestCase( SECTION, "Number(new Number(false))", 0, Number(new Number(false)) )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-002.js 3 Section:
23 var SECTION = "instanceof-002";
28 writeHeaderToLog( SECTION + " "+ TITLE);
75 testcases[tc++] = new TestCase( SECTION,
80 testcases[tc++] = new TestCase( SECTION,
85 testcases[tc++] = new TestCase( SECTION,
90 testcases[tc++] = new TestCase( SECTION,
95 testcases[tc++] = new TestCase( SECTION,
100 testcases[tc++] = new TestCase( SECTION,
105 testcases[tc++] = new TestCase( SECTION,
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/String/
charCodeAt.js 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
36 writeHeaderToLog( SECTION + " "+ TITLE);
44 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt(-2)", NaN, aString.charCodeAt(-2));
45 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt(-1)", NaN, aString.charCodeAt(-1));
46 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 0)", 116, aString.charCodeAt( 0));
47 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 1)", 69, aString.charCodeAt( 1));
48 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 2)", 115, aString.charCodeAt( 2));
49 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 3)", 53, aString.charCodeAt( 3));
50 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 4)", NaN, aString.charCodeAt( 4));
51 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 5)", NaN, aString.charCodeAt( 5))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/operator/
strictEquality.js 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"';
36 writeHeaderToLog( SECTION + " "+ TITLE);
42 testcases[count++] = new TestCase( SECTION, "('8' === 8) ",
45 testcases[count++] = new TestCase( SECTION, "(8 === 8) ",
48 testcases[count++] = new TestCase( SECTION, "(8 === true) ",
51 testcases[count++] = new TestCase( SECTION, "(new String('') === new String('')) ",
54 testcases[count++] = new TestCase( SECTION, "(new Boolean(true) === new Boolean(true))",
59 testcases[count++] = new TestCase( SECTION, "(anObject === anObject) ",
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) "
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_5.js 24 Section:
41 var SECTION = "proto_5";
46 writeHeaderToLog( SECTION + " "+ TITLE);
95 testcases[tc++] = new TestCase( SECTION,
100 testcases[tc++] = new TestCase( SECTION,
105 testcases[tc++] = new TestCase( SECTION,
110 testcases[tc++] = new TestCase( SECTION,
115 testcases[tc++] = new TestCase( SECTION,
120 testcases[tc++] = new TestCase( SECTION,
125 testcases[tc++] = new TestCase( SECTION,
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/
popup.html 24 body > section {
37 body > section > ol {
43 body > section > ol > li {
71 <section></section>
76 var section = document.querySelector('body>section');
98 section.innerHTML = '';
99 section.appendChild(ol);
  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 23 /// MCSectionCOFF - This represents a section on Windows
28 /// Characteristics - This is the Characteristics field of a section,
32 /// Selection - This is the Selection field for the section symbol, if
33 /// it is a COMDAT section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
38 MCSectionCOFF(StringRef Section, unsigned Characteristics,
40 : MCSection(SV_COFF, K), SectionName(Section),
43 "alignment must not be set upon section creation");
48 /// ShouldOmitSectionDirective - Decides whether a '.section' directive
49 /// should be printed before the section name

Completed in 242 milliseconds

1 2 3 4 5 6 7 8 91011>>