/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_map.py | 8 As a special case, map(None, X) is changed into list(X). (This is 12 We avoid the transformation (except for the special case mentioned
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_commands.py | 52 # Special attributes supported: 57 [.+@]? # It may have special attributes.
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_map.py | 8 As a special case, map(None, X) is changed into list(X). (This is 12 We avoid the transformation (except for the special case mentioned
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_commands.py | 52 # Special attributes supported: 57 [.+@]? # It may have special attributes.
|
/prebuilts/go/darwin-x86/src/math/ |
atan2.go | 11 // Special cases are (in order): 32 // special cases
|
pow_s390x.s | 150 // Special cases are (in order): 173 // special case 177 // special case Pow(1, y) = 1 for any y 181 // special case Pow(x, 1) = x for any x 185 // special case Pow(x, NaN) = NaN for any x 211 // special case Pow(+Inf, y) = +Inf for y > 0 221 // special case Pow(-1, ħInf) = 1 228 // special case Pow(+0, -Inf) = +Inf 232 // special case Pow(+0, y < 0) = +Inf 239 // special case Pow(-0, -Inf) = +In [all...] |
sincos.go | 13 // Special cases are: 24 // special cases
|
/prebuilts/go/linux-x86/src/math/ |
atan2.go | 11 // Special cases are (in order): 32 // special cases
|
pow_s390x.s | 150 // Special cases are (in order): 173 // special case 177 // special case Pow(1, y) = 1 for any y 181 // special case Pow(x, 1) = x for any x 185 // special case Pow(x, NaN) = NaN for any x 211 // special case Pow(+Inf, y) = +Inf for y > 0 221 // special case Pow(-1, ħInf) = 1 228 // special case Pow(+0, -Inf) = +Inf 232 // special case Pow(+0, y < 0) = +Inf 239 // special case Pow(-0, -Inf) = +In [all...] |
sincos.go | 13 // Special cases are: 24 // special cases
|
/prebuilts/jdk/jdk9/darwin-x86/legal/java.desktop/ |
harfbuzz.md | 36 DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 58 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
/prebuilts/jdk/jdk9/linux-x86/legal/java.desktop/ |
harfbuzz.md | 36 DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 58 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_map.py | 8 As a special case, map(None, X) is changed into list(X). (This is 12 We avoid the transformation (except for the special case mentioned
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_commands.py | 52 # Special attributes supported: 57 [.+@]? # It may have special attributes.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_map.py | 8 As a special case, map(None, X) is changed into list(X). (This is 12 We avoid the transformation (except for the special case mentioned
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_commands.py | 52 # Special attributes supported: 57 [.+@]? # It may have special attributes.
|
/system/netd/include/ |
Permission.h | 24 // app must hold to be allowed to use the network. PERMISSION_NONE means "no special permission is 25 // held by the app" or "no special permission is required to use the network".
|
/toolchain/binutils/binutils-2.27/gas/doc/ |
c-epiphany.texi | 47 * Epiphany-Chars:: Special Characters 51 @subsection Special Characters
|
c-ip2k.texi | 50 * IP2K-Chars:: Special Characters 54 @subsection Special Characters
|
c-mt.texi | 49 * MT-Chars:: Special Characters 53 @subsection Special Characters
|
c-ns32k.texi | 52 * NS32K-Chars:: Special Characters 56 @subsection Special Characters
|
/toolchain/binutils/binutils-2.27/libiberty/ |
fnmatch.txh | 15 the following character not special, so for example you could match 31 Do not interpret backslashes as quoting the following special character.
|
/external/v8/src/compiler/ |
linkage.h | 411 // A special {Parameter} index for Stub Calls that represents context. 413 return parameter_count + 0; // Parameter (arity + 0) is special. 416 // A special {Parameter} index for JSCalls that represents the new target. 418 return parameter_count + 0; // Parameter (arity + 0) is special. 421 // A special {Parameter} index for JSCalls that represents the argument count. 423 return parameter_count + 1; // Parameter (arity + 1) is special. 426 // A special {Parameter} index for JSCalls that represents the context. 428 return parameter_count + 2; // Parameter (arity + 2) is special. 431 // A special {Parameter} index for JSCalls that represents the closure. 434 // A special {OsrValue} index to indicate the context spill slot [all...] |
/prebuilts/go/darwin-x86/src/unicode/ |
letter.go | 52 // means the character is in the corresponding case. There is a special 283 // ToUpper maps the rune to upper case giving priority to the special mapping. 284 func (special SpecialCase) ToUpper(r rune) rune { 285 r1 := to(UpperCase, r, []CaseRange(special)) 292 // ToTitle maps the rune to title case giving priority to the special mapping. 293 func (special SpecialCase) ToTitle(r rune) rune { 294 r1 := to(TitleCase, r, []CaseRange(special)) 301 // ToLower maps the rune to lower case giving priority to the special mapping. 302 func (special SpecialCase) ToLower(r rune) rune { 303 r1 := to(LowerCase, r, []CaseRange(special)) [all...] |
/prebuilts/go/linux-x86/src/unicode/ |
letter.go | 52 // means the character is in the corresponding case. There is a special 283 // ToUpper maps the rune to upper case giving priority to the special mapping. 284 func (special SpecialCase) ToUpper(r rune) rune { 285 r1 := to(UpperCase, r, []CaseRange(special)) 292 // ToTitle maps the rune to title case giving priority to the special mapping. 293 func (special SpecialCase) ToTitle(r rune) rune { 294 r1 := to(TitleCase, r, []CaseRange(special)) 301 // ToLower maps the rune to lower case giving priority to the special mapping. 302 func (special SpecialCase) ToLower(r rune) rune { 303 r1 := to(LowerCase, r, []CaseRange(special)) [all...] |