HomeSort by relevance Sort by last modified time
    Searched refs:lastSpace (Results 1 - 4 of 4) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 112 int lastSpace = TextUtils.lastIndexOf(text, ' ', currentOffset + fittingChars - 1);
113 if (lastSpace == -1) {
115 lastSpace = currentOffset + fittingChars - 1;
117 spannedText.replace(lastSpace, lastSpace + 1, newline, 0, 1);
119 currentOffset = lastSpace + 1;
  /development/samples/NotePad/src/com/example/android/notepad/
NoteEditor.java 546 int lastSpace = title.lastIndexOf(' ');
547 if (lastSpace > 0) {
548 title = title.substring(0, lastSpace);
  /frameworks/base/core/jni/
android_net_wifi_Wifi.cpp 396 char* lastSpace = strrchr(reply, ' ');
397 // lastSpace should be preceded by "rssi" and followed by the value
398 if (lastSpace && !strncasecmp(lastSpace - 4, "rssi", 4)) {
399 sscanf(lastSpace + 1, "%d", &rssi);
  /external/webkit/Source/WebCore/rendering/
RenderBlockLineLayout.cpp     [all...]

Completed in 185 milliseconds