/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_grammar.py | 149 def f3(two, arguments): pass 151 exec('def f4(two, (compound, (argument, list))): pass') 152 exec('def f5((compound, first), two): pass') 154 self.assertEqual(f3.func_code.co_varnames, ('two', 'arguments')) 157 ('two', '(compound, (argument, list))', 'compound', 'argument', 160 ('(compound, first)', 'two', 'compound', 'first')) 163 ('two', '.1', 'compound', 'argument', 'list')) 165 ('.0', 'two', 'compound', 'first')) 167 def a2(two, args,): pass 514 global one, two, three, four, five, six, seven, eight, nine, te [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_grammar.py | 149 def f3(two, arguments): pass 151 exec('def f4(two, (compound, (argument, list))): pass') 152 exec('def f5((compound, first), two): pass') 154 self.assertEqual(f3.func_code.co_varnames, ('two', 'arguments')) 157 ('two', '(compound, (argument, list))', 'compound', 'argument', 160 ('(compound, first)', 'two', 'compound', 'first')) 163 ('two', '.1', 'compound', 'argument', 'list')) 165 ('.0', 'two', 'compound', 'first')) 167 def a2(two, args,): pass 514 global one, two, three, four, five, six, seven, eight, nine, te [all...] |
/prebuilts/go/darwin-x86/src/fmt/ |
scan_test.go | 765 // Scan attempts to read two lines into the object. Scanln should prevent this 1085 {"one line two items with spaces ", " 1 2 \n", 2, true}, 1086 {"one line two items no newline", " 1 2", 2, true}, 1087 {"two lines two items", "1\n2\n", 1, false}, 1119 {"two extra spaces in format", "1\n2", "%d \n %d", 2, true},
|
/prebuilts/go/darwin-x86/src/image/jpeg/ |
reader.go | 169 // sometimes overshoot and read one or two too many bytes. Two-byte overshoot 201 // Take the fast path if d.bytes.buf contains at least two bytes. 360 // MCUs, not two 16x8 MCUs. 369 // assume that the two chroma components have the same subsampling 390 // For 4-component images (either CMYK or YCbCrK), we only support two 393 // but in practice, those two combinations are the only ones in use,
|
/prebuilts/go/darwin-x86/src/net/url/ |
url_test.go | 42 "http://www.google.com/file%20one%26two", 46 Path: "/file one&two", 47 RawPath: "/file%20one%26two", 517 // These two cases are valid as textual representations as 666 "one two", 667 "one+two",
|
/prebuilts/go/linux-x86/src/fmt/ |
scan_test.go | 765 // Scan attempts to read two lines into the object. Scanln should prevent this 1085 {"one line two items with spaces ", " 1 2 \n", 2, true}, 1086 {"one line two items no newline", " 1 2", 2, true}, 1087 {"two lines two items", "1\n2\n", 1, false}, 1119 {"two extra spaces in format", "1\n2", "%d \n %d", 2, true},
|
/prebuilts/go/linux-x86/src/image/jpeg/ |
reader.go | 169 // sometimes overshoot and read one or two too many bytes. Two-byte overshoot 201 // Take the fast path if d.bytes.buf contains at least two bytes. 360 // MCUs, not two 16x8 MCUs. 369 // assume that the two chroma components have the same subsampling 390 // For 4-component images (either CMYK or YCbCrK), we only support two 393 // but in practice, those two combinations are the only ones in use,
|
/prebuilts/go/linux-x86/src/net/url/ |
url_test.go | 42 "http://www.google.com/file%20one%26two", 46 Path: "/file one&two", 47 RawPath: "/file%20one%26two", 517 // These two cases are valid as textual representations as 666 "one two", 667 "one+two",
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 167 def f3(two, arguments): pass 169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments')) 171 def a2(two, args,): pass 486 global one, two, three, four, five, six, seven, eight, nine, ten 710 x = {'one' or 'two': 1 or 2} 711 x = {'one': 1, 'two': 2} 712 x = {'one': 1, 'two': 2,} 713 x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6} 717 x = {'one', 'two', 'three'}
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 149 def f3(two, arguments): pass 151 exec('def f4(two, (compound, (argument, list))): pass') 152 exec('def f5((compound, first), two): pass') 154 self.assertEqual(f3.func_code.co_varnames, ('two', 'arguments')) 157 ('two', '(compound, (argument, list))', 'compound', 'argument', 160 ('(compound, first)', 'two', 'compound', 'first')) 163 ('two', '.1', 'compound', 'argument', 'list')) 165 ('.0', 'two', 'compound', 'first')) 167 def a2(two, args,): pass 514 global one, two, three, four, five, six, seven, eight, nine, te [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 167 def f3(two, arguments): pass 169 self.assertEquals(f3.__code__.co_varnames, ('two', 'arguments')) 171 def a2(two, args,): pass 486 global one, two, three, four, five, six, seven, eight, nine, ten 710 x = {'one' or 'two': 1 or 2} 711 x = {'one': 1, 'two': 2} 712 x = {'one': 1, 'two': 2,} 713 x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6} 717 x = {'one', 'two', 'three'}
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 149 def f3(two, arguments): pass 151 exec('def f4(two, (compound, (argument, list))): pass') 152 exec('def f5((compound, first), two): pass') 154 self.assertEqual(f3.func_code.co_varnames, ('two', 'arguments')) 157 ('two', '(compound, (argument, list))', 'compound', 'argument', 160 ('(compound, first)', 'two', 'compound', 'first')) 163 ('two', '.1', 'compound', 'argument', 'list')) 165 ('.0', 'two', 'compound', 'first')) 167 def a2(two, args,): pass 514 global one, two, three, four, five, six, seven, eight, nine, te [all...] |
/external/skia/tests/ |
PathOpsOpTest.cpp | 379 SkPath one, two; local 381 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction); 382 testPathOp(reporter, one, two, kIntersect_SkPathOp, filename); 386 SkPath one, two; local 388 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction); 389 testPathOp(reporter, one, two, kUnion_SkPathOp, filename); 393 SkPath one, two; local 395 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction); 396 testPathOp(reporter, one, two, kDifference_SkPathOp, filename); 400 SkPath one, two; local 407 SkPath one, two; local 414 SkPath one, two; local 421 SkPath one, two; local 428 SkPath one, two; local 5570 SkPath two; local [all...] |
/libcore/jsr166-tests/src/test/java/jsr166/ |
LinkedBlockingDequeTest.java | 404 q.add(two); [all...] |
/external/guava/guava-tests/test/com/google/common/cache/ |
CacheLoadingTest.java | 164 final Object two = new Object(); local 173 return Futures.immediateFuture(two); 200 assertSame(two, cache.getUnchecked(key)); 210 final Object two = new Object(); local 220 return Futures.immediateFuture(two); 252 assertSame(two, cache.getUnchecked(key)); 260 assertSame(two, cache.getUnchecked(key)); 270 final Object two = new Object(); local 280 return Futures.immediateFuture(two); 312 assertSame(two, cache.getIfPresent(key)) [all...] |
/development/perftests/panorama/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 382 /*Filter g of length 128 in place with 14641. Output is shifted two steps 400 paddd mm0,mm6 /*2 Add 1* behind two steps*/ 401 movq mm2,mm6 /*3 Start with 1* in front two steps*/ 406 pshufw mm6,mm6,4Eh /*8 Swap the two double-words using bitmask 01001110=4Eh*/ 415 /*Warming iteration two 17-32********************/ 417 paddd mm0,mm4 /*18 Add 1* behind two steps*/ 418 movq mm2,mm4 /*19 Start with 1* in front two steps*/ 423 pshufw mm4,mm4,4Eh /*24 Swap the two double-words using bitmask 01001110=4Eh*/ 438 paddd mm0,mm6 /*34 Add 1* behind two steps*/ 439 movq mm2,mm6 /*35 Start with 1* in front two steps* 1339 float *two[4]; local [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 382 /*Filter g of length 128 in place with 14641. Output is shifted two steps 400 paddd mm0,mm6 /*2 Add 1* behind two steps*/ 401 movq mm2,mm6 /*3 Start with 1* in front two steps*/ 406 pshufw mm6,mm6,4Eh /*8 Swap the two double-words using bitmask 01001110=4Eh*/ 415 /*Warming iteration two 17-32********************/ 417 paddd mm0,mm4 /*18 Add 1* behind two steps*/ 418 movq mm2,mm4 /*19 Start with 1* in front two steps*/ 423 pshufw mm4,mm4,4Eh /*24 Swap the two double-words using bitmask 01001110=4Eh*/ 438 paddd mm0,mm6 /*34 Add 1* behind two steps*/ 439 movq mm2,mm6 /*35 Start with 1* in front two steps* 1339 float *two[4]; local [all...] |
/toolchain/binutils/binutils-2.25/etc/ |
configure | 472 # ... but there are two gotchas: [all...] |
/prebuilts/go/darwin-x86/src/reflect/ |
all_test.go | 662 {map[int]string{1: "one", 2: "two"}, map[int]string{2: "two", 1: "one"}, true}, 675 {map[int]string{1: "one", 3: "two"}, map[int]string{2: "two", 1: "one"}, false}, 676 {map[int]string{1: "one", 2: "txo"}, map[int]string{2: "two", 1: "one"}, false}, 677 {map[int]string{1: "one"}, map[int]string{2: "two", 1: "one"}, false}, 678 {map[int]string{2: "two", 1: "one"}, map[int]string{1: "one"}, false}, 700 {map[uint]string{1: "one", 2: "two"}, map[int]string{2: "two", 1: "one"}, false}, 1303 // too exhausting, so just do two swaps 1435 type two [2]uintptr type [all...] |
/prebuilts/go/linux-x86/src/reflect/ |
all_test.go | 662 {map[int]string{1: "one", 2: "two"}, map[int]string{2: "two", 1: "one"}, true}, 675 {map[int]string{1: "one", 3: "two"}, map[int]string{2: "two", 1: "one"}, false}, 676 {map[int]string{1: "one", 2: "txo"}, map[int]string{2: "two", 1: "one"}, false}, 677 {map[int]string{1: "one"}, map[int]string{2: "two", 1: "one"}, false}, 678 {map[int]string{2: "two", 1: "one"}, map[int]string{1: "one"}, false}, 700 {map[uint]string{1: "one", 2: "two"}, map[int]string{2: "two", 1: "one"}, false}, 1303 // too exhausting, so just do two swaps 1435 type two [2]uintptr type [all...] |
/external/bison/ |
maint.mk | 377 # Convert all uses automatically, via these two commands: 466 # To use this "command" macro, you must first define two shell variables: 528 # Divide into two sets on case, and filter each through this: 534 # But we can do better, in at least two ways: 535 # 1) take advantage of two "dup"-suffixed strings: 765 halt='help2man requires at least two spaces between an option and its description'\ 870 # Require the latest GFDL. Two regexp, since some .texi files end up [all...] |
/external/blktrace/btt/doc/ |
btt.tex | 118 This is also broken down into two component times\footnote{On 151 Two other sets of results are presented in this section: 236 -- issued} IOs. The next two sections provides some rudimentary 243 The first of the two sections displays values for Q2Q seek distances -- 275 There are two major reasons why request queues are unplugged, and both 490 type of setting. For each pair, the Y values have two settings off 574 red point (representing 8 blocks per IO), whereas the other two had 689 \texttt{btt} can also produce two data files containing all IO-to-IO sector 750 The seek difference is calculated in one of two ways: [all...] |
/external/v8/src/third_party/fdlibm/ |
fdlibm.js | 20 // initialized to a two-element Float64Array during genesis. 60 // precision, r is returned as two values y0 and y1 such that r = y0 + y1 437 // Here ln2 is split into two floating point number: 499 // For |x| < 2^-29 we can use a simple two-term Taylor series. 991 // Compute log2(x) in two pieces: [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
codec_test.go | 952 it0.Ignore_m = map[string]int{"one": 1, "two": 2} 1008 ****i.M = map[string]int{"one": 1, "two": 2, "three": 3} 1023 if len(d.M) != 3 || d.M["one"] != 1 || d.M["two"] != 2 || d.M["three"] != 3 { 1300 map[string]int{"one": 1, "two": 2}, 1344 dt.M = map[string]int{"one": 1, "two": 2} [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
codec_test.go | 952 it0.Ignore_m = map[string]int{"one": 1, "two": 2} 1008 ****i.M = map[string]int{"one": 1, "two": 2, "three": 3} 1023 if len(d.M) != 3 || d.M["one"] != 1 || d.M["two"] != 2 || d.M["three"] != 3 { 1300 map[string]int{"one": 1, "two": 2}, 1344 dt.M = map[string]int{"one": 1, "two": 2} [all...] |