/external/llvm/test/MC/ELF/ |
many-section.s | 8 .section saaaa 9 .section saaab 10 .section saaba 11 .section saabb 12 .section saaca 13 .section saacb 14 .section saada 15 .section saadb 16 .section saaea 17 .section saae [all...] |
section-quoting.s | 4 .section bar-"foo" 5 .section "foo" 6 .section "foo bar" 8 // CHECK: .section "bar-\"foo\"" 9 // CHECK: .section foo 10 // CHECK: .section "foo bar"
|
/bionic/libc/arch-x86/bionic/ |
crtend_so.S | 1 .section .init_array, "aw" 4 .section .fini_array, "aw" 7 .section .eh_frame,"a",@progbits
|
crtend.S | 1 .section .preinit_array, "aw" 4 .section .init_array, "aw" 7 .section .fini_array, "aw" 10 .section .eh_frame,"a",@progbits
|
/external/clang/test/Sema/ |
attr-section.c | 3 int x __attribute__((section( 4 42))); // expected-error {{argument to section attribute was not a string literal}} 8 int y __attribute__((section( 9 "sadf"))); // expected-error {{mach-o section specifier requires a segment and section separated by a comma}} 13 __attribute__((section("NEAR,x"))) int n1; // expected-error {{'section' attribute is not valid on local variables}} 14 __attribute__((section("NEAR,x"))) static int n2; // ok.
|
/dalvik/dx/src/com/android/dx/dex/ |
TableOfContents.java | 34 public final Section header = new Section(0x0000); 35 public final Section stringIds = new Section(0x0001); 36 public final Section typeIds = new Section(0x0002); 37 public final Section protoIds = new Section(0x0003); 38 public final Section fieldIds = new Section(0x0004) 123 Section section = getSection(type); local 147 Section section = sections[i]; local [all...] |
/external/elfutils/libebl/ |
eblsectionname.c | 1 /* Return section name. 24 ebl_section_name (ebl, section, xsection, buf, len, scnnames, shnum) 26 int section; 33 const char *res = ebl != NULL ? ebl->section_name (section, xsection, 38 if (section == SHN_UNDEF) 40 else if (section == SHN_ABS) 42 else if (section == SHN_COMMON) 44 else if (section == SHN_BEFORE) 46 else if (section == SHN_AFTER) 48 else if ((section < SHN_LORESERVE || section == SHN_XINDEX [all...] |
eblsectiontypename.c | 1 /* Return section type name. 24 ebl_section_type_name (ebl, section, buf, len) 26 int section; 30 const char *res = ebl->section_type_name (section, buf, len); 57 if ((size_t) section < sizeof (knowntypes) / sizeof (knowntypes[0]) 58 && knowntypes[section] != NULL) 59 res = knowntypes[section]; 61 else if (section >= SHT_LOSUNW && section <= SHT_HISUNW) 74 res = sunwtypes[section - SHT_LOSUNW] [all...] |
/external/llvm/test/CodeGen/X86/ |
attribute-sections.ll | 4 @G0 = global i32 ()* @foo, section ".init_array" 6 ; LINUX: .section .init_array,"aw" 9 @G1 = global i32 ()* @foo, section ".fini_array" 11 ; LINUX: .section .fini_array,"aw" 14 @G2 = global i32 ()* @foo, section ".preinit_array" 16 ; LINUX: .section .preinit_array,"aw"
|
/external/webkit/Source/WebKit/gtk/docs/ |
webkitgtk-sections.txt | 0 <SECTION> 21 </SECTION> 23 <SECTION> 56 </SECTION> 58 <SECTION> 83 </SECTION> 85 <SECTION> 126 </SECTION> 128 <SECTION> 164 </SECTION> [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.3-1.js | 24 ECMA Section: 15.1.2.3 Function properties of the global object: 61 var SECTION = "15.1.2.3-1"; 67 writeHeaderToLog( SECTION + " "+ TITLE); 78 array[item++] = new TestCase( SECTION, "parseFloat.length", 1, parseFloat.length ); 80 array[item++] = new TestCase( SECTION, "parseFloat.length = null; parseFloat.length", 1, eval("parseFloat.length = null; parseFloat.length") ); 81 array[item++] = new TestCase( SECTION, "delete parseFloat.length", false, delete parseFloat.length ); 82 array[item++] = new TestCase( SECTION, "delete parseFloat.length; parseFloat.length", 1, eval("delete parseFloat.length; parseFloat.length") ); 83 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in parseFloat ) { MYPROPS += p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in parseFloat ) { MYPROPS += p }; MYPROPS") ); 85 array[item++] = new TestCase( SECTION, "parseFloat()", Number.NaN, parseFloat() ); 86 array[item++] = new TestCase( SECTION, "parseFloat('')", Number.NaN, parseFloat('') ) [all...] |
15.1.2.7.js | 24 ECMA Section: 15.1.2.7 isFinite(number) 34 var SECTION = "15.1.2.7"; 41 writeHeaderToLog( SECTION + " "+ TITLE); 51 array[item++] = new TestCase( SECTION, "isFinite.length", 1, isFinite.length ); 52 array[item++] = new TestCase( SECTION, "isFinite.length = null; isFinite.length", 1, eval("isFinite.length=null; isFinite.length") ); 53 array[item++] = new TestCase( SECTION, "delete isFinite.length", false, delete isFinite.length ); 54 array[item++] = new TestCase( SECTION, "delete isFinite.length; isFinite.length", 1, eval("delete isFinite.length; isFinite.length") ); 55 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( p in isFinite ) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( p in isFinite ) { MYPROPS += p }; MYPROPS") ); 57 array[item++] = new TestCase( SECTION, "isFinite()", false, isFinite() ); 58 array[item++] = new TestCase( SECTION, "isFinite( null )", true, isFinite(null) ) [all...] |
/external/dropbear/libtommath/ |
tommath.out | 2 \BOOKMARK [1][-]{section.1.1}{Multiple Precision Arithmetic}{chapter.1} 3 \BOOKMARK [2][-]{subsection.1.1.1}{What is Multiple Precision Arithmetic?}{section.1.1} 4 \BOOKMARK [2][-]{subsection.1.1.2}{The Need for Multiple Precision Arithmetic}{section.1.1} 5 \BOOKMARK [2][-]{subsection.1.1.3}{Benefits of Multiple Precision Arithmetic}{section.1.1} 6 \BOOKMARK [1][-]{section.1.2}{Purpose of This Text}{chapter.1} 7 \BOOKMARK [1][-]{section.1.3}{Discussion and Notation}{chapter.1} 8 \BOOKMARK [2][-]{subsection.1.3.1}{Notation}{section.1.3} 9 \BOOKMARK [2][-]{subsection.1.3.2}{Precision Notation}{section.1.3} 10 \BOOKMARK [2][-]{subsection.1.3.3}{Algorithm Inputs and Outputs}{section.1.3} 11 \BOOKMARK [2][-]{subsection.1.3.4}{Mathematical Expressions}{section.1.3 [all...] |
/external/llvm/test/MC/AsmParser/ |
directive_darwin_section.s | 3 # CHECK: .section __DWARF,__debug_frame,regular,debug 4 .section __DWARF,__debug_frame,regular,debug
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.4.9.js | 24 ECMA Section: 11.4.9 Logical NOT Operator (!) 33 var SECTION = "11.4.9"; 38 writeHeaderToLog( SECTION + " "+ TITLE); 44 testcases[tc++] = new TestCase( SECTION, "!(null)", true, !(null) ); 45 testcases[tc++] = new TestCase( SECTION, "!(var x)", true, !(eval("var x")) ); 46 testcases[tc++] = new TestCase( SECTION, "!(void 0)", true, !(void 0) ); 48 testcases[tc++] = new TestCase( SECTION, "!(false)", true, !(false) ); 49 testcases[tc++] = new TestCase( SECTION, "!(true)", false, !(true) ); 50 testcases[tc++] = new TestCase( SECTION, "!()", true, !(eval()) ); 51 testcases[tc++] = new TestCase( SECTION, "!(0)", true, !(0) ) [all...] |
11.4.6.js | 24 ECMA Section: 11.4.6 Unary + Operator 30 var SECTION = "11.4.6"; 36 writeHeaderToLog( SECTION + " Unary + operator"); 55 array[item++] = new TestCase( SECTION, "+('')", 0, +("") ); 56 array[item++] = new TestCase( SECTION, "+(' ')", 0, +(" ") ); 57 array[item++] = new TestCase( SECTION, "+(\\t)", 0, +("\t") ); 58 array[item++] = new TestCase( SECTION, "+(\\n)", 0, +("\n") ); 59 array[item++] = new TestCase( SECTION, "+(\\r)", 0, +("\r") ); 60 array[item++] = new TestCase( SECTION, "+(\\f)", 0, +("\f") ); 62 array[item++] = new TestCase( SECTION, "+(String.fromCharCode(0x0009)", 0, +(String.fromCharCode(0x0009)) ) [all...] |
/external/bluetooth/glib/docs/reference/gio/ |
gio-sections.txt | 0 <SECTION> 23 </SECTION> 25 <SECTION> 135 </SECTION> 137 <SECTION> 162 </SECTION> 164 <SECTION> 308 </SECTION> 310 <SECTION> 326 </SECTION> [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.3.1-1.js | 24 ECMA Section: 9.3 Type Conversion: ToNumber 42 var SECTION = "9.3.1-1"; 48 writeHeaderToLog( SECTION + " "+ TITLE); 79 array[item++] = new TestCase( SECTION, "Number('')", 0, Number("") ); 80 array[item++] = new TestCase( SECTION, "Number(' ')", 0, Number(" ") ); 81 array[item++] = new TestCase( SECTION, "Number(\\t)", 0, Number("\t") ); 82 array[item++] = new TestCase( SECTION, "Number(\\n)", 0, Number("\n") ); 83 array[item++] = new TestCase( SECTION, "Number(\\r)", 0, Number("\r") ); 84 array[item++] = new TestCase( SECTION, "Number(\\f)", 0, Number("\f") ); 86 array[item++] = new TestCase( SECTION, "Number(String.fromCharCode(0x0009)", 0, Number(String.fromCharCode(0x0009)) ) [all...] |
9.3.1-3.js | 24 ECMA Section: 9.3 Type Conversion: ToNumber 44 var SECTION = "9.3.1-3"; 51 writeHeaderToLog( SECTION + " "+ TITLE); 60 SECTION, 73 testcases[tc++] = new TestCase( SECTION, 78 testcases[tc++] = new TestCase( SECTION, 83 testcases[tc++] = new TestCase( SECTION, 91 testcases[tc++] = new TestCase( SECTION, 96 testcases[tc++] = new TestCase( SECTION, 101 testcases[tc++] = new TestCase( SECTION, [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.7.3.js | 24 ECMA Section: 7.7.3 Numeric Literals 36 var SECTION = "7.7.3"; 41 writeHeaderToLog( SECTION + " "+ TITLE); 51 array[item++] = new TestCase( SECTION, "0", 0, 0 ); 52 array[item++] = new TestCase( SECTION, "1", 1, 1 ); 53 array[item++] = new TestCase( SECTION, "2", 2, 2 ); 54 array[item++] = new TestCase( SECTION, "3", 3, 3 ); 55 array[item++] = new TestCase( SECTION, "4", 4, 4 ); 56 array[item++] = new TestCase( SECTION, "5", 5, 5 ); 57 array[item++] = new TestCase( SECTION, "6", 6, 6 ) [all...] |
7.7.3-1.js | 24 ECMA Section: 7.7.3 Numeric Literals 39 var SECTION = "7.7.3-1"; 45 writeHeaderToLog( SECTION + " "+ TITLE); 50 testcases[tc++] = new TestCase( SECTION, 55 testcases[tc++] = new TestCase( SECTION, 60 testcases[tc++] = new TestCase( SECTION, 65 testcases[tc++] = new TestCase( SECTION, 70 testcases[tc++] = new TestCase( SECTION, 75 testcases[tc++] = new TestCase( SECTION, 80 testcases[tc++] = new TestCase( SECTION, [all...] |
7.7.4.js | 24 ECMA Section: 7.7.4 String Literals 35 var SECTION = "7.7.4"; 40 writeHeaderToLog( SECTION + " "+ TITLE); 51 array[item++] = new TestCase( SECTION, "\"\"", "", "" ); 52 array[item++] = new TestCase( SECTION, "\'\'", "", '' ); 55 array[item++] = new TestCase( SECTION, "\\\"", String.fromCharCode(0x0022), "\"" ); 56 array[item++] = new TestCase( SECTION, "\\\'", String.fromCharCode(0x0027), "\'" ); 57 array[item++] = new TestCase( SECTION, "\\", String.fromCharCode(0x005C), "\\" ); 58 array[item++] = new TestCase( SECTION, "\\b", String.fromCharCode(0x0008), "\b" ); 59 array[item++] = new TestCase( SECTION, "\\f", String.fromCharCode(0x000C), "\f" ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.3.2-1.js | 24 ECMA Section: 15.5.3.2 String.fromCharCode( char0, char1, ... ) 41 var SECTION = "15.5.3.2-1"; 46 writeHeaderToLog( SECTION + " "+ TITLE); 55 array[item++] = new TestCase( SECTION, "typeof String.fromCharCode", "function", typeof String.fromCharCode ); 56 array[item++] = new TestCase( SECTION, "typeof String.prototype.fromCharCode", "undefined", typeof String.prototype.fromCharCode ); 57 array[item++] = new TestCase( SECTION, "var x = new String(); typeof x.fromCharCode", "undefined", eval("var x = new String(); typeof x.fromCharCode") ); 58 array[item++] = new TestCase( SECTION, "String.fromCharCode.length", 1, String.fromCharCode.length ); 60 array[item++] = new TestCase( SECTION, "String.fromCharCode()", "", String.fromCharCode() ); 61 array[item++] = new TestCase( SECTION, "String.fromCharCode(0x0020)", " ", String.fromCharCode(0x0020) ); 62 array[item++] = new TestCase( SECTION, "String.fromCharCode(0x0021)", "!", String.fromCharCode(0x0021) ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/ |
instanceof-001.js | 3 ECMA Section: 9 var SECTION = ""; 14 writeHeaderToLog( SECTION + " "+ TITLE); 21 testcases[tc++] = new TestCase( SECTION, 26 testcases[tc++] = new TestCase( SECTION,
|
/external/oprofile/opjitconv/ |
create_bfd.c | 34 asection * section = NULL; local 47 if (e->section) 48 section = e->section; 56 s->section = section; 58 s->value = e->vma - section->vma; 73 * create a new section. 78 asection * section; local 81 section = bfd_make_section(abfd, section_name) 109 asection * section; local 220 asection * section; local [all...] |