HomeSort by relevance Sort by last modified time
    Searched refs:Items (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/include/llvm/Support/
IntegersSubsetMapping.h 12 /// Items in A is subsets of integers,
13 /// Items in B some pointers (Successors).
76 CaseItems Items;
86 "Intersected items with different successors!");
98 clustersVector.reserve(Items.size());
99 clustersVector.insert(clustersVector.begin(), Items.begin(), Items.end());
101 Items.clear();
102 Items.insert(Items.begin(), clustersVector.begin(), clustersVector.end())
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
EnumDirItems.cpp 50 const CDirItem &di = Items[index];
56 const CDirItem &di = Items[index];
65 Items.ReserveDown();
98 AddDirFileInfo(phyParent, logParent, fi, Items);
133 AddDirFileInfo(phyParentCur, logParent, fi, Items);
166 int numItems = dirItems.Items.Size();
169 if (numItems == dirItems.Items.Size())
188 RINOK(callback->ScanProgress(dirItems.GetNumFolders(), dirItems.Items.Size(), phyPrefix));
234 AddDirFileInfo(phyParent, logParent, fi, dirItems.Items);
303 RINOK(callback->ScanProgress(dirItems.GetNumFolders(), dirItems.Items.Size(), phyPrefix));
    [all...]
DirItem.h 33 CObjectVector<CDirItem> Items;
UpdatePair.cpp 70 int numDirItems = dirItems.Items.Size();
98 const CDirItem &di = dirItems.Items[dirIndex2];
Bench.cpp 909 CCrcInfo *Items;
910 CCrcThreads(): Items(0), NumThreads(0) {}
914 Items[i].Wait();
920 delete []Items;
990 threads.Items = new CCrcInfo[numThreads];
994 CCrcInfo &info = threads.Items[i];
1004 CCrcInfo &info = threads.Items[i];
1010 if (!threads.Items[i].Res)
UpdateCallback.cpp 120 const CDirItem &di = DirItems->Items[up.DirIndex];
172 const CDirItem &di = DirItems->Items[up.DirIndex];
ArchiveCommandLine.cpp 428 static void ConvertToLongNames(const UString &prefix, CObjectVector<NWildcard::CItem> &items)
430 for (int i = 0; i < items.Size(); i++)
432 NWildcard::CItem &item = items[i];
783 for (int i = 0; i < dirItems.Items.Size(); i++)
785 const CDirItem &dirItem = dirItems.Items[i];
Update.cpp 728 dirItems.Items.Add(di);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesm.h 88 // Release the items memory
108 // Switch on the items options
118 // Retrieve the items options
123 // Set the items options
128 // Set/Reset the items selection state
133 // Retrieve the items selection state
143 // overload action() to supply items with different actions.
148 // Prototype for an items callback function.
151 // If you don't like to create a child class for individual items to
153 // function pointer for items
376 inline NCursesMenuItem* items() const { function in class:NCursesMenu
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesm.h 88 // Release the items memory
108 // Switch on the items options
118 // Retrieve the items options
123 // Set the items options
128 // Set/Reset the items selection state
133 // Retrieve the items selection state
143 // overload action() to supply items with different actions.
148 // Prototype for an items callback function.
151 // If you don't like to create a child class for individual items to
153 // function pointer for items
376 inline NCursesMenuItem* items() const { function in class:NCursesMenu
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursesm.h 88 // Release the items memory
108 // Switch on the items options
118 // Retrieve the items options
123 // Set the items options
128 // Set/Reset the items selection state
133 // Retrieve the items selection state
143 // overload action() to supply items with different actions.
148 // Prototype for an items callback function.
151 // If you don't like to create a child class for individual items to
153 // function pointer for items
376 inline NCursesMenuItem* items() const { function in class:NCursesMenu
    [all...]
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 202 // Write out the number of items in the bucket.
299 const unsigned char* Items = Base + offset;
301 // 'Items' starts with a 16-bit unsigned integer representing the
302 // number of items in this bucket.
303 unsigned len = ReadUnalignedLE16(Items);
307 uint32_t item_hash = ReadUnalignedLE32(Items);
310 const std::pair<unsigned, unsigned>& L = Info::ReadKeyDataLength(Items);
315 Items += item_len;
321 InfoPtr->ReadKey((const unsigned char* const) Items, L.first);
325 Items += item_len
    [all...]
  /external/zlib/src/contrib/iostream2/
zstream.h 114 template <class T, class Items>
115 inline int read(izstream& zs, T* x, Items items) {
116 return ::gzread(zs.fp(), x, items*sizeof(T));
263 template <class T, class Items>
264 inline int write(ozstream& zs, const T* x, Items items) {
265 return ::gzwrite(zs.fp(), (voidp) x, items*sizeof(T));
  /external/chromium_org/chrome/browser/download/
download_status_updater_unittest.cc 68 for (std::vector<Items>::iterator it = manager_items_.begin();
103 // Add some number of Download items to a particular manager.
169 for (std::vector<Items>::iterator it = manager_items_.begin();
171 for (Items::iterator sit = it->begin(); sit != it->end(); ++sit)
177 typedef std::vector<content::DownloadItem*> Items;
178 std::vector<Items> manager_items_;
227 // Prime items
295 // Prime items
317 // Test many managers with all items complete.
332 // Test many managers with some non-complete items
    [all...]
  /external/chromium_org/tools/stats_viewer/
stats_viewer.cs 62 this.listViewCounters.Items.Clear();
70 int current_pids = comboBoxFilter.Items.Count;
75 this.comboBoxFilter.Items.Clear();
76 this.comboBoxFilter.Items.Add(kStringAllProcesses);
78 this.comboBoxFilter.Items.Add(kStringProcess + pid.ToString());
99 ListViewItem item = view.Items[counter.name];
116 view.Items.Add(new_item);
268 for (int i = 0; i < listViewCounters.Items.Count; i++) {
269 tw.Write(listViewCounters.Items[i].SubItems[0].Text + "\t");
270 tw.WriteLine(listViewCounters.Items[i].SubItems[1].Text);
    [all...]
stats_viewer.Designer.cs 210 this.comboBoxInterval.Items.AddRange(new object[] {
242 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  /external/chromium_org/tools/json_schema_compiler/test/
functions_on_types_unittest.cc 51 StorageArea::Get::Results::Items items; local
52 items.additional_properties.SetDouble("asdf", 0.1);
53 items.additional_properties.SetString("sdfg", "zxcv");
54 scoped_ptr<ListValue> results = StorageArea::Get::Results::Create(items);
57 EXPECT_TRUE(item_result->Equals(&items.additional_properties));
  /external/zlib/src/contrib/delphi/
ZLib.pas 19 TAlloc = function (AppData: Pointer; Items, Size: Integer): Pointer; cdecl;
254 function zlibAllocMem(AppData: Pointer; Items, Size: Integer): Pointer; cdecl;
256 // GetMem(Result, Items*Size);
257 Result := AllocMem(Items * Size);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_userdict.py 91 # Test keys, items, values
93 self.assertEqual(u2.items(), d2.items())
110 class Items:
111 def items(self): member in class:UserDictTest.test_all.Items
114 t.update(Items())
298 # items
299 self.assertEqual(s.items(), [(10,'ten'), (30, 'thirty')])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_userdict.py 91 # Test keys, items, values
93 self.assertEqual(u2.items(), d2.items())
110 class Items:
111 def items(self): member in class:UserDictTest.test_all.Items
114 t.update(Items())
298 # items
299 self.assertEqual(s.items(), [(10,'ten'), (30, 'thirty')])
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 181 property Items[Index: Integer]: T read GetItem write SetItem; default;
205 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
480 Result := inherited Items[Index];
529 inherited Items[Index] := Value;
778 // tricky. We need to fill in gaps, which will involve moving items
784 // gap refers to the hole that needs filling-in by shifting items down.
785 // index searches for items that have been probed out of their slot,
786 // but being careful not to move items if their bucket is between
Antlr.Runtime.Collections.pas 121 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
  /external/chromium_org/chrome/browser/resources/file_manager/js/
folder_shortcuts_data_model.js 8 * This uses chrome.storage as backend. Items are always sorted by file path.
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 287 CheckEquals(FIList.Items[3],333);
  /packages/apps/Exchange/assets/
FolderSyncParserTest.txt 232 [14:02:28] EAS Parser| FolderDisplayName: Deleted Items
666 [14:02:29] EAS Parser| FolderDisplayName: Sent Items
    [all...]

Completed in 1002 milliseconds

1 2