Searched refs:trimLeft (Results 1 – 16 of 16) sorted by relevance
/external/chromium_org/v8/test/webkit/ |
D | string-trim-expected.txt | 24 This test checks String.trim(), String.trimLeft() and String.trimRight() methods. 30 PASS whitespace[0].s.trimLeft() is '' 33 PASS whitespace[1].s.trimLeft() is '' 36 PASS whitespace[2].s.trimLeft() is '' 39 PASS whitespace[3].s.trimLeft() is '' 42 PASS whitespace[4].s.trimLeft() is '' 45 PASS whitespace[5].s.trimLeft() is '' 48 PASS whitespace[6].s.trimLeft() is '' 51 PASS whitespace[7].s.trimLeft() is '' 54 PASS whitespace[8].s.trimLeft() is '' [all …]
|
D | string-trim.js | 28 var trimLeft = String.prototype.trimLeft; variable
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/ |
D | speech_rule.js | 135 var rest = input.slice(3).trimLeft(); 165 rest = rest.slice(bracket).trimLeft();
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
D | spannable_test.js | 424 var trimmed = spannable.trimLeft(); 433 var trimmed2 = spannable2.trimLeft(); 452 trimmed3 = trimmed3.trimLeft();
|
D | spannable.js | 223 cvox.Spannable.prototype.trimLeft = function() { method in cvox.Spannable
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
D | omnibox_custom_bindings.js | 20 text = text.trimLeft();
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
D | directory_model.js | 896 var query = (opt_query || '').trimLeft(); 970 if (!(query || '').trimLeft()) {
|
D | file_manager.js | 3587 query = query.trimLeft();
|
/external/chromium_org/v8/test/webkit/fast/js/ |
D | Object-getOwnPropertyNames-expected.txt | 73 …'toLocaleUpperCase', 'toLowerCase', 'toString', 'toUpperCase', 'trim', 'trimLeft', 'trimRight', 'v…
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
D | HeapSnapshotGridNodes.js | 670 var fullURL = fullName.substring(startPos + 1, endPos).trimLeft();
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
D | jquery-1.6.4.js | 47 trimLeft = /^\s+/, 682 text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); 912 trimLeft = /^[\s\xA0]+/;
|
/external/chromium_org/chrome/third_party/chromevox/ |
D | chromeVoxChromePageScript.js | 58 goog.string.trimLeft=function(a){return a.replace(/^[\s\xa0]+/,"")};goog.string.trimRight=function(… 958 …};b.type=cvox.SpeechRule.Type.fromString(a.substring(0,3));a=a.slice(3).trimLeft();if(!a)throw new… 959 …tent=a.trim();a="";break}b.content=a.substring(0,c).trim();a=a.slice(c).trimLeft()}b=new cvox.Spee… 994 …push({value:f.value,start:g,end:h})}}return d};cvox.Spannable.prototype.trimLeft=function(){return… method in cvox
|
D | chromeVoxChromeOptionsScript.js | 851 …push({value:f.value,start:g,end:h})}}return d};cvox.Spannable.prototype.trimLeft=function(){return… 1189 …};b.type=cvox.SpeechRule.Type.fromString(a.substring(0,3));a=a.slice(3).trimLeft();if(!a)throw new… 1190 …tent=a.trim();a="";break}b.content=a.substring(0,c).trim();a=a.slice(c).trimLeft()}b=new cvox.Spee…
|
D | chromeVoxChromeBackgroundScript.js | 798 …push({value:f.value,start:g,end:h})}}return d};cvox.Spannable.prototype.trimLeft=function(){return… 1056 …};b.type=cvox.SpeechRule.Type.fromString(a.substring(0,3));a=a.slice(3).trimLeft();if(!a)throw new… 1057 …tent=a.trim();a="";break}b.content=a.substring(0,c).trim();a=a.slice(c).trimLeft()}b=new cvox.Spee…
|
/external/chromium_org/v8/src/ |
D | runtime.cc | 6728 CONVERT_BOOLEAN_ARG_CHECKED(trimLeft, 1); in RUNTIME_FUNCTION() 6736 if (trimLeft) { in RUNTIME_FUNCTION()
|
/external/chromium_org/v8/ |
D | ChangeLog | 6311 Added trim, trimLeft and trimRight methods to String
|