Searched defs:buf (Results 226 - 230 of 230) sorted by relevance

12345678910

/frameworks/base/tools/aapt/
H A DResourceTable.cpp417 char buf[11]; local
418 sprintf(buf, "%d", l10n_required);
420 String16(""), String16("^l10n"), String16(buf), NULL, NULL);
1067 char buf[64]; local
1068 sprintf(buf, "%d", (int)(end-curIdent+1));
1069 curName.append(String16(buf));
2381 char buf[1024]; local
2384 retval = vsnprintf(buf, sizeof(buf), fmt, ap);
2387 buf, a
[all...]
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_GLImpl.cpp172 void* buf = _env->GetDirectBufferAddress(buffer); local
173 if (buf) {
176 buf = ((char*) buf) + (position << elementSizeShift);
182 buf = getPointer(_env, buffer, &array, &remaining, &offset);
184 releasePointer(_env, array, buf, 0);
186 buf = (char*)buf + offset;
192 return buf;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp4485 char buf[128]; local
4491 buf[i++] = *s++;
4498 if (buf[0] < '0' && buf[0] > '9' && buf[0] != '.') {
4502 buf[i] = 0;
4504 float f = strtof(buf, (char**)&end);
/frameworks/base/core/java/android/widget/
H A DTextView.java7747 void spanChange(Spanned buf, Object what, int oldStart, int newStart, int oldEnd, int newEnd) { argument
7761 invalidateCursor(Selection.getSelectionStart(buf), oldStart, newStart);
7773 int end = Selection.getSelectionEnd(buf);
7782 if ((buf.getSpanFlags(what)&Spanned.SPAN_INTERMEDIATE) == 0) {
7784 newSelStart = Selection.getSelectionStart(buf);
7787 newSelEnd = Selection.getSelectionEnd(buf);
7808 if (MetaKeyKeyListener.isMetaTracker(buf, what)) {
7810 if (ims != null && MetaKeyKeyListener.isSelectingMetaTracker(buf, what)) {
7814 if (Selection.getSelectionStart(buf) >= 0) {
9251 public void getChars(int start, int end, char[] buf, in argument
9490 onSpanChanged(Spannable buf, Object what, int s, int e, int st, int en) argument
9496 onSpanAdded(Spannable buf, Object what, int s, int e) argument
9502 onSpanRemoved(Spannable buf, Object what, int s, int e) argument
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp13535 void GLTrace_glDebugMessageInsertKHR(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * buf) { argument
13571 // copy argument buf
13575 arg_buf->add_int64value((uintptr_t)buf);
13580 glContext->hooks->gl.glDebugMessageInsertKHR(source, type, id, severity, length, buf);
13585 (void *) buf,
17059 void GLTrace_glBlendEquationiEXT(GLuint buf, GLenum mode) { argument
17065 // copy argument buf
17069 arg_buf->add_intvalue(buf);
17080 glContext->hooks->gl.glBlendEquationiEXT(buf, mode);
17093 void GLTrace_glBlendEquationSeparateiEXT(GLuint buf, GLenu argument
17133 GLTrace_glBlendFunciEXT(GLuint buf, GLenum src, GLenum dst) argument
17173 GLTrace_glBlendFuncSeparateiEXT(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) argument
[all...]

Completed in 2364 milliseconds

12345678910