/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
NavigationHistoryTest.java | 68 private void checkHistoryItem(NavigationEntry item, String url, String originalUrl, 70 assertEquals(url, item.getUrl()); 71 assertEquals(originalUrl, item.getOriginalUrl()); 72 assertEquals(title, item.getTitle()); 74 assertNull(item.getFavicon()); 76 assertNotNull(item.getFavicon());
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/ |
select_widget.js | 38 for (var i = 0, item = null; item = this.selectNode_.options[i]; i++) { 40 newItem.innerHTML = item.innerHTML;
|
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/ |
event_page.js | 79 var items = opt_rss.querySelectorAll('item'); 82 item = items[i]; 83 var disableDate = new Date(item.getElementsByTagNameNS( 86 var enableDate = new Date(item.getElementsByTagNameNS( 89 var regionsString = item.getElementsByTagNameNS( 95 this.setWallpaperFromRssItem_(item, 161 * Sets wallpaper to the wallpaper specified by item from rss. If downloading 163 * @param {Element} item The wallpaper rss item element. 168 SurpriseWallpaper.prototype.setWallpaperFromRssItem_ = function(item, [all...] |
/external/chromium_org/chrome/browser/resources/user_manager/ |
control_bar.css | 20 .header-bar-item:first-child { 24 .header-bar-item { 28 html[dir=rtl] .header-bar-item {
|
/external/chromium_org/chrome/test/chromedriver/js/ |
call_function.js | 51 * Stores a given item in the cache and returns a unique ID. 53 * @param {!Object} item The item to store in the cache. 54 * @return {number} The ID for the cached item. 56 storeItem: function(item) { 58 if (item == this.cache_[i]) 62 this.cache_[id] = item; 70 * @param {number} id The ID for the cached item to retrieve. 71 * @return {!Object} The retrieved item. 74 var item = this.cache_[id] [all...] |
/external/chromium_org/content/browser/ |
database_browsertest.cc | 133 std::string item = base::IntToString(i); local 134 InsertRecord(shell(), item); local 137 expected += item; 143 std::string item = base::IntToString(i * i); local 144 UpdateRecord(shell(), i, item); local 147 expected += item;
|
/external/chromium_org/content/browser/fileapi/ |
blob_storage_context_unittest.cc | 23 BlobData::Item item; local 24 item.SetToBytes("1", 1); 25 EXPECT_TRUE(host->AppendBlobDataItem(id, item)); 225 BlobData::Item item; local 226 item.SetToBytes("1", 1); 227 EXPECT_FALSE(host.AppendBlobDataItem(kId, item));
|
/external/chromium_org/crypto/ |
ec_private_key_nss.cc | 60 SECItem item; local 62 rv = PK11_ReadRawAttribute(PK11_TypePrivKey, key, type, &item); 68 output->assign(item.data, item.data + item.len); 69 SECITEM_FreeItem(&item, PR_FALSE);
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
base.js | 198 Update an {key}/{item} pair. You can make the dictionary act as a set and 199 skip the {item}, in which case the {key} is also the {item}. 221 - item 223 - updated, which is true if the item was updated after last purge() call. 231 var item = this._items[key]; 232 callback.call(thisObject || item, item, key, !!this._updated[key]); 237 this.forEach(function(item, key, updated) { 240 removeCallback.call(thisObject || item, item) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
pubsubtasks_unittest.cc | 37 for (std::vector<buzz::PubSubItem>::const_iterator item = items.begin(); 38 item != items.end(); ++item) { 40 handled_item.itemid = item->itemid; 41 if (item->elem->FirstElement() != NULL) { 42 handled_item.payload = item->elem->FirstElement()->Str(); 107 " <item id='key0'>" 109 " </item>" 110 " <item id='key1'>" 112 " </item>" [all...] |
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
adm_writer.py | 121 for item in policy['items']: 123 value_text = 'NUMERIC ' + str(item['value']) 125 value_text = '"' + item['value'] + '"' 127 (item['name'], value_text)) 128 self._AddGuiString(item['name'] + '_DropDown', item['caption'])
|
/external/chromium_org/tools/ |
isolate_driver.py | 108 def using_blacklist(item): 109 """Returns True if an item should be analyzed. 121 ext = os.path.splitext(item)[1] 125 if item.endswith('.dll.lib'): 129 return item not in ('', '|', '||') 132 def raw_build_to_deps(item): 138 # The first item is the build rule, e.g. 'link', 'cxx', 'phony', etc. 139 return filter(using_blacklist, item.split(' ')[1:])
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
navigation_list_model.js | 8 * Base item of NavigationListModel. Should not be created directly. 21 * Item of NavigationListModel for shortcuts. 42 * Item of NavigationListModel for volumes. 86 var item = new NavigationModelShortcutItem( 89 return item; 109 var shortcutEntry = this.shortcutListModel_.item(i); 133 this.volumeManager_.volumeInfoList.item(i)); 161 var shortcutEntry = this.shortcutListModel_.item(modelIndex); 185 var shortcutEntry = this.shortcutListModel_.item(modelIndex); 225 * Returns the item at the given index [all...] |
/external/chromium_org/ui/views/controls/menu/ |
menu_item_view.cc | 46 // Set this so that we're not identified as a normal menu item. 246 MenuItemView* item = new MenuItemView(this, item_id, type); local 248 item->SetTitle(GetDelegate()->GetLabel(item_id)); 250 item->SetTitle(label); 251 item->SetSubtitle(sublabel); 252 item->SetMinorText(minor_text); 254 item->SetIcon(icon); 256 item->CreateSubmenu(); 258 item->SetVisible(false); 259 submenu_->AddChildViewAt(item, index) 268 View* item = submenu_->child_at(index); local 368 MenuItemView* item = GetMenuItemByID(item_id); local 374 MenuItemView* item = GetMenuItemByID(item_id); local 443 const MenuItemView* item = this; local [all...] |
/external/eigen/debug/gdb/ |
printers.py | 114 item = self.dataPtr.dereference() 117 return ('[%d]' % (row,), item) 119 return ('[%d]' % (col,), item) 120 return ('[%d,%d]' % (row, col), item) 163 item = self.dataPtr.dereference() 165 return ('[%s]' % (self.elementNames[element],), item)
|
/external/elfutils/0.153/backends/ |
linux-core-note.c | 107 #define FIELD(igroup, itype, item, fmt, ...) \ 109 .name = #item, \ 111 .offset = offsetof (struct EBLHOOK(prstatus), pr_##item), \ 141 #define FIELD(igroup, itype, item, fmt, ...) \ 143 .name = #item, \ 145 .offset = offsetof (struct EBLHOOK(prpsinfo), pr_##item), \
|
/external/harfbuzz_ng/src/ |
hb-buffer-deserialize-json.rl | 89 item = 95 main := space* item (comma item)* space* (','|']')?;
|
hb-buffer-deserialize-text.rl | 78 item = 89 main := space* item (space* '|' space* item)* space* ('|'|']')?;
|
/external/icu/icu4c/source/common/ |
uarrsort.c | 64 uprv_stableBinarySearch(char *array, int32_t limit, void *item, int32_t itemSize, 72 int32_t diff=cmp(context, item, array+i*itemSize); 75 * Found the item. We look for the *last* occurrence of such 76 * an item, for stable sorting. 96 int32_t diff=cmp(context, item, array+start*itemSize); 113 char *item=array+j*itemSize; local 114 int32_t insertionPoint=uprv_stableBinarySearch(array, j, item, itemSize, cmp, context); 118 ++insertionPoint; /* one past the last equal item */ 122 uprv_memcpy(pv, item, itemSize); /* v=array[j] */ 135 /* allocate an intermediate item variable (v) * [all...] |
/external/libpng/projects/visualc71/ |
README_zlib.txt | 24 binaries set "zlib" as the startup project (Select "zlib" tree view item + 26 binaries set it to "example" (Select "example" tree view item + Project | 28 "minigzip" (Select "minigzip" tree view item + Project | Set as StartUp
|
/external/libunwind/doc/ |
unw_get_proc_info.tex | 26 \item[\Type{unw\_word\_t} \Var{start\_ip}] The address of the first 30 \item[\Type{unw\_word\_t} \Var{end\_ip}] The address of the first 34 \item[\Type{unw\_word\_t} \Var{lsda}] The address of the 38 \item[\Type{unw\_word\_t} \Var{handler}] The address of the exception 42 \item[\Type{unw\_word\_t} \Var{gp}] The global-pointer of the 48 \item[\Type{unw\_word\_t} \Var{flags}] A set of flags. There are 52 \item[\Type{int} \Var{format}] The format of the unwind-info for this 62 \item[\Type{int} \Var{unwind\_info\_size}] The size of the unwind-info 68 \item[\Type{void~*}\Var{unwind\_info}] The pointer to the unwind-info. 99 \item[\Const{UNW\_EUNSPEC}] An unspecified error occurred [all...] |
/external/llvm/utils/lit/lit/ |
run.py | 76 item = self.provider.get() 77 if item is None: 79 self.run_test(item) 134 # Wait for a result item. 135 item = self.queue.get() 136 if item is None: 141 index,result = item
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
LeafNode.java | 46 * @return The item details in {@link DiscoverItems} format
62 * @return List of {@link Item} in the node
66 public <T extends Item> List<T> getItems()
83 * @return List of {@link Item} in the node
87 public <T extends Item> List<T> getItems(String subscriptionId)
104 * @param ids Item ids of the items to retrieve
106 * @return The list of {@link Item} with payload
110 public <T extends Item> List<T> getItems(Collection<String> ids)
113 List<Item> itemList = new ArrayList<Item>(ids.size()); [all...] |
/frameworks/av/media/libstagefright/ |
TimedEventQueue.cpp | 128 QueueItem item; local 129 item.event = event; 130 item.realtime_us = realtime_us; 131 item.has_wakelock = false; 139 item.has_wakelock = true; 141 mQueue.insert(it, item);
|
/frameworks/base/core/java/android/widget/ |
ArrayAdapter.java | 41 * of your objects to determine what text will be displayed for the item in the list. 341 * Returns the position of the specified item in the array. 343 * @param item The item to retrieve the position of. 345 * @return The position of the specified item. 347 public int getPosition(T item) { 348 return mObjects.indexOf(item); 390 T item = getItem(position); local 391 if (item instanceof CharSequence) { 392 text.setText((CharSequence)item); [all...] |