HomeSort by relevance Sort by last modified time
    Searched defs:blank (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Letters.java 92 // search last blank character before this word
93 LetterQuad blank = l; local
94 while (!blank.isBlank()) {
95 if (blank.isLineStart() || blank.isHead()) {
98 blank = null;
101 blank = blank.getPrevious();
103 if (blank != null) {
104 blank.setEndOfLine();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 105 org.eclipse.jface.text.Document blank = new org.eclipse.jface.text.Document(); local
106 String lineSeparator = TextUtilities.getDefaultLineDelimiter(blank);
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 188 int blank = buffer.indexOf(' ', i, indexTo); local
189 if (blank == -1) {
190 blank = indexTo;
194 minor = Integer.parseInt(buffer.substringTrimmed(i, blank));
201 cursor.updatePos(blank);
319 int blank = buffer.indexOf(' ', i, indexTo); local
320 if (blank < 0) {
324 String method = buffer.substringTrimmed(i, blank);
325 cursor.updatePos(blank);
330 blank = buffer.indexOf(' ', i, indexTo)
415 int blank = buffer.indexOf(' ', i, indexTo); local
    [all...]
  /system/core/libdiskconfig/
config_mbr.c 269 struct part_info blank; local
271 memset(&blank, 0, sizeof(struct part_info));
272 if (!(temp_wr = mk_pri_pentry(dinfo, &blank, cnt, &cur_lba))) {
273 ALOGE("Cannot create blank partition %d.", cnt);
  /external/chromium/chrome/common/net/gaia/
gaia_authenticator.cc 362 AuthResults blank; local
363 auth_results_ = blank;
  /frameworks/native/libs/gui/
ISurfaceComposer.cpp 199 virtual void blank(const sp<IBinder>& display) function in class:android::BpSurfaceComposer
204 remote()->transact(BnSurfaceComposer::BLANK, data, &reply);
312 case BLANK: {
315 blank(display);
  /hardware/libhardware/include/hardware/
hwcomposer.h 512 * blank(..., blank)
515 * Turns the screen off when blank is nonzero, on when blank is zero.
516 * Multiple sequential calls with the same blank value must be supported.
522 int (*blank)(struct hwc_composer_device_1* dev, int disp, int blank); member in struct:hwc_composer_device_1
  /libcore/luni/src/main/java/libcore/net/http/
HttpResponseCache.java 362 * with a blank line, and then a line containing the cipher suite. Next
388 String blank = reader.readLine(); local
389 if (!blank.isEmpty()) {
390 throw new IOException("expected \"\" but was \"" + blank + "\"");
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpResponseCache.java 381 * with a blank line, and then a line containing the cipher suite. Next
407 String blank = reader.readLine(); local
408 if (!blank.isEmpty()) {
409 throw new IOException("expected \"\" but was \"" + blank + "\"");
  /external/openssl/crypto/des/
des.c 863 unsigned int blank=(unsigned int)'\n'-' '; local
868 if (n == blank)
899 if (w == blank) k=1;
900 if (x == blank) k=2;
901 if (y == blank) k=3;
902 if (z == blank) k=4;
  /external/qemu/hw/
goldfish_fb.c 58 uint32_t blank : 1; member in struct:goldfish_fb_state
83 qemu_put_byte(f, s->blank);
121 s->blank = qemu_get_byte(f);
516 if (s->blank)
627 s->blank = val;
  /external/v8/src/
execution.cc 500 ThreadLocal blank; local
508 thread_local_ = blank;
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
DiskLruCache.java 133 * the application's version, the value count, and a blank line.
346 String blank = readAsciiLine(in); local
351 || !"".equals(blank)) {
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 119 // the application's version, the value count, and a blank line.
237 String blank = reader.readLine(); local
240 .equals(blank)) {
248 + blank
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.c 287 int blank; local
291 blank=0;
302 blank=1;
304 blank=0;
306 while(blank);
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 119 * the application's version, the value count, and a blank line.
236 String blank = reader.readLine(); local
241 || !"".equals(blank)) {
243 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 967 final HTMLTable.IRow blank = table.newRow (); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/src/
locale.cpp 737 const ctype_base::mask ctype_base::blank; member in class:ctype_base
1117 if (m & blank) result |= (iswblank_l(c, __l) != 0);
1173 if (m & blank && iswblank_l(*low, __l)) break;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 480 String blank = ""; local
482 mTextView.setText(blank, BufferType.SPANNABLE);
514 mTextView.setText(blank, BufferType.SPANNABLE);
523 assertEquals(blank.length(), mTextView.getSelectionEnd());
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp 517 // FIXME: currently we don't get blank/unblank requests
2117 void SurfaceFlinger::blank(const sp<IBinder>& display) { function in class:android::SurfaceFlinger
    [all...]
  /bionic/libc/kernel/common/linux/
cdrom.h 731 __u8 blank : 1; member in struct:__anon290
750 __u8 blank : 1; member in struct:__anon290
  /development/ndk/platforms/android-3/include/linux/
cdrom.h 673 __u8 blank : 1; member in struct:__anon968
688 __u8 blank : 1; member in struct:__anon968
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cdrom.h 862 __u8 blank : 1; member in struct:__anon26311
877 __u8 blank : 1; member in struct:__anon26311
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cdrom.h 862 __u8 blank : 1; member in struct:__anon27902
877 __u8 blank : 1; member in struct:__anon27902
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cdrom.h 862 __u8 blank : 1; member in struct:__anon29416
877 __u8 blank : 1; member in struct:__anon29416

Completed in 1044 milliseconds

1 2 3