/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/ |
switch2.js | 32 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 39 writeHeaderToLog( SECTION + " "+ TITLE); 59 testcases[count++] = new TestCase(SECTION, 'switch statement', 62 testcases[count++] = new TestCase(SECTION, 'switch statement', 65 testcases[count++] = new TestCase(SECTION, 'switch statement', 68 testcases[count++] = new TestCase(SECTION, 'switch statement', 71 testcases[count++] = new TestCase(SECTION, 'switch statement', 88 testcases[count++] = new TestCase(SECTION, 'switch statement', 91 testcases[count++] = new TestCase(SECTION, 'switch statement', 94 testcases[count++] = new TestCase(SECTION, 'switch statement' [all...] |
/external/webkit/Tools/android/webkitmerge/webkitmerge.xcodeproj/ |
project.pbxproj | 9 /* Begin PBXBuildFile section */ 11 /* End PBXBuildFile section */ 13 /* Begin PBXCopyFilesBuildPhase section */ 23 /* End PBXCopyFilesBuildPhase section */ 25 /* Begin PBXFileReference section */ 31 /* End PBXFileReference section */ 33 /* Begin PBXFrameworksBuildPhase section */ 41 /* End PBXFrameworksBuildPhase section */ 43 /* Begin PBXGroup section */ 80 /* End PBXGroup section */ [all...] |
/external/webrtc/src/system_wrappers/interface/ |
critical_section_wrapper.h | 14 // If the critical section is heavily contended it may be beneficial to use 28 // Tries to grab lock, beginning of a critical section. Will wait for the 32 // Returns a grabbed lock, end of critical section. 36 // RAII extension of the critical section. Prevents Enter/Leave missmatches and 37 // provides more compact critical section syntax.
|
/frameworks/compile/libbcc/include/bcc/ |
bcc_mccache.h | 43 /* string pool section */ 51 /* relocation table section */ 55 /* pragma list section */ 67 /* export variable name list section */ 71 /* export function name list section */
|
/packages/experimental/BugReportSender/src/com/android/bugreportsender/ |
BugReportParser.java | 16 private static final int MAX_LINES = 1000; // just in case we miss the end of the section. 21 public static String extractSystemLogs(InputStream in, String section) throws IOException { 22 final String sectionWithHeader = SECTION_HEADER + " " + section; 28 // read file contents. loop until we get to the appropriate section header. 29 // once we reach that header, accumulate all lines until we get to the next section.
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactEntryAdapter.java | 86 * Resets the section data. 88 * @param sections the section data 97 * Resets the section data and returns the position of the given entry. 99 * @param sections the section data 110 ArrayList<E> section = mSections.get(i); local 111 int sectionSize = section.size(); 113 E e = section.get(j); 150 ArrayList<E> section = mSections.get(i); local 151 int sectionSize = section.size(); 153 // The section only contains a separator and nothing else, skip i 183 ArrayList<T> section = sections.get(i); local 208 ArrayList<T> section = sections.get(i); local [all...] |
/external/skia/bench/BenchTool/BenchTool.xcodeproj/ |
project.pbxproj | 9 /* Begin PBXBuildFile section */ 17 /* End PBXBuildFile section */ 19 /* Begin PBXContainerItemProxy section */ 48 /* End PBXContainerItemProxy section */ 50 /* Begin PBXCopyFilesBuildPhase section */ 61 /* End PBXCopyFilesBuildPhase section */ 63 /* Begin PBXFileReference section */ 72 /* End PBXFileReference section */ 74 /* Begin PBXFrameworksBuildPhase section */ 85 /* End PBXFrameworksBuildPhase section */ [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.2.1.js | 24 ECMA Section: 15.9.2.1 Date constructor used as a function 36 var SECTION = "15.9.2.1"; 57 array[item++] = new TestCase( SECTION, "Date(1970,0,1,0,0,0,0)", (new Date()).toString(), Date(1970,0,1,0,0,0,0) ); 58 array[item++] = new TestCase( SECTION, "Date(1969,11,31,15,59,59,999)", (new Date()).toString(), Date(1969,11,31,15,59,59,999)) 59 array[item++] = new TestCase( SECTION, "Date(1969,11,31,16,0,0,0)", (new Date()).toString(), Date(1969,11,31,16,0,0,0)) 60 array[item++] = new TestCase( SECTION, "Date(1969,11,31,16,0,0,1)", (new Date()).toString(), Date(1969,11,31,16,0,0,1)) 63 array[item++] = new TestCase( SECTION, "Date(1999,11,15,59,59,999)", (new Date()).toString(), Date(1999,11,15,59,59,999)); 64 array[item++] = new TestCase( SECTION, "Date(1999,11,16,0,0,0,0)", (new Date()).toString(), Date(1999,11,16,0,0,0,0)); 65 array[item++] = new TestCase( SECTION, "Date(1999,11,31,23,59,59,999)", (new Date()).toString(), Date(1999,11,31,23,59,59,999) ); 66 array[item++] = new TestCase( SECTION, "Date(2000,0,1,0,0,0,0)", (new Date()).toString(), Date(2000,0,0,0,0,0,0) ) [all...] |
15.9.5.34-1.js | 24 ECMA Section: 15.9.5.34 Date.prototype.setMonth(mon [, date ] ) 40 var SECTION = "15.9.5.34-1"; 44 writeHeaderToLog( SECTION + " Date.prototype.setMonth(mon [, date ] )"); 69 SECTION, 75 SECTION, 84 SECTION, 154 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() ); 155 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() ); 157 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() ); 158 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.4.js | 24 ECMA Section: 15.1.2.4 Function properties of the global object 69 var SECTION = "15.1.2.4"; 74 writeHeaderToLog( SECTION + " "+ TITLE); 84 array[item++] = new TestCase( SECTION, "escape.length", 1, escape.length ); 85 array[item++] = new TestCase( SECTION, "escape.length = null; escape.length", 1, eval("escape.length = null; escape.length") ); 86 array[item++] = new TestCase( SECTION, "delete escape.length", false, delete escape.length ); 87 array[item++] = new TestCase( SECTION, "delete escape.length; escape.length", 1, eval("delete escape.length; escape.length") ); 88 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in escape ) { MYPROPS+= p}; MYPROPS", "", eval("var MYPROPS=''; for ( var p in escape ) { MYPROPS+= p}; MYPROPS") ); 90 array[item++] = new TestCase( SECTION, "escape()", "undefined", escape() ); 91 array[item++] = new TestCase( SECTION, "escape('')", "", escape('') ) [all...] |
15.1.2.5-1.js | 24 ECMA Section: 15.1.2.5 Function properties of the global object 67 var SECTION = "15.1.2.5-1"; 72 writeHeaderToLog( SECTION + " "+ TITLE); 82 array[item++] = new TestCase( SECTION, "unescape.length", 1, unescape.length ); 83 array[item++] = new TestCase( SECTION, "unescape.length = null; unescape.length", 1, eval("unescape.length=null; unescape.length") ); 84 array[item++] = new TestCase( SECTION, "delete unescape.length", false, delete unescape.length ); 85 array[item++] = new TestCase( SECTION, "delete unescape.length; unescape.length", 1, eval("delete unescape.length; unescape.length") ); 86 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in unescape ) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in unescape ) { MYPROPS+= p }; MYPROPS") ); 88 array[item++] = new TestCase( SECTION, "unescape()", "undefined", unescape() ); 89 array[item++] = new TestCase( SECTION, "unescape('')", "", unescape('') ) [all...] |
/external/elfutils/libasm/ |
libasm.h | 26 /* Opaque type for a section. */ 29 /* Opaque type for a section group. */ 56 /* Return handle for the named section. If it was not used before 62 /* Similar to 'asm_newscn', but make it part of section group GRP. */ 67 /* Create new subsection NR in the given section. */ 71 /* Return handle for new section group. The signature symbol can be 80 /* Add zero terminated string STR of size LEN to (sub)section ASMSCN. */ 83 /* Add 8-bit signed integer NUM to (sub)section ASMSCN. */ 86 /* Add 8-bit unsigned integer NUM to (sub)section ASMSCN. */ 89 /* Add 16-bit signed integer NUM to (sub)section ASMSCN. * [all...] |
libasmP.h | 37 ASM_E_TYPE, /* Invalid section type for operation. */ 51 /* Descriptor for a section. */ 60 /* Section type. */ 68 /* The ELF section. */ 71 /* Entry in the section header string table. */ 82 /* Current offset in the (sub)section. */ 84 /* Maximum alignment of the section so far. */ 87 /* Section content. */ 116 /* Name of the section. */ 142 /* Section header string table. * [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
15.4.1.2.js | 24 ECMA Section: 15.4.1.2 Array(len) 38 var SECTION = "15.4.1.2"; 43 writeHeaderToLog( SECTION + " "+ TITLE); 52 array[item++] = new TestCase( SECTION, "(Array()).length", 0, (Array()).length ); 53 array[item++] = new TestCase( SECTION, "(Array(0)).length", 0, (Array(0)).length ); 54 array[item++] = new TestCase( SECTION, "(Array(1)).length", 1, (Array(1)).length ); 55 array[item++] = new TestCase( SECTION, "(Array(10)).length", 10, (Array(10)).length ); 56 array[item++] = new TestCase( SECTION, "(Array('1')).length", 1, (Array('1')).length ); 57 array[item++] = new TestCase( SECTION, "(Array(1000)).length", 1000, (Array(1000)).length ); 58 array[item++] = new TestCase( SECTION, "(Array('1000')).length", 1, (Array('1000')).length ) [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
ScopeChainSidebarPane.js | 48 var section = this._sections[i]; 49 if (!section.title) 51 if (section.expanded) 52 this._expandedSections[section.title] = true; 54 delete this._expandedSections[section.title]; 96 var section = new WebInspector.ObjectPropertiesSection(WebInspector.RemoteObject.fromPayload(scope.object), title, subtitle, emptyPlaceholder, true, extraProperties, WebInspector.ScopeVariableTreeElement); 97 section.editInSelectedCallFrameWhenPaused = true; 98 section.pane = this; 101 section.expanded = true; 103 this._sections.push(section); [all...] |
/packages/apps/Contacts/src/com/android/contacts/widget/ |
IndexerListAdapter.java | 25 * A list adapter that supports section indexer and a pinned header. 37 * at the beginning, middle or end of a section. It also needs to know the 38 * section header when it is at the beginning of a section. This object 63 * Creates a section header view that will be pinned at the top of the list 117 * @return relative position of the section in the indexed partition 174 int section = -1; local 179 section = getSectionForPosition(offset); 183 if (section == -1) { 186 setPinnedSectionTitle(mHeader, (String)mIndexer.getSections()[section]); 218 int section = getSectionForPosition(position); local [all...] |
/dalvik/tools/ |
deadcode.py | 8 """Spin through the input buffer looking for section header lines. 9 When found, the name of the section is extracted. The entire contents 10 of that section is added to a result hashmap with the section name 24 # Look for a section header 27 # If there are no more, add a section from the last header to EOF 34 # map indexed by the section name 44 def FindMethods(section): 45 """Spin through the 'method code index' section and extract all 58 result = methodPattern.search(section, start [all...] |
/external/llvm/docs/ |
doxygen.intro | 3 /// @section main_intro Introduction 11 /// @section main_caveat Caveat 17 /// @section main_changelog Change Log
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.2.2-2.js | 24 ECMA Section: 10.2.2 Eval Code 47 var SECTION = "10.2.2-2"; 52 writeHeaderToLog( SECTION + " "+ TITLE); 68 testcases[tc++] = new TestCase( SECTION, "eval( 'this == THIS' )", true, eval("this == THIS") ); 69 testcases[tc++] = new TestCase( SECTION, "this in a with() block", GLOBAL, this+"" ); 70 testcases[tc++] = new TestCase( SECTION, "new MyObject('hello').value", "hello", value ); 71 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').value)", "hello", eval("value") ); 72 testcases[tc++] = new TestCase( SECTION, "new MyObject('hello').getClass()", "[object Object]", getClass() ); 73 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').getClass())", "[object Object]", eval("getClass()") ); 74 testcases[tc++] = new TestCase( SECTION, "eval(new MyObject('hello').toString())", "hello", eval("toString()") ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.2.js | 24 ECMA Section: 15.5.4.2 String.prototype.toString 31 var SECTION = "15.5.4.2"; 36 writeHeaderToLog( SECTION + " "+ TITLE); 45 array[item++] = new TestCase( SECTION, "String.prototype.toString.__proto__", Function.prototype, String.prototype.toString.__proto__ ); 46 array[item++] = new TestCase( SECTION, 51 array[item++] = new TestCase( SECTION, "String.prototype.toString()", "", String.prototype.toString() ); 52 array[item++] = new TestCase( SECTION, "String.prototype.toString.length", 0, String.prototype.toString.length ); 55 array[item++] = new TestCase( SECTION, 59 array[item++] = new TestCase( SECTION, 63 array[item++] = new TestCase( SECTION, [all...] |
15.5.4.6-2.js | 24 ECMA Section: 15.5.4.6 String.prototype.indexOf( searchString, pos) 63 ECMA-262 Ed.3 Section 15.5.4.7 67 var SECTION = "15.5.4.6-2"; 73 writeHeaderToLog( SECTION + " "+ TITLE); 101 array[item++] = new TestCase( SECTION, "function f() { return this; }; function g() { var h = f; return h(); }; g().toString()", GLOBAL, g().toString() ); 104 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.length", 1, String.prototype.indexOf.length ); 105 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.length = null; String.prototype.indexOf.length", 1, eval("String.prototype.indexOf.length = null; String.prototype.indexOf.length") ); 106 array[item++] = new TestCase( SECTION, "delete String.prototype.indexOf.length", false, delete String.prototype.indexOf.length ); 107 array[item++] = new TestCase( SECTION, "delete String.prototype.indexOf.length; String.prototype.indexOf.length", 1, eval("delete String.prototype.indexOf.length; String.prototype.indexOf.length") ); 109 array[item++] = new TestCase( SECTION, "var s = new String(); s.indexOf()", -1, eval("var s = new String(); s.indexOf()") ) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
digit.js | 30 var SECTION = 'As described in Netscape doc "Whats new in JavaScript 1.2"'; 36 writeHeaderToLog( SECTION + " "+ TITLE); 46 testcases[count++] = new TestCase ( SECTION, 51 testcases[count++] = new TestCase ( SECTION, 56 testcases[count++] = new TestCase ( SECTION, 61 testcases[count++] = new TestCase ( SECTION, 68 testcases[count++] = new TestCase ( SECTION, 75 testcases[count++] = new TestCase ( SECTION, 85 testcases[count++] = new TestCase ( SECTION, 88 testcases[count++] = new TestCase ( SECTION, [all...] |
global.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.global", 46 testcases[count++] = new TestCase ( SECTION, "/xyz/.global", 50 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(/\\d+/g)", 54 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(/(\\d+)/g)", 58 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(/\\d+/)", 62 testcases[count++] = new TestCase ( SECTION, "(new RegExp('[a-z]','g')).global", 66 testcases[count++] = new TestCase ( SECTION, "(new RegExp('[a-z]','i')).global", 70 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(new RegExp('\\\\d+','g'))" [all...] |
vertical_bar.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, "'abc'.match(new RegExp('xyz|abc'))", 46 testcases[count++] = new TestCase ( SECTION, "'this is a test'.match(new RegExp('quiz|exam|test|homework'))", 50 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('xyz|...'))", 54 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('(.)..|abc'))", 58 testcases[count++] = new TestCase ( SECTION, "'color: grey'.match(new RegExp('.+: gr(a|e)y'))", 62 testcases[count++] = new TestCase ( SECTION, "'no match'.match(new RegExp('red|white|blue'))", 66 testcases[count++] = new TestCase ( SECTION, "'Hi Bob'.match(new RegExp('(Rob)|(Bob)|(Robert)|(Bobby)'))", 70 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('abc|bcd|cde|def'))" [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/ |
new-001.js | 24 Section: 32 var SECTION = "new-001"; 38 writeHeaderToLog( SECTION + " "+ TITLE); 53 SECTION, 59 SECTION, 65 SECTION, 71 SECTION, 77 SECTION, 83 SECTION, 89 SECTION, [all...] |