/external/oprofile/libabi/ |
abi.cpp | 32 slots[entry->name] = entry->offset; 34 slots["little_endian"] = op_little_endian(); 40 if (slots.find(key) != slots.end()) 41 return slots.find(key)->second; 49 return slots == other.slots; 55 abi_iter i = abi.slots.begin(); 56 abi_iter e = abi.slots.end(); 69 abi.slots.clear() [all...] |
abi.h | 39 std::map<std::string, int> slots; member in class:abi
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldAndroidHashMapTest.java | 115 boolean[] slots = new boolean[4]; 134 if (slots[slot]) { 137 slots[slot] = true; 141 assertTrue(slots[0]); 142 assertTrue(slots[1]); 143 assertTrue(slots[2]); 144 assertTrue(slots[3]); 150 boolean[] slots = new boolean[4]; 169 if (slots[slot]) { 172 slots[slot] = true [all...] |
/external/chromium_org/chrome/browser/ui/app_list/search/ |
mixer.h | 18 // SearchResults UI model. The targeted results have 6 slots to hold the 19 // result. These slots could be viewed as having three groups: main group 21 // main group takes no more than 4 slots. The web store takes no more than 2 22 // slots. The omnibox group takes all the remaining slots.
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
userdatarequest.h | 28 public slots: 31 protected slots:
|
scanresults.h | 26 public slots: 33 protected slots:
|
addinterface.h | 27 public slots:
|
eventhistory.h | 46 public slots: 50 protected slots:
|
networkconfig.h | 33 public slots: 42 protected slots:
|
/external/chromium_org/gin/public/ |
gin_embedders.h | 11 // v8 objects, and is used as in index into the embedder data slots of a
|
/bionic/ |
ABI-bugs.txt | 11 Too few TLS slots mean we can't allocate 128 pthread_key_t instances,
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
profiledata_unittest.cc | 128 // Checks the first 'num_slots' profile data slots in the file 129 // against the data pointed to by 'slots'. Returns kNoError if the 132 string Check(const ProfileDataSlot* slots, int num_slots) { 133 return CheckWithSkips(slots, num_slots, NULL, 0); 136 // Checks the first 'num_slots' profile data slots in the file 137 // against the data pointed to by 'slots', skipping over entries 142 // any skipped slots, i.e., the first 'num_slots' profile data slots 147 string CheckWithSkips(const ProfileDataSlot* slots, int num_slots, 162 string ProfileDataChecker::CheckWithSkips(const ProfileDataSlot* slots, 404 ProfileDataSlot slots[] = { local 425 ProfileDataSlot slots[] = { local 447 ProfileDataSlot slots[] = { local 475 ProfileDataSlot slots[] = { local 493 ProfileDataSlot slots[] = { local 517 ProfileDataSlot slots[] = { local 543 ProfileDataSlot slots[] = { local 590 ProfileDataSlot slots[] = { local [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
profiledata_unittest.cc | 128 // Checks the first 'num_slots' profile data slots in the file 129 // against the data pointed to by 'slots'. Returns kNoError if the 132 string Check(const ProfileDataSlot* slots, int num_slots) { 133 return CheckWithSkips(slots, num_slots, NULL, 0); 136 // Checks the first 'num_slots' profile data slots in the file 137 // against the data pointed to by 'slots', skipping over entries 142 // any skipped slots, i.e., the first 'num_slots' profile data slots 147 string CheckWithSkips(const ProfileDataSlot* slots, int num_slots, 162 string ProfileDataChecker::CheckWithSkips(const ProfileDataSlot* slots, 404 ProfileDataSlot slots[] = { local 425 ProfileDataSlot slots[] = { local 447 ProfileDataSlot slots[] = { local 475 ProfileDataSlot slots[] = { local 493 ProfileDataSlot slots[] = { local 517 ProfileDataSlot slots[] = { local 543 ProfileDataSlot slots[] = { local 590 ProfileDataSlot slots[] = { local [all...] |
/external/kernel-headers/original/linux/ |
efs_dir.h | 28 unsigned char slots; member in struct:efs_dir
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
copy_reg.py | 98 This needs to find slots defined by the class and its bases, so we 102 __slots__ attribute to misrepresent their slots after the class is 114 # This class has no slots 117 # Slots found -- gather slot names from all base classes 120 slots = c.__dict__['__slots__'] 122 if isinstance(slots, basestring): 123 slots = (slots,) 124 for name in slots:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
copy_reg.py | 98 This needs to find slots defined by the class and its bases, so we 102 __slots__ attribute to misrepresent their slots after the class is 114 # This class has no slots 117 # Slots found -- gather slot names from all base classes 120 slots = c.__dict__['__slots__'] 122 if isinstance(slots, basestring): 123 slots = (slots,) 124 for name in slots:
|
/external/jmonkeyengine/engine/src/test/jme3test/app/ |
TestIDList.java | 80 static Object[] slots = new Object[16]; field in class:TestIDList 103 if (slots[slot] != val){ 105 slots[slot] = val; 111 if (slots[i] != null && enabledSlots[i] == false){ 114 if (slots[i] == null && enabledSlots[i] == true){ 120 if (slots[i] != val) 125 if (slots[i] != null) 137 slots[slot] = null;
|
/external/llvm/lib/CodeGen/ |
StackColoring.cpp | 12 // which represent the possible lifetime of stack slots. It attempts to 13 // merge disjoint stack slots and reduce the used stack space. 14 // NOTE: This pass is not StackSlotColoring, which optimizes spill slots. 17 // 1. Allow merging multiple small slots into a single larger slot at different 20 // spill slots. 76 STATISTIC(StackSpaceSaved, "Number of bytes saved due to merging slots."); 95 /// Which slots BEGINs in each basic block. 97 /// Which slots ENDs in each basic block. 99 /// Which slots are marked as LIVE_IN, coming into each basic block. 101 /// Which slots are marked as LIVE_OUT, coming out of each basic block [all...] |
/external/chromium/base/ |
global_descriptors_posix.h | 25 // descriptors which need to be in these slots generally aren't known, any code 29 // We could try to fill the reserved slots as soon as possible, but this is a 33 // slots and add a layer of indirection in the form of this singleton object.
|
/external/chromium_org/base/posix/ |
global_descriptors.h | 24 // descriptors which need to be in these slots generally aren't known, any code 28 // We could try to fill the reserved slots as soon as possible, but this is a 32 // slots and add a layer of indirection in the form of this singleton object.
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
setobject.h | 11 There are three kinds of slots in the table: 18 hold a search finger. The hash field of Unused or Dummy slots has 41 /* The table contains mask + 1 slots, and that's a power of 2.
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
setobject.h | 11 There are three kinds of slots in the table: 18 hold a search finger. The hash field of Unused or Dummy slots has 41 /* The table contains mask + 1 slots, and that's a power of 2.
|
/development/ndk/platforms/android-3/include/linux/ |
efs_dir.h | 33 unsigned char slots; member in struct:efs_dir
|
/external/chromium_org/v8/src/ |
hydrogen-environment-liveness.h | 38 // Trims live ranges of environment slots by doing explicit liveness analysis. 42 // live ranges of environment slots by zapping them with a constant after 44 // Slots are identified by their index and only affected if whitelisted in 76 // Keeps track of the last simulate seen, as well as the environment slots
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
efs_dir.h | 33 unsigned char slots; member in struct:efs_dir
|