/sdk/sdkmanager/app/src/com/android/sdkmanager/ |
Main.java | 683 AvdInfo info = avds[index]; local 687 mSdkLog.printf(" Name: %s\n", info.getName()); 688 mSdkLog.printf(" Path: %s\n", info.getPath()); 691 IAndroidTarget target = info.getTarget(); 703 Map<String, String> properties = info.getProperties(); 728 for (AvdInfo info : badAvds) { 732 mSdkLog.printf(" Name: %s\n", info.getName() == null ? "--" : info.getName()); 733 mSdkLog.printf(" Path: %s\n", info.getPath() == null ? "--" : info.getPath()) 772 AvdInfo info = avdManager.getAvd(avdName, false \/*validAvdOnly*\/); local 871 AvdInfo info = avdManager.getAvd(avdName, false \/*validAvdOnly*\/); local 891 AvdInfo info = avdManager.getAvd(avdName, true \/*validAvdOnly*\/); local [all...] |
/frameworks/base/media/libstagefright/ |
OMXCodec.cpp | 181 static const char *GetCodec(const CodecInfo *info, size_t numInfos, 185 if (!strcasecmp(mime, info[i].mime)) { 187 return info[i].codec; 1220 BufferInfo info; local 1358 BufferInfo *info = &buffers->editItemAt(i); local 1769 BufferInfo *info = &buffers->editItemAt(i); local 2521 BufferInfo *info = &mPortBuffers[kPortIndexOutput].editItemAt(index); local 2533 BufferInfo *info = &buffers->editItemAt(i); local [all...] |
/dalvik/vm/compiler/codegen/arm/ |
RallocUtil.c | 125 LOGE("Tried to get info on a non-existant temp: r%d",reg); 151 RegisterInfo *info = getRegInfo(cUnit, reg); local 152 if (info->live && info->dirty) { 153 info->dirty = false; 155 dvmCompilerS2VReg(cUnit, info->sReg) << 2, 642 static void flushAllRegsBody(CompilationUnit *cUnit, RegisterInfo *info, 647 if (info[i].live && info[i].dirty) { 648 if (info[i].pair) 681 RegisterInfo *info = getRegInfo(cUnit, reg); local 705 RegisterInfo *info = getRegInfo(cUnit, reg); local 711 RegisterInfo *info = getRegInfo(cUnit, reg); local 717 RegisterInfo *info = getRegInfo(cUnit, reg); local 723 RegisterInfo *info = getRegInfo(cUnit, reg); local 730 RegisterInfo *info = getRegInfo(cUnit, reg); local [all...] |
/external/icu4c/test/intltest/ |
svccoll.cpp | 247 CollatorInfo** info; member in class:TestFactory 252 for (CollatorInfo** p = info; *p; ++p) { 262 : info(_info) 267 for (p = info; *p; ++p) {} 268 count = (int32_t)(p - info); 272 for (CollatorInfo** p = info; *p; ++p) { 275 delete[] info; 311 ids[i] = info[i]->locale.getName(); 368 CollatorInfo** info = new CollatorInfo*[4]; local 369 if (!info) { [all...] |
/external/webkit/WebCore/inspector/ |
JavaScriptDebugServer.cpp | 175 BreakpointInfo* info = sourceBreakpoints->get(lineNumber); local 176 if (!info) 179 updateBreakpointInfo(info, condition); 192 BreakpointInfo* info = breakpointInfo(sourceID, lineNumber); local 193 if (!info) 195 updateBreakpointInfo(info, condition); 198 void JavaScriptDebugServer::updateBreakpointInfo(BreakpointInfo* info, const UString& condition) 200 info->setCondition(condition); 209 BreakpointInfo* info = sourceBreakpoints->get(lineNumber); 210 if (!info) 224 BreakpointInfo* info = breakpointInfo(sourceID, lineNumber); local [all...] |
/external/skia/src/animator/ |
SkAnimatorScript.cpp | 229 bool SkAnimatorScript::EvalMemberCommon(SkScriptEngine* engine, const SkMemberInfo* info, 232 SkDisplayTypes type = original = (SkDisplayTypes) info->getType(); 233 if (info->fType == SkType_Array) 242 SkASSERT(info->getCount() == 1); 243 if (info->fType != SkType_MemberProperty && info->fType != SkType_MemberFunction) 244 value->fOperand.fS32 = *(int32_t*) info->memberData(displayable); // OK for SkScalar too 252 if (info->fType != SkType_MemberProperty && info->fType != SkType_MemberFunction) { 253 info->getString(displayable, &displayableString) 291 const SkMemberInfo* info = displayable->getMember(name.c_str()); local 308 const SkMemberInfo* info = displayable->getMember(name.c_str()); local [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/ |
AvdManager.java | 171 * Creates a new valid AVD info. Values are immutable. 188 * Creates a new <em>invalid</em> AVD info. Values are immutable. 447 for (AvdInfo info : getValidAvds()) { 448 String name2 = info.getName(); 450 return info; 455 for (AvdInfo info : mAllAvdList) { 456 String name2 = info.getName(); 458 return info; 999 AvdInfo info = new AvdInfo(avdInfo.getName(), paramFolderPath, local 1019 AvdInfo info = new AvdInfo(newName, avdInfo.getPath(), local 1108 AvdInfo info = parseAvdInfo(avd, log); local 1196 AvdInfo info = new AvdInfo( local [all...] |
/development/tools/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyRunner.java | 78 // haven't figure out how to get below INFO...bad parent. Pass -v INFO to turn on logging 82 logger.info("initAdb"); 84 logger.info("openMonkeyConnection"); 87 logger.info("start_script"); 90 logger.info("ScriptRunner.run"); 93 logger.info("end_script"); 95 logger.info("closeMonkeyConnection"); 217 * the device in a known state and starts recording interesting info. 393 logger.info("Monkey Command: " + command + ".") [all...] |
/external/webkit/JavaScriptCore/wtf/ |
TCSystemAlloc.cpp | 464 MEMORY_BASIC_INFORMATION info; local 466 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info)); 467 ASSERT_UNUSED(resultSize, resultSize == sizeof(info)); 469 size_t decommitSize = min<size_t>(info.RegionSize, end - ptr); 504 MEMORY_BASIC_INFORMATION info; local 506 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info)); 507 ASSERT_UNUSED(resultSize, resultSize == sizeof(info)); 509 size_t commitSize = min<size_t>(info.RegionSize, end - ptr) [all...] |
ThreadingWin.cpp | 123 THREADNAME_INFO info; local 124 info.dwType = 0x1000; 125 info.szName = szThreadName; 126 info.dwThreadID = GetCurrentThreadId(); 127 info.dwFlags = 0; 130 RaiseException(MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR), reinterpret_cast<ULONG_PTR*>(&info));
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
FileListingService.java | 131 String info; field in class:FileListingService.FileEntry 209 * Returns the extra info for the entry. 215 return info; 463 String info = null; local 502 info = segments[1]; 505 String[] pathSegments = info.split(FILE_SEPARATOR); 520 info = "-> " + info; //$NON-NLS-1$; 529 // add some misc info 537 entry.info = info [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8DOMWindowCustom.cpp | 172 v8::Handle<v8::Value> V8DOMWindow::eventAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 174 v8::Handle<v8::Object> holder = V8DOMWrapper::lookupDOMWrapper(V8DOMWindow::GetTemplate(), info.This()); 193 void V8DOMWindow::eventAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 195 v8::Handle<v8::Object> holder = V8DOMWrapper::lookupDOMWrapper(V8DOMWindow::GetTemplate(), info.This()); 211 v8::Handle<v8::Value> V8DOMWindow::cryptoAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 217 void V8DOMWindow::locationAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 219 DOMWindow* imp = V8DOMWindow::toNative(info.Holder()); 224 void V8DOMWindow::openerAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 226 DOMWindow* imp = V8DOMWindow::toNative(info.Holder()); 242 info.Holder()->Delete(name) [all...] |
/packages/apps/Phone/src/com/android/phone/ |
BluetoothHeadsetService.java | 137 BluetoothAudioGateway.IncomingConnectionInfo info = 150 ") connection from " + info.mRemoteDevice + "on channel " + info.mRfcommChan); 155 priority = mBinder.getPriority(info.mRemoteDevice); 160 headset = new HeadsetBase(mPowerManager, mAdapter, info.mRemoteDevice, 161 info.mSocketFd, info.mRfcommChan, null); 168 mRemoteDevice = info.mRemoteDevice; 170 headset = new HeadsetBase(mPowerManager, mAdapter, mRemoteDevice, info.mSocketFd, 171 info.mRfcommChan, mConnectedStatusHandler) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_cursor.c | 568 SDL_BlitInfo info; local 577 info.s_pixels = SDL_cursor->save[1]; 578 info.s_width = w; 579 info.s_height = h; 580 info.s_skip = 0; 581 info.d_pixels = SDL_cursor->save[0]; 582 info.d_width = w; 583 info.d_height = h; 584 info.d_skip = 0; 585 info.aux_data = screen->map->sw_data->aux_data [all...] |
/external/qemu/elff/ |
dwarf_cu.cc | 469 Dwarf_AddressInfo* info) {
513 return set_source_info(&state, info);
564 return set_source_info(&state, info);
579 return set_source_info(&state, info);
624 return set_source_info(&state, info);
639 return set_source_info(&state, info);
685 return set_source_info(&state, info);
691 return set_source_info(&state, info);
742 Dwarf_AddressInfo* info) {
743 info->line_number = state->line_; [all...] |
/external/webkit/JavaScriptCore/bytecompiler/ |
BytecodeGenerator.h | 179 LineInfo info = { instructions().size(), n->lineNo() }; local 180 m_codeBlock->addLineInfo(info); 198 LineInfo info = { instructions().size(), n->lineNo() }; local 199 m_codeBlock->addLineInfo(info); 212 // Overflow has occurred, we can only give line number info for errors for this region 229 ExpressionRangeInfo info; local 230 info.instructionOffset = instructions().size(); 231 info.divotPoint = divot; 232 info.startOffset = startOffset; 233 info.endOffset = endOffset 242 GetByIdExceptionInfo info; local [all...] |
/external/webkit/WebCore/bindings/v8/ |
V8NPObject.cpp | 212 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 215 return npObjectGetProperty(info.Holder(), identifier, name); 218 v8::Handle<v8::Value> npObjectIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) 221 return npObjectGetProperty(info.Holder(), identifier, v8::Number::New(index)); 261 v8::Handle<v8::Value> npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 264 return npObjectSetProperty(info.Holder(), identifier, value); 268 v8::Handle<v8::Value> npObjectIndexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info) 271 return npObjectSetProperty(info.Holder(), identifier, value); 286 v8::Handle<v8::Array> npObjectPropertyEnumerator(const v8::AccessorInfo& info, bool namedProperty) 288 NPObject* npObject = v8ObjectToNPObject(info.Holder()) [all...] |
V8SVGPODTypeWrapper.h | 302 static unsigned hash(const PODTypeWrapperCacheInfo<PODType, PODTypeCreator>& info) 307 return WTF::PairHash<void*, unsigned>::hash(std::pair<void*, unsigned>(info.creator, info.fieldHash)); 368 CacheInfo info(creator, getter, setter, fieldHash); 370 if (map.contains(info)) 371 return map.get(info); 374 map.set(info, wrapper.get());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/ |
DropFeedback.java | 98 RelativeInfo info = null; local 107 info = findRelativeTarget(parentPart, where, sRelativeInfo); 108 if (info != null) { 109 sibling = info.targetParts[info.anchorIndex]; 123 adustRelativeAttributes(uiNode, info); 156 RelativeInfo info = findRelativeTarget(parentPart, where, sRelativeInfo); local 157 if (info != null) { 159 computeRelativeLine(parentPart, info, highlightInfo); 258 * @param info The context computed by {@link #findRelativeTarget(UiElementEditPart, Point, RelativeInfo)} [all...] |
/build/core/ |
envsetup.mk | 338 $(info ============================================) 339 $(info PLATFORM_VERSION_CODENAME=$(PLATFORM_VERSION_CODENAME)) 340 $(info PLATFORM_VERSION=$(PLATFORM_VERSION)) 341 $(info TARGET_PRODUCT=$(TARGET_PRODUCT)) 342 $(info TARGET_BUILD_VARIANT=$(TARGET_BUILD_VARIANT)) 343 $(info TARGET_SIMULATOR=$(TARGET_SIMULATOR)) 344 $(info TARGET_BUILD_TYPE=$(TARGET_BUILD_TYPE)) 345 $(info TARGET_BUILD_APPS=$(TARGET_BUILD_APPS)) 346 $(info TARGET_ARCH=$(TARGET_ARCH)) 347 $(info HOST_ARCH=$(HOST_ARCH) [all...] |
/dalvik/libcore/sql/src/test/java/tests/java/sql/ |
StressTest.java | 180 .info("java.sql stress test: single thread and many operations."); 182 Logger.global.info("Opening " + maxConnections + " to database " 187 Logger.global.info("TasksPerConnection = " + Support_SQL.sqlMaxTasks 192 Logger.global.info(" creating " + tasksPerConnection 223 Logger.global.info("java.sql stress test: multiple threads and many operations."); 228 Logger.global.info("Opening "+numConnections+" to database "+Support_SQL.getFilename()); 233 Logger.global.info(" creating "+tasksPerConnection+ " tasks for Connection "+i);
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationsStackLayout.java | 251 final ApplicationInfo info = applications.get(i); local 252 final View view = createApplicationIcon(mInflater, this, info); 303 ViewGroup group, ApplicationInfo info) { 307 info.icon.setBounds(0, 0, mIconSize, mIconSize); 308 textView.setCompoundDrawables(null, info.icon, null, null); 309 textView.setText(info.title); 311 textView.setTag(info.intent);
|
/external/qemu/audio/ |
dsoundaudio.c | 266 static DWORD millis_to_bytes (struct audio_pcm_info *info, DWORD millis) 268 return (millis * info->bytes_per_second) / 1000; 465 dst = advance (dst, src_len1 << hw->info.shift); 480 &hw->info, 482 hw->samples << hw->info.shift, 491 len1 = blen1 >> hw->info.shift; 492 len2 = blen2 >> hw->info.shift; 501 audio_pcm_info_clear_buf (&hw->info, p1, len1); 505 audio_pcm_info_clear_buf (&hw->info, p2, len2); 680 hwshift = hw->info.shift [all...] |
/external/bison/build-aux/ |
Makefile | 189 infodir = ${prefix}/info 236 uninstall-info-am: 313 info: info-am 315 info-am: 321 install-info: install-info-am 343 uninstall-am: uninstall-info-am 346 distclean-generic distdir dvi dvi-am html html-am info info-am [all...] |
/external/bison/data/ |
Makefile | 199 infodir = ${prefix}/info 251 uninstall-info-am: 366 info: info-am 368 info-am: 374 install-info: install-info-am 397 uninstall-info-am 400 distclean-generic distdir dvi dvi-am html html-am info info-am [all...] |