OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newi
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/webkit/
JWebCoreJavaBridge.java
176
int
newi
= (ir == -1) ? in : (in == -1 ? ir : (ir < in ? ir
local
178
if (
newi
> i) {
179
buffer.append(value.subSequence(i,
newi
));
180
} else if (
newi
== -1) {
184
i =
newi
+ 1;
/packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java
606
int
newI
= i + delta;
607
while (0 <=
newI
&&
newI
< count) {
608
View newV = views.get(
newI
);
612
newI
+= delta;
[
all
...]
/frameworks/compile/libbcc/runtime/BlocksRuntime/
runtime.c
58
static __inline bool OSAtomicCompareAndSwapInt(int oldi, int
newi
, int volatile *dst) {
60
int original = InterlockedCompareExchange(dst,
newi
, oldi);
77
static __inline bool OSAtomicCompareAndSwapInt(int oldi, int
newi
, int volatile *dst) {
78
return __sync_bool_compare_and_swap(dst, oldi,
newi
);
Completed in 103 milliseconds