am 65534ffc: am d0c383e1: am 5a4949c2: Merge "Force inlining Correction::isSingleQuote" into jb-mr2-dev
* commit '65534ffc4a539e09d35ed7a1be1e87186009dd19': Force inlining Correction::isSingleQuotemain
commit
96cb244d7b
|
@ -37,7 +37,7 @@ LOCAL_CFLAGS += -Werror -Wall -Wextra -Weffc++ -Wformat=2 -Wcast-qual -Wcast-ali
|
||||||
-Wwrite-strings -Wfloat-equal -Wpointer-arith -Winit-self -Wredundant-decls -Wno-system-headers
|
-Wwrite-strings -Wfloat-equal -Wpointer-arith -Winit-self -Wredundant-decls -Wno-system-headers
|
||||||
|
|
||||||
ifeq ($(TARGET_ARCH), arm)
|
ifeq ($(TARGET_ARCH), arm)
|
||||||
ifneq ($(TARGET_GCC_VERSION), 4.7)
|
ifeq ($(TARGET_GCC_VERSION), 4.6)
|
||||||
LOCAL_CFLAGS += -Winline
|
LOCAL_CFLAGS += -Winline
|
||||||
endif # TARGET_GCC_VERSION
|
endif # TARGET_GCC_VERSION
|
||||||
endif # TARGET_ARCH
|
endif # TARGET_ARCH
|
||||||
|
|
|
@ -307,7 +307,7 @@ inline void Correction::startToTraverseAllNodes() {
|
||||||
mNeedsToTraverseAllNodes = true;
|
mNeedsToTraverseAllNodes = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool Correction::isSingleQuote(const int c) {
|
AK_FORCE_INLINE bool Correction::isSingleQuote(const int c) {
|
||||||
const int userTypedChar = mProximityInfoState.getPrimaryCodePointAt(mInputIndex);
|
const int userTypedChar = mProximityInfoState.getPrimaryCodePointAt(mInputIndex);
|
||||||
return (c == KEYCODE_SINGLE_QUOTE && userTypedChar != KEYCODE_SINGLE_QUOTE);
|
return (c == KEYCODE_SINGLE_QUOTE && userTypedChar != KEYCODE_SINGLE_QUOTE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue