HomeSort by relevance Sort by last modified time
    Searched refs:BufferType (Results 1 - 25 of 40) sorted by null

1 2

  /development/apps/Development/src/com/android/development/
LogTextBox.java 69 public void setText(CharSequence text, BufferType type) {
70 super.setText(text, BufferType.EDITABLE);
  /development/samples/ApiDemos/src/com/example/android/apis/text/
LogTextBox.java 61 public void setText(CharSequence text, BufferType type) {
62 super.setText(text, BufferType.EDITABLE);
  /external/wpa_supplicant/
tls_schannel.c 237 outbufs[0].BufferType = SECBUFFER_TOKEN;
351 inbufs[0].BufferType = SECBUFFER_TOKEN;
356 inbufs[1].BufferType = SECBUFFER_EMPTY;
365 outbufs[0].BufferType = SECBUFFER_TOKEN;
387 (int) inbufs[0].BufferType, (int) inbufs[1].cbBuffer,
388 (int) inbufs[1].BufferType,
425 if (inbufs[1].BufferType == SECBUFFER_EXTRA) {
461 if (inbufs[1].BufferType == SECBUFFER_EXTRA) {
520 bufs[0].BufferType = SECBUFFER_STREAM_HEADER;
525 bufs[1].BufferType = SECBUFFER_DATA
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_schannel.c 237 outbufs[0].BufferType = SECBUFFER_TOKEN;
351 inbufs[0].BufferType = SECBUFFER_TOKEN;
356 inbufs[1].BufferType = SECBUFFER_EMPTY;
365 outbufs[0].BufferType = SECBUFFER_TOKEN;
387 (int) inbufs[0].BufferType, (int) inbufs[1].cbBuffer,
388 (int) inbufs[1].BufferType,
425 if (inbufs[1].BufferType == SECBUFFER_EXTRA) {
461 if (inbufs[1].BufferType == SECBUFFER_EXTRA) {
520 bufs[0].BufferType = SECBUFFER_STREAM_HEADER;
525 bufs[1].BufferType = SECBUFFER_DATA
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_schannel.c 236 outbufs[0].BufferType = SECBUFFER_TOKEN;
348 inbufs[0].BufferType = SECBUFFER_TOKEN;
353 inbufs[1].BufferType = SECBUFFER_EMPTY;
362 outbufs[0].BufferType = SECBUFFER_TOKEN;
384 (int) inbufs[0].BufferType, (int) inbufs[1].cbBuffer,
385 (int) inbufs[1].BufferType,
419 if (inbufs[1].BufferType == SECBUFFER_EXTRA) {
452 if (inbufs[1].BufferType == SECBUFFER_EXTRA) {
504 bufs[0].BufferType = SECBUFFER_STREAM_HEADER;
509 bufs[1].BufferType = SECBUFFER_DATA
    [all...]
  /external/skia/gpu/src/
GrBufferAllocPool.h 81 enum BufferType {
90 * @param bufferType The type of buffers to create.
103 BufferType bufferType,
180 BufferType fBufferType;
  /cts/tests/tests/widget/src/android/widget/cts/
EditTextTest.java 29 import android.widget.TextView.BufferType;
116 args = {java.lang.CharSequence.class, android.widget.TextView.BufferType.class}
122 editText.setText("android", BufferType.NORMAL);
125 editText.setText("", BufferType.SPANNABLE);
128 editText.setText(null, BufferType.EDITABLE);
142 editText.setText(string, BufferType.EDITABLE);
178 editText.setText(string, BufferType.EDITABLE);
222 editText.setText(string, BufferType.EDITABLE);
227 editText.setText("", BufferType.EDITABLE);
232 editText.setText(null, BufferType.EDITABLE)
    [all...]
TextViewTest.java 97 import android.widget.TextView.BufferType;
287 mTextView.setText(LONG_TEXT, BufferType.EDITABLE);
418 mTextView.setText(text1, BufferType.EDITABLE);
436 mTextView.setText(text2, BufferType.EDITABLE);
667 mTextView.setText(blank, BufferType.SPANNABLE);
677 mTextView.setText(content, BufferType.SPANNABLE);
699 mTextView.setText(blank, BufferType.SPANNABLE);
771 mTextView.setText(text, BufferType.EDITABLE);
    [all...]
  /frameworks/base/core/java/android/widget/
EditText.java 77 public void setText(CharSequence text, BufferType type) {
78 super.setText(text, BufferType.EDITABLE);
  /external/chromium/third_party/libjingle/source/talk/base/
schanneladapter.cc 71 << ", " << FindLabel(sb.BufferType & ~SECBUFFER_ATTRMASK,
212 sb_in[0].BufferType = SECBUFFER_TOKEN;
265 if (buffer.BufferType == SECBUFFER_EXTRA) {
273 if (buffer.BufferType == SECBUFFER_EXTRA) {
275 } else if (buffer.BufferType == SECBUFFER_TOKEN) {
340 in_buf[0].BufferType = SECBUFFER_DATA;
353 if (in_buf[i].BufferType == SECBUFFER_DATA) {
358 } else if (in_buf[i].BufferType == SECBUFFER_EXTRA) {
501 out_buf[0].BufferType = SECBUFFER_STREAM_HEADER;
503 out_buf[1].BufferType = SECBUFFER_DATA
    [all...]
sec_buffer.h 67 this->BufferType = SECBUFFER_EMPTY;
  /cts/tests/tests/text/src/android/text/method/cts/
BaseKeyListenerTest.java 39 import android.widget.TextView.BufferType;
94 mTextView.setText(content, BufferType.EDITABLE);
134 mTextView.setText(content, BufferType.EDITABLE);
176 mTextView.setText(str, BufferType.EDITABLE);
TextKeyListenerTest.java 42 import android.widget.TextView.BufferType;
132 mTextView.setText(text, BufferType.EDITABLE);
213 mTextView.setText(text, BufferType.EDITABLE);
275 mTextView.setText("", BufferType.EDITABLE);
314 mTextView.setText("", BufferType.EDITABLE);
MultiTapKeyListenerTest.java 37 import android.widget.TextView.BufferType;
92 mTextView.setText(text, BufferType.EDITABLE);
218 mTextView.setText("", BufferType.EDITABLE);
NumberKeyListenerTest.java 38 import android.widget.TextView.BufferType;
182 mTextView.setText(text, BufferType.EDITABLE);
QwertyKeyListenerTest.java 38 import android.widget.TextView.BufferType;
171 mTextView.setText("", BufferType.EDITABLE);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PersistentState.java 102 mSaved.setText(restoredText, TextView.BufferType.EDITABLE);
ReceiveResult.java 91 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
FragmentReceiveResult.java 89 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
  /external/chromium/net/socket/
ssl_client_socket_win.cc 613 send_buffer_.BufferType = SECBUFFER_TOKEN;
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/format/
PrefixHighligherTest.java 44 mView.setText("", TextView.BufferType.SPANNABLE);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentReceiveResultSupport.java 91 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
  /packages/apps/Contacts/tests/src/com/android/contacts/list/
ContactListItemViewTest.java 116 view.getNameTextView().setText("", TextView.BufferType.SPANNABLE);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 81 mTv.setText(text, TextView.BufferType.SPANNABLE);
93 mTv.setText(text, TextView.BufferType.SPANNABLE);
  /external/chromium/net/http/
http_auth_sspi_win.cc 331 in_buffer.BufferType = SECBUFFER_TOKEN;
352 out_buffer.BufferType = SECBUFFER_TOKEN;

Completed in 1876 milliseconds

1 2