Searched refs:count (Results 51 - 75 of 122) sorted by relevance

12345

/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
H A DGLWorld.java71 int count = 0; field in class:GLWorld
83 count++;
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DList13.java144 int count = view.getChildCount();
145 for (int i=0; i<count; i++) {
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
H A DAppNavHomeActivity.java60 final int count = infos.size();
61 for (int i = 0; i < count; i++) {
/development/samples/NotePad/src/com/example/android/notepad/
H A DNotePadProvider.java579 * 0 is returned. To delete all rows and get a row count, use "1" as the where clause.
589 int count;
597 count = db.delete(
626 count = db.delete(
645 return count;
673 int count;
684 count = db.update(
717 count = db.update(
738 return count;
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java310 int count;
315 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
326 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs);
335 return count;
344 int count;
350 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
358 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs);
367 return count;
/development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DAppNavHomeActivity.java60 final int count = infos.size();
61 for (int i = 0; i < count; i++) {
/development/ndk/platforms/android-3/include/linux/
H A Dmsm_mdp.h79 uint32_t count; member in struct:mdp_blit_req_list
H A Dnfs_xdr.h192 __u32 count; member in struct:nfs_readargs
199 __u32 count; member in struct:nfs_readres
207 __u32 count; member in struct:nfs_writeargs
222 __u32 count; member in struct:nfs_writeres
310 unsigned int count; member in struct:nfs_readdirargs
413 unsigned int count; member in struct:nfs3_readdirargs
H A Ddm-ioctl.h54 uint32_t count; member in struct:dm_target_deps
/development/ndk/platforms/android-9/arch-mips/include/asm/sn/
H A Dkldir.h86 u64 count; member in struct:kldir_ent_s
/development/tools/elftree/
H A Delftree.c128 int count; member in struct:dyn_state
135 for (i = 0; i < d->count; i++) {
185 d.count = shdr->sh_size / shdr->sh_entsize;
187 for (i = 0; i < d.count; i++) {
/development/tools/emulator/opengl/shared/OpenglCodecCommon/
H A DglUtils.cpp437 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count) argument
441 for (int i = 0; i < count; i++) {
457 int glUtilsCalcShaderSourceLen( char **strings, GLint *length, GLsizei count) argument
460 for (int i = 0; i < count; i++) {
/development/tools/jdwpspy/
H A DNet.cpp436 static void consumeBytes(Peer* pPeer, int count) argument
438 assert(count > 0);
439 assert(count <= pPeer->inputCount);
441 if (count == pPeer->inputCount) {
446 memmove(pPeer->inputBuffer, pPeer->inputBuffer + count,
447 pPeer->inputCount - count);
448 pPeer->inputCount -= count;
/development/ndk/platforms/android-5/include/GLES2/
H A Dgl2.h514 GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count);
515 GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices);
530 GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders);
572 GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar** string, const GLint* length);
586 GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat* v);
588 GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint* v);
590 GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat* v);
592 GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint* v);
594 GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat* v);
596 GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, cons
[all...]
/development/tools/emulator/opengl/system/GLESv1_enc/
H A DGLEncoder.cpp394 void GLEncoder::sendVertexData(unsigned int first, unsigned int count)
417 unsigned int datalen = state->elementSize * count;
509 void GLEncoder::s_glDrawArrays(void *self, GLenum mode, GLint first, GLsizei count)
513 ctx->sendVertexData(first, count);
514 ctx->m_glDrawArrays_enc(ctx, mode, /*first*/ 0, count);
517 void GLEncoder::s_glDrawElements(void *self, GLenum mode, GLsizei count, GLenum type, const void *indices)
522 SET_ERROR_IF(count<0, GL_INVALID_VALUE);
546 ctx->sendVertexData(0, count);
548 ctx->glDrawElementsOffset(ctx, mode, count, type, (GLuint)indices);
563 GLUtils::minmax<unsigned char>((unsigned char *)indices, count,
[all...]
H A DGLEncoder.h127 static void s_glDrawArrays(void *self, GLenum mode, GLint first, GLsizei count);
128 static void s_glDrawElements(void *self, GLenum mode, GLsizei count, GLenum type, const void *indices);
132 void sendVertexData(unsigned first, unsigned count);
/development/ide/xcode/ports/
H A DSkBitmap_Mac.cpp40 static void convert4444_to_555(uint16_t dst[], const uint16_t src[], int count) argument
42 const uint16_t* stop = src + count;
/development/samples/BrowserPlugin/jni/
H A DPluginObject.cpp86 static bool pluginEnumerate(NPObject *npobj, NPIdentifier **value, uint32_t *count);
212 static bool pluginEnumerate(NPObject *npobj, NPIdentifier **value, uint32_t *count) argument
/development/ndk/platforms/android-14/include/OMXAL/
H A DOpenMAXAL_Android.h88 XAuint32 count; member in struct:XAAndroidBufferQueueState_
/development/ndk/platforms/android-9/include/android/
H A Dsensor.h219 ASensorEvent* events, size_t count);
/development/samples/Home/src/com/example/android/home/
H A DApplicationsStackLayout.java249 final int count = applications.size();
250 for (int i = count - 1; i >= 0; i--) {
293 final int count = getChildCount();
294 for (int i = count - 1; i >= 0; i--) {
H A DHome.java163 final int count = mApplications.size();
164 for (int i = 0; i < count; i++) {
360 final int count = recentTasks.size();
363 for (int i = count - 1; i >= 0; i--) {
493 final int count = apps.size();
496 mApplications = new ArrayList<ApplicationInfo>(count);
500 for (int i = 0; i < count; i++) {
/development/tools/emulator/system/libqemu/
H A Dtest_host_2.c112 int ret, count; local
/development/tools/emulator/system/gps/
H A Dgps_qemu.c66 int count; member in struct:__anon608
73 int count = 0; local
100 if (count < MAX_NMEA_TOKENS) {
101 t->tokens[count].p = p;
102 t->tokens[count].end = q;
103 count += 1;
112 t->count = count;
113 return count;
122 if (index < 0 || index >= t->count) {
[all...]
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeySourceRandom.java276 int count = random.nextInt(10);
277 for (int i = 0; i < count; i++) {
296 int count = random.nextInt(10);
297 for (int i = 0; i < count; i++) {

Completed in 2510 milliseconds

12345