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

1 2

  /external/parameter-framework/upstream/parameter/
MappingContext.h 77 using Items = std::vector<SItem>;
78 Items mItems;
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-arabic-win1256.hh 91 #define OT_UARRAY(Name, Items) \
95 Items \
98 #define OT_UHEADLESSARRAY(Name, Items) \
102 Items \
119 #define OT_SUBLOOKUP(Name, SubFormat, Items) \
122 Items
124 #define OT_COVERAGE1(Name, Items) \
128 OT_UARRAY(Name##Glyphs, OT_LIST(Items))
175 #define MANIFEST(Items) \
179 Items \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/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/lzma/CPP/7zip/UI/Common/
EnumDirItems.cpp 66 const CDirItem &di = Items[index];
72 const CDirItem &di = Items[index];
81 Items.ReserveDown();
189 AddDirFileInfo(phyParent, logParent, secureIndex, fi, Items);
237 AddDirFileInfo(phyParentCur, logParent, secureIndex, fi, Items);
273 unsigned numItems = dirItems.Items.Size();
277 if (numItems == dirItems.Items.Size())
316 AddDirFileInfo(phyParent, logParent, -1, fi2, dirItems.Items);
368 dirItemIndex = dirItems.Items.Size();
369 AddDirFileInfo(phyParent, logParent, secureIndex, fi, dirItems.Items);
    [all...]
DirItem.h 52 CObjectVector<CDirItem> Items;
HashCalc.cpp 221 dirItems.Items.Add(di);
272 for (i = 0; i < dirItems.Items.Size(); i++)
286 const CDirItem &dirItem = dirItems.Items[i];
UpdateCallback.cpp 216 const CDirItem &di = DirItems->Items[up.DirIndex];
328 const CDirItem &di = DirItems->Items[up.DirIndex];
394 const CDirItem &di = DirItems->Items[up.DirIndex];
473 if (DirItems->Items[up.DirIndex].AreReparseData())
UpdateCallback.h 115 return DirItems->Items[up.DirIndex].IsDir();
UpdatePair.cpp 83 unsigned numDirItems = dirItems.Items.Size();
148 di = &dirItems.Items[dirIndex2];
Bench.cpp     [all...]
Update.cpp 795 ft2 = &dirItems.Items[pair2.DirIndex].MTime;
1121 dirItems.Items.Add(di);
    [all...]
ArchiveCommandLine.cpp 588 static void ConvertToLongNames(const UString &prefix, CObjectVector<NWildcard::CItem> &items)
590 FOR_VECTOR (i, items)
592 NWildcard::CItem &item = items[i];
913 FOR_VECTOR (i, dirItems.Items)
915 const CDirItem &dirItem = dirItems.Items[i];
    [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/llvm/include/llvm/Support/
OnDiskHashTable.h 165 // Write out the number of items in the bucket.
348 const unsigned char *Items = Base + Offset;
350 // 'Items' starts with a 16-bit unsigned integer representing the
351 // number of items in this bucket.
352 unsigned Len = endian::readNext<uint16_t, little, unaligned>(Items);
357 endian::readNext<hash_value_type, little, unaligned>(Items);
361 Info::ReadKeyDataLength(Items);
366 Items += ItemLen;
372 InfoPtr->ReadKey((const unsigned char *const)Items, L.first);
376 Items += ItemLen
    [all...]
  /external/v8/test/mjsunit/es6/
typedarray-of.js 28 // Items are coerced to numerical values.
  /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/gdb/darwin-x86/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/gdb/linux-x86/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/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/opencv3/samples/winrt/ImageManipulations/
AdvancedCapture.xaml.cpp 251 EnumedDeviceList2->Items->Clear();
267 EnumedDeviceList2->Items->Append(devInfo->Name);
  /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
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ksproxy.h 499 KSDDKAPI HRESULT WINAPI KsGetMultiplePinFactoryItems(HANDLE FilterHandle,ULONG PinFactoryId,ULONG PropertyId,PVOID *Items);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 287 CheckEquals(FIList.Items[3],333);

Completed in 951 milliseconds

1 2