/frameworks/base/media/libstagefright/timedtext/ |
TimedTextParser.cpp | 65 TextInfo info; local 66 status_t err = getNextInSrtFileFormat(&offset, &startTimeUs, &info); 75 mTextVector.add(startTimeUs, info); 143 off64_t *offset, int64_t *startTimeUs, TextInfo *info) { 164 info->endTimeUs = ((hour2 * 3600 + min2 * 60 + sec2) * 1000 + msec2) * 1000ll; 165 if (info->endTimeUs <= *startTimeUs) { 169 info->offset = *offset; 190 info->textLen = *offset - info->offset; 241 TextInfo info = mTextVector.valueAt(mIndex) local [all...] |
/frameworks/base/services/sensorservice/ |
SensorDevice.cpp | 121 Info model; 141 const Info& info = mActivationCount.valueFor(list[i].handle); local 144 info.rates.size()); 146 for (size_t j=0 ; j<info.rates.size() ; j++) { 148 info.rates.valueAt(j) / 1e6f, 149 j<info.rates.size()-1 ? ", " : ""); 152 snprintf(buffer, SIZE, " }, selected=%4.1f ms\n", info.delay / 1e6f); 182 Info& info( mActivationCount.editValueFor(handle) ) [all...] |
/frameworks/base/services/surfaceflinger/tests/ |
Transaction_test.cpp | 30 Surface::SurfaceInfo info; local 33 ASSERT_EQ(NO_ERROR, s->lock(&info)); 34 uint8_t* img = reinterpret_cast<uint8_t*>(info.bits); 35 for (uint32_t y = 0; y < info.h; y++) { 36 for (uint32_t x = 0; x < info.w; x++) { 37 uint8_t* pixel = img + (4 * (y*info.s + x));
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
TextureViewActivity.java | 119 Camera.CameraInfo info = new Camera.CameraInfo(); local 121 Camera.getCameraInfo(i, info); 122 if (info.facing == Camera.CameraInfo.CAMERA_FACING_BACK) break; 143 return (info.orientation - degrees + 360) % 360;
|
/hardware/libhardware/modules/gralloc/ |
framebuffer.cpp | 79 m->info.reserved[0] = 0x54445055; // "UPDT"; 80 m->info.reserved[1] = (uint16_t)l | ((uint32_t)t << 16); 81 m->info.reserved[2] = (uint16_t)(l+w) | ((uint32_t)(t+h) << 16); 98 m->info.activate = FB_ACTIVATE_VBL; 99 m->info.yoffset = offset / m->finfo.line_length; 100 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) { 116 0, 0, m->info.xres, m->info.yres, 121 0, 0, m->info.xres, m->info.yres 163 struct fb_var_screeninfo info; local [all...] |
gralloc_priv.h | 49 struct fb_var_screeninfo info; member in struct:private_module_t
|
/hardware/msm7k/libgralloc/ |
framebuffer.cpp | 82 m->info.reserved[0] = 0x54445055; // "UPDT"; 83 m->info.reserved[1] = (uint16_t)l | ((uint32_t)t << 16); 84 m->info.reserved[2] = (uint16_t)(l+w) | ((uint32_t)(t+h) << 16); 101 m->info.activate = FB_ACTIVATE_VBL; 102 m->info.yoffset = offset / m->finfo.line_length; 103 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) { 119 0, 0, m->info.xres, m->info.yres, 124 0, 0, m->info.xres, m->info.yres 171 struct fb_var_screeninfo info; local [all...] |
gralloc_priv.h | 53 struct fb_var_screeninfo info; member in struct:private_module_t
|
/libcore/luni/src/main/java/java/lang/ |
StringToReal.java | 263 StringExponentPair info = initialParse(s, length, true); local 264 if (info.infinity || info.zero) { 265 return info.specialValue(); 267 double result = parseDblImpl(info.s, (int) info.e); 271 return info.negative ? -result : result; 304 StringExponentPair info = initialParse(s, length, false); local 305 if (info.infinity || info.zero) [all...] |
/libcore/luni/src/main/java/java/security/ |
Identity.java | 40 private String info = "no additional info"; field in class:Identity 208 s += " " + info; 267 * @param info 270 public void setInfo(String info) { 271 this.info = info; 280 return info;
|
/libcore/luni/src/main/java/org/apache/harmony/security/utils/ |
JarUtils.java | 70 ContentInfo info = (ContentInfo)ContentInfo.ASN1.decode(bis); local 71 SignedData signedData = info.getSignedData();
|
/libcore/luni/src/test/java/libcore/sqlite/ |
OldJDBCDriverTest.java | 93 DriverPropertyInfo[] info = null; local 95 info = jDriver.getPropertyInfo(getConnectionURL(), null); 96 assertNotNull(info); 97 assertTrue(info.length > 0); 102 assertNotNull(info);
|
/ndk/sources/host-tools/ndk-stack/elff/ |
elf_file.cc | 28 /* Tags to parse when collecting info about routines. */ 195 Dwarf_AddressInfo info; local 196 info.die_obj = cu->get_leaf_die_for_address(address); 197 if (info.die_obj != NULL) { 199 if (cu->get_pc_address_file_info(address, &info)) { 201 address_info->file_name = info.file_name; 202 address_info->dir_name = info.dir_name; 203 address_info->line_number = info.line_number; 212 Dwarf_Tag tag = info.die_obj->get_tag(); 216 info.die_obj = info.die_obj->parent_die() [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppBatch.java | 103 * @param info, BluetoothOppShareInfo 105 public BluetoothOppBatch(Context context, BluetoothOppShareInfo info) { 109 mTimestamp = info.mTimestamp; 110 mDirection = info.mDirection; 111 mDestination = adapter.getRemoteDevice(info.mDestination); 113 mShares.add(info); 115 if (V) Log.v(TAG, "New Batch created for info " + info.mId); 125 public void addShare(BluetoothOppShareInfo info) { 126 mShares.add(info); 166 BluetoothOppShareInfo info = mShares.get(i); local [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventActivity.java | 95 EventInfo info = new EventInfo(); local 116 info.endTime = new Time(); 118 info.endTime.timezone = Time.TIMEZONE_UTC; 120 info.endTime.set(end); 123 info.startTime = new Time(); 125 info.startTime.timezone = Time.TIMEZONE_UTC; 127 info.startTime.set(begin); 129 info.id = eventId; 132 info.extraLong = CalendarController.EXTRA_CREATE_ALL_DAY; 134 info.extraLong = 0 [all...] |
/packages/apps/Contacts/src/com/android/contacts/calllog/ |
ContactInfoHelper.java | 44 * If the number does not match any contact, returns a contact info containing only the number 53 final ContactInfo info; local 55 // Determine the contact info. 67 info = sipInfo; 76 info = phoneInfo; 80 if (info == null) { 84 // If we did not find a matching contact, generate an empty contact info for the number. 85 if (info == ContactInfo.EMPTY) { 91 updatedInfo = info; 107 final ContactInfo info; local 151 final ContactInfo info; local 183 ContactInfo info = lookupContactFromUri(uri); local [all...] |
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
ResolveCache.java | 178 for (ResolveInfo info : matches) { 179 final boolean isSystem = (info.activityInfo.applicationInfo.flags 182 .contains(info.activityInfo.applicationInfo.packageName); 184 if (isPrefer) return info; 185 if (isSystem && firstSystem == null) firstSystem = info; 206 final ResolveInfo info = getEntry(action).bestResolve; local 207 if (info != null) { 208 return info.loadLabel(mPackageManager);
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/ |
Log.java | 72 public void info(Object message) { method in class:Log 77 public void info(Object message, Throwable t) { method in class:Log
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MtpDeviceSet.java | 77 MtpDeviceInfo info = device.getDeviceInfo(); local 78 if (info == null) { 81 String manufacturer = info.getManufacturer().trim(); 82 String model = info.getModel().trim();
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SearchableSources.java | 155 SearchableInfo info = mSearchManager.getSearchableInfo(component); local 156 SearchableSource source = createSearchableSource(info);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/ |
AccessibleKeyboardViewProxy.java | 89 final EditorInfo info = mInputMethod.getCurrentInputEditorInfo(); local 90 final boolean shouldObscure = AccessibilityUtils.getInstance().shouldObscureInput(info);
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
RealSystemFacade.java | 53 NetworkInfo info = connectivity.getActiveNetworkInfo(); local 54 boolean isMobile = (info != null && info.getType() == ConnectivityManager.TYPE_MOBILE);
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_syswm.h | 104 } info; member in struct:SDL_SysWMinfo 208 * It fills the structure pointed to by 'info' with custom information and 210 * the version member of the 'info' structure is invalid, it returns 0. 213 * SDL_SysWMInfo info; 214 * SDL_VERSION(&info.version); 215 * if ( SDL_GetWMInfo(&info) ) { ... } 217 extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_syswm.h | 104 } info; member in struct:SDL_SysWMinfo 208 * It fills the structure pointed to by 'info' with custom information and 210 * the version member of the 'info' structure is invalid, it returns 0. 213 * SDL_SysWMInfo info; 214 * SDL_VERSION(&info.version); 215 * if ( SDL_GetWMInfo(&info) ) { ... } 217 extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
cycx_cfm.h | 80 * @checksum - info + image 83 * @info - firmware module info 92 struct cycx_fw_info info; member in struct:cycx_firmware
|