OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:after
(Results
1 - 25
of
3332
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Lexer/
msdos-cpm-eof.c
8
I am random garbage
after
^Z
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
addsw-bad.l
2
[^:]*:5: Error: invalid constant \(496\)
after
fixup
3
[^:]*:6: Error: invalid constant \(496\)
after
fixup
/packages/inputmethods/LatinIME/native/jni/src/utils/
autocorrection_threshold_utils.h
27
const int *
after
, const int afterLength, const int score);
28
static int editDistance(const int *before, const int beforeLength, const int *
after
,
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
noat-2.l
2
.*\.s:2: Error: macro used \$at
after
"\.set noat"
noat-3.l
2
.*\.s:2: Error: macro used \$at
after
"\.set noat"
noat-4.l
2
.*\.s:2: Error: macro used \$at
after
"\.set noat"
noat-5.l
2
.*\.s:2: Error: macro used \$at
after
"\.set noat"
noat-6.l
2
.*\.s:2: Error: macro used \$at
after
"\.set noat"
noat-7.l
2
.*\.s:2: Error: macro used \$at
after
"\.set noat"
at-2.l
2
.*\.s:4: Error: macro used \$at
after
".set noat"
3
.*\.s:5: Error: macro used \$at
after
".set noat"
4
.*\.s:6: Error: macro used \$at
after
".set noat"
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
dir-junk.d
1
#name: C6X junk
after
directives
/libcore/ojluni/src/main/java/java/util/function/
Consumer.java
53
* operation followed by the {@code
after
} operation. If performing either
56
* the {@code
after
} operation will not be performed.
58
* @param
after
the operation to perform
after
this operation
60
* operation followed by the {@code
after
} operation
61
* @throws NullPointerException if {@code
after
} is null
63
default Consumer<T> andThen(Consumer<? super T>
after
) {
64
Objects.requireNonNull(
after
);
65
return (T t) -> { accept(t);
after
.accept(t); };
DoubleConsumer.java
53
* operation followed by the {@code
after
} operation. If performing either
56
* the {@code
after
} operation will not be performed.
58
* @param
after
the operation to perform
after
this operation
60
* operation followed by the {@code
after
} operation
61
* @throws NullPointerException if {@code
after
} is null
63
default DoubleConsumer andThen(DoubleConsumer
after
) {
64
Objects.requireNonNull(
after
);
65
return (double t) -> { accept(t);
after
.accept(t); };
IntConsumer.java
53
* operation followed by the {@code
after
} operation. If performing either
56
* the {@code
after
} operation will not be performed.
58
* @param
after
the operation to perform
after
this operation
60
* operation followed by the {@code
after
} operation
61
* @throws NullPointerException if {@code
after
} is null
63
default IntConsumer andThen(IntConsumer
after
) {
64
Objects.requireNonNull(
after
);
65
return (int t) -> { accept(t);
after
.accept(t); };
LongConsumer.java
53
* operation followed by the {@code
after
} operation. If performing either
56
* the {@code
after
} operation will not be performed.
58
* @param
after
the operation to perform
after
this operation
60
* operation followed by the {@code
after
} operation
61
* @throws NullPointerException if {@code
after
} is null
63
default LongConsumer andThen(LongConsumer
after
) {
64
Objects.requireNonNull(
after
);
65
return (long t) -> { accept(t);
after
.accept(t); };
BiConsumer.java
57
* operation followed by the {@code
after
} operation. If performing either
60
* the {@code
after
} operation will not be performed.
62
* @param
after
the operation to perform
after
this operation
64
* operation followed by the {@code
after
} operation
65
* @throws NullPointerException if {@code
after
} is null
67
default BiConsumer<T, U> andThen(BiConsumer<? super T, ? super U>
after
) {
68
Objects.requireNonNull(
after
);
72
after
.accept(l, r);
BiFunction.java
57
* its input, and then applies the {@code
after
} function to the result.
61
* @param <V> the type of output of the {@code
after
} function, and of the
63
* @param
after
the function to apply
after
this function is applied
65
* applies the {@code
after
} function
66
* @throws NullPointerException if
after
is null
68
default <V> BiFunction<T, U, V> andThen(Function<? super R, ? extends V>
after
) {
69
Objects.requireNonNull(
after
);
70
return (T t, U u) ->
after
.apply(apply(t, u));
DoubleUnaryOperator.java
71
* its input, and then applies the {@code
after
} operator to the result.
75
* @param
after
the operator to apply
after
this operator is applied
77
* applies the {@code
after
} operator
78
* @throws NullPointerException if
after
is null
82
default DoubleUnaryOperator andThen(DoubleUnaryOperator
after
) {
83
Objects.requireNonNull(
after
);
84
return (double t) ->
after
.applyAsDouble(applyAsDouble(t));
IntUnaryOperator.java
71
* its input, and then applies the {@code
after
} operator to the result.
75
* @param
after
the operator to apply
after
this operator is applied
77
* applies the {@code
after
} operator
78
* @throws NullPointerException if
after
is null
82
default IntUnaryOperator andThen(IntUnaryOperator
after
) {
83
Objects.requireNonNull(
after
);
84
return (int t) ->
after
.applyAsInt(applyAsInt(t));
LongUnaryOperator.java
71
* its input, and then applies the {@code
after
} operator to the result.
75
* @param
after
the operator to apply
after
this operator is applied
77
* applies the {@code
after
} operator
78
* @throws NullPointerException if
after
is null
82
default LongUnaryOperator andThen(LongUnaryOperator
after
) {
83
Objects.requireNonNull(
after
);
84
return (long t) ->
after
.applyAsLong(applyAsLong(t));
/packages/inputmethods/LatinIME/native/jni/tests/utils/
autocorrection_threshold_utils_test.cpp
27
const std::vector<int> &
after
) {
29
&before[0], before.size(), &
after
[0],
after
.size());
/system/bt/tools/scripts/
change_types.sh
55
after
=${tt#*:}
58
sed -i -e "s/\b${before}/${
after
}/g; s/${
after
}_/${before}_/g;" "$1"
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-spu/
fixup.s
4
.global
after
16
.long _end, 0, _start,
after
22
after
:
label
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
mpx-inval-1.l
2
.*:6: Error: expecting valid branch instruction
after
`bnd'
3
.*:7: Error: expecting valid branch instruction
after
`bnd'
4
.*:8: Error: expecting valid branch instruction
after
`bnd'
6
.*:9: Error: expecting valid branch instruction
after
`bnd'
8
.*:10: Error: expecting valid branch instruction
after
`bnd'
9
.*:11: Error: expecting valid branch instruction
after
`bnd'
10
.*:14: Error: expecting valid branch instruction
after
`bnd'
11
.*:15: Error: expecting valid branch instruction
after
`bnd'
12
.*:16: Error: expecting valid branch instruction
after
`bnd'
13
.*:17: Error: expecting valid branch instruction
after
`bnd
[
all
...]
/external/skia/infra/bots/
win_toolchain_utils.py
20
def _replace_prefix(val, before,
after
):
23
return val.replace(before,
after
, 1)
27
def _replace(val, before,
after
):
30
return _replace_prefix(val, before,
after
)
32
return [_replace(elem, before,
after
) for elem in val]
34
return {_replace(k, before,
after
):
35
_replace(v, before,
after
) for k, v in val.iteritems()}
39
def _replace_in_file(filename, before,
after
):
46
new_contents = _replace(contents, before,
after
)
Completed in 293 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>