/external/chromium_org/third_party/webrtc/modules/video_render/ios/ |
video_render_ios_channel.mm | 24 VideoRenderIosChannel::~VideoRenderIosChannel() { delete current_frame_; }
|
/external/chromium_org/v8/test/mjsunit/es6/ |
unscopables.js | 14 delete object[Symbol.unscopables]; 15 delete object.x; 16 delete object.x_; 17 delete object.y; 18 delete object.z; 57 delete Array.prototype[Symbol.unscopables]; 308 if (i === 500) delete object[Symbol.unscopables]; 336 if (i === 500) delete object[Symbol.unscopables].x; 465 delete proto[Symbol.unscopables]; 466 delete object[Symbol.unscopables] 54 delete Array.prototype[Symbol.unscopables]; class [all...] |
collections.js | 42 assertDoesNotThrow(function () { m.delete(new Object) }); 53 assertDoesNotThrow(function () { m.delete(new Object) }); 78 assertTrue(set.delete(key)); 80 assertFalse(set.delete(key)); 147 assertTrue(m.delete(key)); 148 assertFalse(m.delete(key)); 149 assertFalse(m.delete(new Object)); 248 assertTrue(Set.prototype.delete instanceof Function) 258 assertTrue(Map.prototype.delete instanceof Function) 268 assertTrue(WeakMap.prototype.delete instanceof Function 1173 delete Number.prototype[Symbol.iterator]; class [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1548.js | 35 // Try to delete the caller property (to make sure that we can't get to the 37 delete Array.prototype.map.caller; 45 // Try to delete the arguments property (to make sure that we can't get to the 47 delete Array.prototype.map.arguments; 33 delete Array.prototype.map.caller; class
|
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
Join.java | 137 parameters.delete(ParameterNames.TO_TAG); 169 parameters.delete(ParameterNames.FROM_TAG);
|
Replaces.java | 137 parameters.delete(ParameterNames.TO_TAG); 169 parameters.delete(ParameterNames.FROM_TAG); 204 * CVS: then name the system in this line, otherwise delete it. 208 * CVS: address here. If this is your work then delete this line. 212 * CVS: If you have not had it reviewed then delete this line. 245 * CVS: then name the system in this line, otherwise delete it. 249 * CVS: address here. If this is your work then delete this line. 253 * CVS: If you have not had it reviewed then delete this line.
|
/cts/tests/tests/os/src/android/os/cts/ |
FileObserverTest.java | 55 mTestFile.delete(); 59 mMoveDestFile.delete(); 63 mTestDir.delete(); 82 * 2. While stop observer a dir, observer should't get any event while delete it's child file. 83 * 3. Observer a dir, when create delete a child file and delete self, 84 * observer should get create-child close-nowrite delete-child delete-self events. 111 mTestFile.delete(); // delete [all...] |
FileAccessPermissionTest.java | 74 assertFalse(f.delete()); 154 assertTrue(sdcardSubDir.delete()); 193 assertTrue(file.delete());
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_AlbumsTest.java | 132 // do not support delete operation of the albums 134 mContentResolver.delete(audioAlbumsUri, selection, selectionArgs); 155 mContentResolver.delete(audioMediaUri, null, null); 190 mContentResolver.delete(albumart, null, null); 200 new File(albumartfile).delete(); 210 path.delete(); 212 mContentResolver.delete(uri, null, null);
|
/development/tools/findunused/ |
find_unused_resources.rb | 146 layouts.delete(id) 147 strings.delete(id) 151 layouts.delete(id) 152 strings.delete(id) 156 layouts.delete(id) 157 strings.delete(id)
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
SoftContextMenu.js | 174 delete menuItemElement._actionId; 187 delete menuItemElement._subMenuTimer; 231 delete this._highlightedMenuItemElement._subMenuTimer; 316 delete this._glassPaneElement; 320 delete this._parentMenu._subMenu; 343 delete this._parentMenu._subMenu;
|
SuggestBox.js | 130 delete this._hideTimeoutId; 163 delete this._overlay; 164 delete this._selectedElement; 166 delete this._lastAnchorBox; 267 delete this._selectedElement; 337 delete this._rowCountPerViewport;
|
TextPrompt.js | 138 delete this._proxyElement; 207 delete this._isEditing; 228 delete this._selectionTimeout; 261 delete this._needUpdateAutocomplete; 337 delete this._completeTimeout; 339 delete this._waitingForCompletions; 345 delete this.autoCompleteElement; 346 delete this._userEnteredRange; 347 delete this._userEnteredText; 449 delete this._waitingForCompletions [all...] |
/external/chromium_org/v8/test/webkit/ |
delete-then-put.js | 25 'This tests for a problem with put after delete that existed at one point in the past.' 42 debug("delete a.c"); 43 delete a.c;
|
/external/chromium_org/v8/test/webkit/fast/js/ |
primitive-property-access-edge-cases.js | 31 delete String.prototype.constructor; 38 delete String.prototype.__proto__.x; 50 delete String.prototype.x; 54 delete Number.prototype.x; 71 delete constructor.prototype.foo; 80 delete constructor.prototype.foo; 89 delete constructor.prototype.foo; 98 delete constructor.prototype.foo; 157 delete constructor.prototype[42]; 166 delete constructor.prototype[42] 37 delete String.prototype.__proto__.x; class [all...] |
basic-strict-mode.js | 95 shouldBeSyntaxError("(function (a){'use strict'; delete a;})()"); 96 shouldBeSyntaxError("(function (){'use strict'; var a; delete a;})()"); 97 shouldBeSyntaxError("(function (){var a; function f() {'use strict'; delete a;} })()"); 119 shouldBeSyntaxError("'use strict'; (function (){var a; delete a;})"); 120 shouldBeSyntaxError("'use strict'; var a; (function (){ delete a;})"); 121 shouldBeSyntaxError("var a; (function (){ 'use strict'; delete a;})"); 136 shouldBeSyntaxError("'use strict'; delete aDeletableProperty;"); 137 shouldBeSyntaxError("'use strict'; (function (){ delete someDeclaredGlobal;})"); 138 shouldBeSyntaxError("(function (){ 'use strict'; delete someDeclaredGlobal;})"); 146 shouldThrow("'use strict'; delete objectWithReadonlyProperty.prop") [all...] |
JSON-parse-reviver.js | 48 shouldBe("currentHolder[3]", '"to delete"'); 67 delete this[3]; 104 var result = JSON.parse('["a value", "another value", "and another value", "to delete", "extra value"]', arrayReviver); 131 shouldBe("currentHolder['to delete']", '"will be deleted"'); 148 delete this["to delete"]; 151 case "to delete": 154 shouldBeFalse("currentHolder.hasOwnProperty('to delete')"); 174 var result = JSON.parse('{"a property" : "a value", "another property" : "another value", "and another property" : "and another value", "to delete" : "will be deleted"}', objectReviver); 179 shouldBeTrue("result.hasOwnProperty('to delete')"); [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaScannerTest.java | 87 mMediaFile.delete(); 93 new File(mFileDir + "/" + f).delete(); method 96 new File(mFileDir).delete(); 104 mContext.getContentResolver().delete(MediaStore.Audio.Media.getContentUri("external"), 141 nomedia.delete(); 160 res.delete(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, 163 res.delete(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, 166 // delete the playlist file entries, if they exist 167 res.delete(MediaStore.Files.getContentUri("external"), 170 res.delete(MediaStore.Files.getContentUri("external") [all...] |
MediaScannerNotificationTest.java | 77 assertTrue(noMedia.delete()); 123 assertTrue(new File(tmpPath, "foobar." + extensions[i]).delete()); 125 assertTrue(new File(tmpPath).delete());
|
/external/chromium_org/v8/test/mjsunit/ |
const-eval-init.js | 38 "delete x;" + 51 // Delete 'x' to remove the local const property. 52 "delete x;" + 65 var source = "delete x; const x = 7; assertEquals(7, x)"; 83 var source = "delete x; const x = 8; finished = true;"; 111 var source = "delete x; const x = 13; assertEquals(13, x)";
|
json2.js | 131 delete fast_smi[2]; 138 delete fast_double[2]; 145 delete fast_obj[2]; 151 delete this.a; 152 delete this.c; 163 delete this.a; 164 delete this.c;
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
tabs_api.js | 90 delete args.windowId; 92 delete args.index; 224 delete args.left; 226 delete args.top; 228 delete args.width; 230 delete args.height; 232 delete args.url; 263 delete retval.left; 265 delete retval.top; 267 delete retval.width [all...] |
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/ |
ProviderSearchesUriTest.java | 29 getContentResolver().delete(mSearchesUri, null, null); 34 getContentResolver().delete(mSearchesUri, null, null); 116 getContentResolver().delete(uri[0], null, null); 134 getContentResolver().delete(uri[1], null, null); 188 // Test: delete 189 getContentResolver().delete(insertUri, null, null);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
ApplicationCacheItemsView.js | 40 this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item"); 70 // http://webkit.org/b/41637 Web Inspector: Give Semantics to "Refresh" and "Delete" Buttons in ApplicationCache DataGrid 160 delete this._manifest; 161 delete this._creationTime; 162 delete this._updateTime; 163 delete this._size; 164 delete this._resources; 256 // FIXME: Delete Button semantics are not yet defined. (Delete a single, or all? [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
UISourceCodeFrame.js | 72 delete this._boundWindowFocused; 108 delete this._muteSourceCodeEvents; 121 delete this._muteSourceCodeEvents; 168 delete this._isSettingContent; 284 delete this._uiSourceCodeFrame;
|