OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:that
(Results
2276 - 2300
of
189771
) sorted by null
<<
91
92
93
94
95
96
97
98
99
100
>>
/prebuilts/go/darwin-x86/src/runtime/testdata/testprog/
signal.go
3
// license
that
can be found in the LICENSE file.
22
// systems (see issue 14063). It's possible
that
the signal is
24
// and exiting before
that
thread runs again. Give the program
/prebuilts/go/darwin-x86/test/chan/
sendstmt.go
5
// license
that
can be found in the LICENSE file.
7
// Test various parsing cases
that
are a little
8
// different now
that
send is a statement, not an expression.
/prebuilts/go/darwin-x86/test/
char_lit1.go
5
// license
that
can be found in the LICENSE file.
7
// Verify
that
illegal character literals are detected.
13
// check
that
surrogate pair elements are invalid
/prebuilts/go/darwin-x86/test/fixedbugs/
issue14136.go
5
// license
that
can be found in the LICENSE file.
7
// Test
that
> 10 non-syntax errors on the same line
9
//
that
we see the initialization error for variable
issue15252.go
5
// license
that
can be found in the LICENSE file.
7
// This test makes sure
that
we use all 64 bits of an
8
// index, even on 32 bit machines. It also tests
that
nacl
issue18595.go
5
// license
that
can be found in the LICENSE file.
7
// This test makes sure
that
itabs are unique.
8
// More explicitly, we require
that
only one itab structure exists for the pair of
/prebuilts/go/linux-x86/misc/cgo/errors/src/
malloc.go
3
// license
that
can be found in the LICENSE file.
5
// Test
that
C.malloc does not return nil.
22
// 0xffffffffffffffff bytes, so pass a different value
that
/prebuilts/go/linux-x86/misc/cgo/test/issue9400/
asm_mips64x.s
3
// license
that
can be found in the LICENSE file.
13
// Rewind stack pointer so anything
that
happens on the stack
27
OR R2, R2, R2 // hint
that
we're in a spin loop
asm_mipsx.s
3
// license
that
can be found in the LICENSE file.
11
// Rewind stack pointer so anything
that
happens on the stack
25
OR R2, R2, R2 // hint
that
we're in a spin loop
asm_ppc64x.s
3
// license
that
can be found in the LICENSE file.
11
// Rewind stack pointer so anything
that
happens on the stack
25
// Hint
that
we're in a spin loop
/prebuilts/go/linux-x86/src/os/
executable.go
3
// license
that
can be found in the LICENSE file.
7
// Executable returns the path name for the executable
that
started
8
// the current process. There is no guarantee
that
the path is still
/prebuilts/go/linux-x86/src/runtime/cgo/
sigaction.go
3
// license
that
can be found in the LICENSE file.
12
// When using cgo, call the C library for sigaction, so
that
we call into
15
// C/C++ code; this permits
that
code to see the Go runtime's existing signal
/prebuilts/go/linux-x86/src/runtime/
norace_linux_test.go
3
// license
that
can be found in the LICENSE file.
5
// The file contains tests
that
cannot run under race detector for some reason.
25
//
that
require a valid G/M.
/prebuilts/go/linux-x86/src/runtime/testdata/testprog/
signal.go
3
// license
that
can be found in the LICENSE file.
22
// systems (see issue 14063). It's possible
that
the signal is
24
// and exiting before
that
thread runs again. Give the program
/prebuilts/go/linux-x86/test/chan/
sendstmt.go
5
// license
that
can be found in the LICENSE file.
7
// Test various parsing cases
that
are a little
8
// different now
that
send is a statement, not an expression.
/prebuilts/go/linux-x86/test/
char_lit1.go
5
// license
that
can be found in the LICENSE file.
7
// Verify
that
illegal character literals are detected.
13
// check
that
surrogate pair elements are invalid
/prebuilts/go/linux-x86/test/fixedbugs/
issue14136.go
5
// license
that
can be found in the LICENSE file.
7
// Test
that
> 10 non-syntax errors on the same line
9
//
that
we see the initialization error for variable
issue15252.go
5
// license
that
can be found in the LICENSE file.
7
// This test makes sure
that
we use all 64 bits of an
8
// index, even on 32 bit machines. It also tests
that
nacl
issue18595.go
5
// license
that
can be found in the LICENSE file.
7
// This test makes sure
that
itabs are unique.
8
// More explicitly, we require
that
only one itab structure exists for the pair of
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
instruction.cpp
55
Instruction::Instruction(Instruction&&
that
)
56
: opcode_(
that
.opcode_),
57
type_id_(
that
.type_id_),
58
result_id_(
that
.result_id_),
59
operands_(std::move(
that
.operands_)),
60
dbg_line_insts_(std::move(
that
.dbg_line_insts_)) {}
62
Instruction& Instruction::operator=(Instruction&&
that
) {
63
opcode_ =
that
.opcode_;
64
type_id_ =
that
.type_id_;
65
result_id_ =
that
.result_id_
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longintrepr.h
18
PyLong_BASE*PyLong_BASE-1. x_sub assumes
that
'digit' is an unsigned type,
19
and
that
overflow is handled by taking the result modulo 2**N for some N >
23
- long_pow() requires
that
PyLong_SHIFT be divisible by 5
25
- PyLong_{As,From}ByteArray require
that
PyLong_SHIFT be at least 8
27
- long_hash() requires
that
PyLong_SHIFT is *strictly* less than the number
31
- the long <-> size_t/Py_ssize_t conversion functions expect
that
34
- the marshal code currently expects
that
PyLong_SHIFT is a multiple of 15
50
#define _PyLong_DECIMAL_SHIFT 9 /* max(e such
that
10**e fits in a digit) */
58
#define _PyLong_DECIMAL_SHIFT 4 /* max(e such
that
10**e fits in a digit) */
72
#error "longobject.c requires
that
PyLong_SHIFT be divisible by 5
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sample_doctest.py
1
"""This is a sample module
that
doesn't really test anything all
that
6
It's important
that
the numbers remain constant as another test is
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
longintrepr.h
18
PyLong_BASE*PyLong_BASE-1. x_sub assumes
that
'digit' is an unsigned type,
19
and
that
overflow is handled by taking the result modulo 2**N for some N >
23
- long_pow() requires
that
PyLong_SHIFT be divisible by 5
25
- PyLong_{As,From}ByteArray require
that
PyLong_SHIFT be at least 8
27
- long_hash() requires
that
PyLong_SHIFT is *strictly* less than the number
31
- the long <-> size_t/Py_ssize_t conversion functions expect
that
34
- the marshal code currently expects
that
PyLong_SHIFT is a multiple of 15
50
#define _PyLong_DECIMAL_SHIFT 9 /* max(e such
that
10**e fits in a digit) */
58
#define _PyLong_DECIMAL_SHIFT 4 /* max(e such
that
10**e fits in a digit) */
72
#error "longobject.c requires
that
PyLong_SHIFT be divisible by 5
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sample_doctest.py
1
"""This is a sample module
that
doesn't really test anything all
that
6
It's important
that
the numbers remain constant as another test is
/prebuilts/sdk/current/support/emoji/res/values/
values.xml
8
<!-- Replace strategy
that
uses the value given in EmojiCompat.Config. Default
11
<!-- Replace strategy to add EmojiSpans for all emoji
that
were found. -->
13
<!-- Replace strategy to add EmojiSpans only for emoji
that
do not exist in the
Completed in 1464 milliseconds
<<
91
92
93
94
95
96
97
98
99
100
>>