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

1 2 3 4 5 6 78 91011>>

  /external/llvm/test/Feature/
global_section.ll 5 @X = global i32 4, section "foo", align 16 ; <i32*> [#uses=0]
7 define void @test() section "bar" {
  /external/llvm/test/MC/ELF/
bad-section.s 5 // CHECK: .section "foo"-bar
9 .section "foo"-bar
relax-crash.s 6 .section .debug_line,"",@progbits
9 .section foo
  /external/llvm/lib/MC/
MCSectionMachO.cpp 1 //===- lib/MC/MCSectionMachO.cpp - MachO Code Section Representation ------===//
16 /// SectionTypeDescriptors - These are strings that describe the various section
18 /// section type list.
49 /// SectionAttrDescriptors - This is an array of descriptors for section
70 { 0, "none", 0 }, // used if section has no attributes but has a stub size
75 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section,
78 assert(Segment.size() <= 16 && Section.size() <= 16 &&
79 "Segment or section string too long");
86 if (i < Section.size())
87 SectionName[i] = Section[i]
    [all...]
  /external/llvm/test/CodeGen/ARM/
ctors_dtors.ll 5 ; DARWIN: .section __DATA,__mod_init_func,mod_init_funcs
6 ; DARWIN: .section __DATA,__mod_term_func,mod_term_funcs
8 ; ELF: .section .ctors,"aw",%progbits
9 ; ELF: .section .dtors,"aw",%progbits
11 ; GNUEABI: .section .init_array,"aw",%init_array
12 ; GNUEABI: .section .fini_array,"aw",%fini_array
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
dowhile-002.js 3 * ECMA Section:
13 var SECTION = "dowhile-002";
18 writeHeaderToLog( SECTION + " "+ TITLE);
51 SECTION,
57 SECTION,
64 SECTION,
dowhile-004.js 3 * ECMA Section:
12 var SECTION = "dowhile-004";
17 writeHeaderToLog( SECTION + " "+ TITLE);
47 SECTION,
53 SECTION,
60 SECTION,
dowhile-005.js 3 * ECMA Section:
15 var SECTION = "dowhile-005";
21 writeHeaderToLog( SECTION + " "+ TITLE);
54 SECTION,
60 SECTION,
66 SECTION,
forin-001.js 3 * ECMA Section:
12 var SECTION = "forin-001";
19 writeHeaderToLog( SECTION + " "+ TITLE);
51 SECTION,
59 SECTION,
81 SECTION,
89 SECTION,
112 SECTION,
118 SECTION,
124 SECTION,
    [all...]
try-003.js 3 * ECMA Section:
11 var SECTION = "try-003";
17 writeHeaderToLog( SECTION + " "+ TITLE);
63 SECTION,
68 SECTION,
73 SECTION,
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/NPN_Invoke.xcodeproj/
project.pbxproj 9 /* Begin PBXBuildFile section */
15 /* End PBXBuildFile section */
17 /* Begin PBXFileReference section */
25 /* End PBXFileReference section */
27 /* Begin PBXFrameworksBuildPhase section */
38 /* End PBXFrameworksBuildPhase section */
40 /* Begin PBXGroup section */
87 /* End PBXGroup section */
89 /* Begin PBXNativeTarget section */
109 /* End PBXNativeTarget section */
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_common.h 34 /* SSID header size is SSID section type above + SSID length */
39 /* Scan interval size is scan interval section type + scan interval length above*/
44 /* Repeat section size is Repeat section type + Repeat value length above*/
49 /* Max Repeat section size is Max Repeat section type + Max Repeat value length above*/
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.5-3.js 24 ECMA Section: 15.5.4.5 String.prototype.charCodeAt(pos)
52 var SECTION = "15.5.4.5-3";
57 writeHeaderToLog( SECTION + " "+ TITLE);
76 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(0)", 0x0068, foo.charCodeAt(0) );
77 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(1)", 0x0065, foo.charCodeAt(1) );
78 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(2)", 0x006c, foo.charCodeAt(2) );
79 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(3)", 0x006c, foo.charCodeAt(3) );
80 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(4)", 0x006f, foo.charCodeAt(4) );
81 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(-1)", Number.NaN, foo.charCodeAt(-1) );
82 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(5)", Number.NaN, foo.charCodeAt(5) )
    [all...]
15.5.4.3-1.js 24 ECMA Section: 15.5.4.3 String.prototype.valueOf()
37 var SECTION = "15.5.4.3-1";
42 writeHeaderToLog( SECTION + " "+ TITLE);
51 array[item++] = new TestCase( SECTION, "String.prototype.valueOf.length", 0, String.prototype.valueOf.length );
53 array[item++] = new TestCase( SECTION, "String.prototype.valueOf()", "", String.prototype.valueOf() );
54 array[item++] = new TestCase( SECTION, "(new String()).valueOf()", "", (new String()).valueOf() );
55 array[item++] = new TestCase( SECTION, "(new String(\"\")).valueOf()", "", (new String("")).valueOf() );
56 array[item++] = new TestCase( SECTION, "(new String( String() )).valueOf()","", (new String(String())).valueOf() );
57 array[item++] = new TestCase( SECTION, "(new String( \"h e l l o\" )).valueOf()", "h e l l o", (new String("h e l l o")).valueOf() );
58 array[item++] = new TestCase( SECTION, "(new String( 0 )).valueOf()", "0", (new String(0)).valueOf() )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.8.1.js 24 ECMA Section: 9.8.1 ToString Applied to the Number Type
82 var SECTION = "9.8.1";
87 writeHeaderToLog( SECTION + " ToString applied to the Number type");
107 array[item++] = new TestCase( SECTION, "Number.NaN", "NaN", Number.NaN + "" );
108 array[item++] = new TestCase( SECTION, "0", "0", 0 + "" );
109 array[item++] = new TestCase( SECTION, "-0", "0", -0 + "" );
110 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY", "Infinity", Number.POSITIVE_INFINITY + "" );
111 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY", "-Infinity", Number.NEGATIVE_INFINITY + "" );
112 array[item++] = new TestCase( SECTION, "-1", "-1", -1 + "" );
116 array[item++] = new TestCase( SECTION, "1", "1", 1 + "" )
    [all...]
9.3.1-2.js 24 ECMA Section: 9.3 Type Conversion: ToNumber
42 var SECTION = "9.3.1-2";
47 writeHeaderToLog( SECTION + " "+ TITLE);
72 array[item++] = new TestCase( SECTION, "Number(00)", 0, Number("00"));
73 array[item++] = new TestCase( SECTION, "Number(01)", 1, Number("01"));
74 array[item++] = new TestCase( SECTION, "Number(02)", 2, Number("02"));
75 array[item++] = new TestCase( SECTION, "Number(03)", 3, Number("03"));
76 array[item++] = new TestCase( SECTION, "Number(04)", 4, Number("04"));
77 array[item++] = new TestCase( SECTION, "Number(05)", 5, Number("05"));
78 array[item++] = new TestCase( SECTION, "Number(06)", 6, Number("06"))
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.1.js 24 ECMA Section: 11.4.1 the Delete Operator
33 var SECTION = "11.4.1";
38 writeHeaderToLog( SECTION + " "+ TITLE);
48 // array[item++] = new TestCase( SECTION, "x=[9,8,7];delete(x[2]);x.length", 2, eval("x=[9,8,7];delete(x[2]);x.length") );
49 // array[item++] = new TestCase( SECTION, "x=[9,8,7];delete(x[2]);x.toString()", "9,8", eval("x=[9,8,7];delete(x[2]);x.toString()") );
50 array[item++] = new TestCase( SECTION, "x=new Date();delete x;typeof(x)", "undefined", eval("x=new Date();delete x;typeof(x)") );
52 // array[item++] = new TestCase( SECTION, "delete(x=new Date())", true, delete(x=new Date()) );
53 // array[item++] = new TestCase( SECTION, "delete('string primitive')", true, delete("string primitive") );
54 // array[item++] = new TestCase( SECTION, "delete(new String( 'string object' ) )", true, delete(new String("string object")) );
55 // array[item++] = new TestCase( SECTION, "delete(new Number(12345) )", true, delete(new Number(12345)) )
    [all...]
11.13.2-4.js 24 ECMA Section: 11.13.2 Compound Assignment:+=
46 var SECTION = "11.13.2-4";
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") );
70 array[item++] = new TestCase( SECTION, "VAR1 = Infinity; VAR2= Infinity; VAR1 += VAR2; VAR1", Number.POSITIVE_INFINITY, eval (…)
    [all...]
11.13.2-5.js 24 ECMA Section: 11.13.2 Compound Assignment: -=
46 var SECTION = "11.13.2-5";
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") );
70 array[item++] = new TestCase( SECTION, "VAR1 = Infinity; VAR2= Infinity; VAR1 -= VAR2; VAR1", Number.NaN, eval("VA (…)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_6.js 24 Section:
41 var SECTION = "proto_6";
46 writeHeaderToLog( SECTION + " "+ TITLE);
107 testcases[tc++] = new TestCase( SECTION,
112 testcases[tc++] = new TestCase( SECTION,
117 testcases[tc++] = new TestCase( SECTION,
122 testcases[tc++] = new TestCase( SECTION,
127 testcases[tc++] = new TestCase( SECTION,
132 testcases[tc++] = new TestCase( SECTION,
140 testcases[tc++] = new TestCase( SECTION,
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.2-1.js 24 ECMA Section: 15.1.2.2 Function properties of the global object
91 var SECTION = "15.1.2.2-1";
97 writeHeaderToLog( SECTION + " "+ TITLE);
110 array[item++] = new TestCase( SECTION, "parseInt.length", 2, parseInt.length );
111 array[item++] = new TestCase( SECTION, "parseInt.length = 0; parseInt.length", 2, eval("parseInt.length = 0; parseInt.length") );
112 array[item++] = new TestCase( SECTION, "var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS", "", eval("var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS") );
113 array[item++] = new TestCase( SECTION, "delete parseInt.length", false, delete parseInt.length );
114 array[item++] = new TestCase( SECTION, "delete parseInt.length; parseInt.length", 2, eval("delete parseInt.length; parseInt.length") );
115 array[item++] = new TestCase( SECTION, "parseInt.length = null; parseInt.length", 2, eval("parseInt.length = null; parseInt.length") );
117 array[item++] = new TestCase( SECTION, "parseInt()", NaN, parseInt() )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-2.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 );
53 array[item++] = new TestCase( SECTION, "Date(1999,11,15,59,59)", (new Date()).toString(), Date(1999,11,15,59,59));
54 array[item++] = new TestCase( SECTION, "Date(1999,11,16,0,0,0)", (new Date()).toString(), Date(1999,11,16,0,0,0));
55 array[item++] = new TestCase( SECTION, "Date(1999,11,31,23,59,59)", (new Date()).toString(), Date(1999,11,31,23,59,59) );
56 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,0)", (new Date()).toString(), Date(2000,0,0,0,0,0) );
57 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,1)", (new Date()).toString(), Date(2000,0,0,0,0,1) );
62 array[item++] = new TestCase( SECTION, "Date(1899,11,31,23,59,59)", (new Date()).toString(), Date(1899,11,31,23,59,59));
63 array[item++] = new TestCase( SECTION, "Date(1900,0,1,0,0,0)", (new Date()).toString(), Date(1900,0,1,0,0,0) )
    [all...]
  /external/clang/test/CodeGen/
attributes.c 7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT"
9 struct s0 t13 __attribute__((section("SECT"))) = { 0 };
11 // CHECK: @t14.x = internal global i32 0, section "SECT"
13 static int x __attribute__((section("SECT"))) = 0;
26 // CHECK: @t12 = global i32 0, section "SECT"
27 int t12 __attribute__((section("SECT")));
59 // CHECK: define void @t10() nounwind section "SECT" {
60 void t10(void) __attribute__((section("SECT")));
62 // CHECK: define void @t11() nounwind section "SECT" {
63 void __attribute__((section("SECT"))) t11(void) {
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
source.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, "/xyz/g.source",
46 testcases[count++] = new TestCase ( SECTION, "/xyz/.source",
50 testcases[count++] = new TestCase ( SECTION, "/abc\\\\def/.source",
54 testcases[count++] = new TestCase ( SECTION, "/abc[\\b]def/.source",
58 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz')).source",
62 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz','g')).source",
66 testcases[count++] = new TestCase ( SECTION, "(new RegExp('abc\\\\\\\\def')).source",
70 testcases[count++] = new TestCase ( SECTION, "(new RegExp('abc[\\\\b]def')).source"
    [all...]
string_search.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, "'abcdefg'.search(/d/)",
46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.search(/x/)",
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg123456hijklmn'.search(/\d+/)",
54 testcases[count++] = new TestCase ( SECTION, "'abcdefg123456hijklmn'.search(new RegExp())",
58 testcases[count++] = new TestCase ( SECTION, "'abc'.search(new RegExp('$'))",
62 testcases[count++] = new TestCase ( SECTION, "'abc'.search(new RegExp('^'))",
66 testcases[count++] = new TestCase ( SECTION, "'abc1'.search(/.\d/)",
70 testcases[count++] = new TestCase ( SECTION, "'abc1'.search(/\d{2}/)"
    [all...]

Completed in 415 milliseconds

1 2 3 4 5 6 78 91011>>