/external/icu/icu4c/source/samples/layout/ |
cmaps.cpp | 100 return new CMAPGroupMapper(cmap, encoding->groups, SWAPL(encoding->nGroups)); 170 CMAPGroupMapper::CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups) 171 : CMAPMapper(cmap), fGroups(groups)
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/ |
ObjLoader.java | 83 final Array<Group> groups = new Array<Group>(10); field in class:ObjLoader 112 // there are no groups or objects defined in the OBJ file. 114 groups.add(activeGroup); 189 for (int i = 0; i < groups.size; i++) { 190 if (groups.get(i).numFaces < 1) { 191 groups.removeIndex(i); 196 // If there are no groups left, there is no valid Model to return 197 if (groups.size < 1) return null; 199 // Get number of objects/groups remaining after removing empty ones 200 final int numGroups = groups.size [all...] |
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
plot_dynamics.py | 52 groups = re.search(r'_(((\d)+((,(\d)+)*))_(\D+))#\d@(\S+)', line) 55 var_name = groups.group(1) 56 alg_name = groups.group(8)
|
/system/extras/ext4_utils/ |
ext4_utils.c | 122 the sparse_super feature, only block groups 0, 1, and powers of 3, 5, 123 and 7 have backup superblocks. Otherwise, all block groups have backup 178 for (i = 1; i < aux_info.groups; i++) { 206 aux_info.groups = DIV_ROUND_UP(aux_info.len_blocks - aux_info.first_data_block, 213 DIV_ROUND_UP(aux_info.groups * sizeof(struct ext2_group_desc), 220 if (ext4_bg_has_super_block(aux_info.groups - 1)) 224 aux_info.groups--; 250 aux_info.backup_sb = calloc(aux_info.groups, sizeof(char *)); 265 for (i=0; i<aux_info.groups; i++) { 280 sb->s_inodes_count = info.inodes_per_group * aux_info.groups; [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
launch_instance | 123 parser.add_option("-g", "--groups", help="Security Groups to add this instance to", action="append", dest="groups") 173 if options.groups: 174 groups = options.groups variable 176 groups = [] variable 180 groups.append(g) 224 security_groups=groups, instance_type=options.type,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/ |
conv.py | 76 symbol, number = mo.groups() 135 n, m, k = map(int, mo.groups()) 141 i, j = map(int, mo.groups()) 149 s, t = map(int, mo.groups()) 156 k, n, m = map(int, mo.groups()) 208 x, y = mo.groups()
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/ |
conv.py | 76 symbol, number = mo.groups() 135 n, m, k = map(int, mo.groups()) 141 i, j = map(int, mo.groups()) 149 s, t = map(int, mo.groups()) 156 k, n, m = map(int, mo.groups()) 208 x, y = mo.groups()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
conv.py | 76 symbol, number = mo.groups() 135 n, m, k = map(int, mo.groups()) 141 i, j = map(int, mo.groups()) 149 s, t = map(int, mo.groups()) 156 k, n, m = map(int, mo.groups()) 208 x, y = mo.groups()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
conv.py | 76 symbol, number = mo.groups() 135 n, m, k = map(int, mo.groups()) 141 i, j = map(int, mo.groups()) 149 s, t = map(int, mo.groups()) 156 k, n, m = map(int, mo.groups()) 208 x, y = mo.groups()
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ExpandableListViewBasicTest.java | 111 List<MyGroup> groups = mActivity.getGroups(); local 113 groups.add(0, insertedGroup);
|
/external/autotest/server/site_tests/network_StressServoEthernetPlug/ |
network_StressServoEthernetPlug.py | 79 (iface, hwaddr) = iface_start.groups() 84 ipaddress = result.groups()[0]
|
/external/testng/src/test/java/test/ |
Test1.java | 19 @Test(groups = { "current" }) 93 @Test // (groups = { "one" }) 125 @Test(groups = { "currentold" })
|
/external/testng/src/test/java/test/mannotation/ |
MAnnotation2SampleTest.java | 17 @Configuration(beforeTestClass = true, enabled = true, groups="current") 92 @Test(groups="current") 110 // @Test(groups = "current")
|
/external/v8/tools/ |
stats-viewer.py | 203 groups = {} 208 if not name in groups: 209 groups[name] = [] 210 groups[name].append(counter) 212 return groups 214 def RebuildMainWindow(self, groups): 218 groups: the groups of counters to display 227 sorted_groups = groups.keys() 230 counter_objs = groups[counter_name [all...] |
/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/ |
SpinedBufferTest.java | 95 @Test(dataProvider = "SpinedBuffer", groups = { "serialization-hostile" }) 117 @Test(groups = { "serialization-hostile" }) 170 @Test(dataProvider = "IntSpinedBuffer", groups = { "serialization-hostile" }) 192 @Test(groups = { "serialization-hostile" }) 245 @Test(dataProvider = "LongSpinedBuffer", groups = { "serialization-hostile" }) 267 @Test(groups = { "serialization-hostile" }) 321 @Test(dataProvider = "DoubleSpinedBuffer", groups = { "serialization-hostile" }) 343 @Test(groups = { "serialization-hostile" })
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
GroupsListFragment.java | 95 private void setData(Cursor groups) { 99 mAdapter.changeCursor(new MergeCursor(new Cursor[] { psuedoGroups, groups }));
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_re.py | 255 self.assertEqual(re.match('a', 'a').groups(), ()) 256 self.assertEqual(re.match('(a)', 'a').groups(), ('a',)) 262 self.assertEqual(pat.match('a').groups(), ('a', 'a', None, None)) 263 self.assertEqual(pat.match('b').groups(), ('b', None, 'b', None)) 264 self.assertEqual(pat.match('ac').groups(), ('a', 'a', None, 'c')) 265 self.assertEqual(pat.match('bc').groups(), ('b', None, 'b', 'c')) 266 self.assertEqual(pat.match('bc').groups(""), ('b', "", 'b', 'c')) 282 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', '(a)').groups(), 284 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', 'a').groups(), 288 self.assertEqual(re.match('^(?:(a)|c)((?(1)b|d))$', 'ab').groups(), [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_re.py | 255 self.assertEqual(re.match('a', 'a').groups(), ()) 256 self.assertEqual(re.match('(a)', 'a').groups(), ('a',)) 262 self.assertEqual(pat.match('a').groups(), ('a', 'a', None, None)) 263 self.assertEqual(pat.match('b').groups(), ('b', None, 'b', None)) 264 self.assertEqual(pat.match('ac').groups(), ('a', 'a', None, 'c')) 265 self.assertEqual(pat.match('bc').groups(), ('b', None, 'b', 'c')) 266 self.assertEqual(pat.match('bc').groups(""), ('b', "", 'b', 'c')) 282 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', '(a)').groups(), 284 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', 'a').groups(), 288 self.assertEqual(re.match('^(?:(a)|c)((?(1)b|d))$', 'ab').groups(), [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_re.py | 255 self.assertEqual(re.match('a', 'a').groups(), ()) 256 self.assertEqual(re.match('(a)', 'a').groups(), ('a',)) 262 self.assertEqual(pat.match('a').groups(), ('a', 'a', None, None)) 263 self.assertEqual(pat.match('b').groups(), ('b', None, 'b', None)) 264 self.assertEqual(pat.match('ac').groups(), ('a', 'a', None, 'c')) 265 self.assertEqual(pat.match('bc').groups(), ('b', None, 'b', 'c')) 266 self.assertEqual(pat.match('bc').groups(""), ('b', "", 'b', 'c')) 282 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', '(a)').groups(), 284 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', 'a').groups(), 288 self.assertEqual(re.match('^(?:(a)|c)((?(1)b|d))$', 'ab').groups(), [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_re.py | 255 self.assertEqual(re.match('a', 'a').groups(), ()) 256 self.assertEqual(re.match('(a)', 'a').groups(), ('a',)) 262 self.assertEqual(pat.match('a').groups(), ('a', 'a', None, None)) 263 self.assertEqual(pat.match('b').groups(), ('b', None, 'b', None)) 264 self.assertEqual(pat.match('ac').groups(), ('a', 'a', None, 'c')) 265 self.assertEqual(pat.match('bc').groups(), ('b', None, 'b', 'c')) 266 self.assertEqual(pat.match('bc').groups(""), ('b', "", 'b', 'c')) 282 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', '(a)').groups(), 284 self.assertEqual(re.match('^(\()?([^()]+)(?(1)\))$', 'a').groups(), 288 self.assertEqual(re.match('^(?:(a)|c)((?(1)b|d))$', 'ab').groups(), [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
ccr.s | 45 ; Two from different groups, and switch order. 59 ; Four in different groups, and switch order.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ThreadGroupTest.java | 175 !arrayIncludes(groups(testRoot), child)); 177 !arrayIncludes(groups(originalCurrent), testRoot)); 280 // Create some groups, nested some levels. 283 Vector<ThreadGroup> groups = new Vector<ThreadGroup>(); local 286 groups.addElement(testRoot); 290 groups.addElement(current); 294 for (int i = 1; i < groups.size(); i++) { 295 current = groups.elementAt(i); 296 ThreadGroup previous = groups.elementAt(i - 1); 359 !arrayIncludes(groups(testRoot.getParent()), testRoot)) 701 private static ThreadGroup[] groups(ThreadGroup parent) { method in class:ThreadGroupTest [all...] |
/system/connectivity/shill/ |
key_file_store_unittest.cc | 147 set<string> groups = store_->GetGroups(); local 148 EXPECT_EQ(3, groups.size()); 149 EXPECT_TRUE(ContainsKey(groups, kGroupA)); 150 EXPECT_TRUE(ContainsKey(groups, kGroupB)); 151 EXPECT_TRUE(ContainsKey(groups, kGroupC)); 152 EXPECT_FALSE(ContainsKey(groups, "g-x")); 770 set<string> groups = store_->GetGroups(); local 771 EXPECT_EQ(3, groups.size()); 772 EXPECT_TRUE(ContainsKey(groups, kGroupA)); 773 EXPECT_TRUE(ContainsKey(groups, kGroupB)) [all...] |
/external/autotest/client/site_tests/hardware_Thermal/ |
hardware_Thermal.py | 34 key, value = kv.groups()
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
v8_profiler.py | 37 output_file = match.groups(0)[0]
|