/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...] |
/sdk/layoutlib_api/src/com/android/layoutlib/api/ |
IDensityBasedResourceValue.java | 20 * Represents an Android Resources that has a density info attached to it.
|
/system/core/init/ |
util.c | 79 struct android_id_info *info = android_ids; local 83 if (!strcmp(info[n].name, name)) 84 return info[n].aid; 148 INFO("Created socket '%s' with mode '%o', user '%d', group '%d'\n",
|
builtins.c | 310 struct loop_info info; local 326 if (ioctl(loop, LOOP_GET_STATUS, &info) < 0 && errno == ENXIO) { 449 struct stat info; local 456 if (stat(args[1], &info) < 0) 465 if (!(buffer = malloc(info.st_size))) 469 brtr = info.st_size; 481 brtw = info.st_size;
|
/system/extras/tests/bionic/libc/ |
README.TXT | 32 Put benchmarks and various debug/info stuff there.
|
/frameworks/base/core/java/android/app/ |
ActivityThread.java | 180 * Creates the top level Resources for applications with the given compatibility info. 183 * @param compInfo the compability info. It will use the default compatibility info when it's 320 Context systemContext, ApplicationInfo info) { 322 mApplicationInfo = info != null ? info : new ApplicationInfo(); 1206 ConnectionInfo info; local 1367 ActivityInfo info; field in class:ActivityThread.ReceiverData 1392 ServiceInfo info; field in class:ActivityThread.CreateServiceData 1422 PackageInfo info; field in class:ActivityThread.AppBindData 2415 PackageInfo info = new PackageInfo(this, "android", context, null); local 3457 StopInfo info = new StopInfo(); local [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);
|
/external/kernel-headers/original/linux/sunrpc/ |
svc.h | 118 struct svc_procedure * rq_procinfo; /* procedure info */ 120 struct svc_cred rq_cred; /* auth info */ 156 struct auth_domain * rq_client; /* RPC peer info */ 157 struct svc_cacherep * rq_cacherep; /* cache info */ 280 struct svc_procedure * vs_proc; /* per-procedure info */ 291 * RPC procedure info 302 unsigned int pc_cachetype; /* cache info (NFS) */
|
/external/v8/src/ |
scopeinfo.h | 65 // error). Any existing scope info in the Code object is simply overwritten. 68 // Garbage collection support for scope info embedded in Code objects. 97 // The following functions provide quick access to scope info details 114 // Lookup support for scope info embedded in Code objects. Returns 120 // Lookup support for scope info embedded in Code objects. Returns the 127 // Lookup support for scope info embedded in Code objects. Returns the 132 // Lookup support for scope info embedded in Code objects. Returns the
|
/external/webkit/WebCore/bindings/v8/ |
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());
|
/packages/apps/IM/src/com/android/im/app/ |
LandingPage.java | 234 AdapterView.AdapterContextMenuInfo info; local 236 info = (AdapterView.AdapterContextMenuInfo) menuInfo; 242 Cursor providerCursor = (Cursor) getListAdapter().getItem(info.position); 278 AdapterView.AdapterContextMenuInfo info; local 280 info = (AdapterView.AdapterContextMenuInfo) item.getMenuInfo(); 285 long providerId = info.id; 286 Cursor providerCursor = (Cursor) getListAdapter().getItem(info.position);
|
/sdk/emulator/mksdcard/ |
mksdcard.c | 57 static Byte s_fsinfo_sector [ BYTES_PER_SECTOR ]; /* FS Info sector */ 109 boot_sector_init( Bytes boot, Bytes info, Wide disk_size, const char* label ) 156 POKEW( info + 0, 0x41615252 ); 157 POKEW( info + 484, 0x61417272 ); 158 POKEW( info + 488, free_count ); /* number of free clusters */ 159 POKEW( info + 492, 3 ); /* next free clusters, 0-1 reserved, 2 is used for the root dir */ 160 POKEW( info + 508, 0xAA550000 );
|
/bionic/libc/bionic/ |
malloc_debug_common.c | 99 * "*info" is set to a buffer we allocate 100 * "*overallSize" is set to the size of the "info" buffer 106 void get_malloc_leak_info(uint8_t** info, size_t* overallSize, 110 if (info == NULL || overallSize == NULL || infoSize == NULL || 118 *info = NULL; 148 *info = (uint8_t*)dlmalloc(*overallSize); 150 if (*info == NULL) { 157 uint8_t* head = *info; 180 void free_malloc_leak_info(uint8_t* info) 182 dlfree(info); [all...] |
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/ |
Identity2Test.java | 341 String info = "This is the general information."; local 344 sub.setInfo(info); 345 assertEquals("Wrong Info returned", info, sub.getInfo()); 533 String[] info = {"This is the general information.", "test", "", null}; local 536 for (int i = 0; i < info.length; i++) { 538 sub.setInfo(info[i]); 539 assertEquals("Wrong Info returned", info[i], sub.getInfo()); 541 fail("Unexpected exception for parameter " + info[i]) [all...] |
/external/bluetooth/glib/gio/win32/ |
gwinhttpfile.c | 475 GFileInfo *info; local 528 info = g_file_info_new (); 529 g_file_info_set_attribute_mask (info, matcher); 532 g_file_info_set_name (info, basename); 548 g_file_info_set_size (info, cl); 554 return info; 574 g_file_info_set_content_type (info, tmp); 578 g_file_info_set_content_type (info, ct); 602 g_file_info_set_modification_time (info, &tv); 607 return info; [all...] |
/external/grub/docs/ |
help2man | 51 -N, --no-info suppress pointer to Texinfo manual 71 'N|no-info' => \$opt_no_info, 138 # section--allows for comments and revision info. 163 # Grab help and version info from executable. 166 or die "$this_program: can't get `--$_' info from $ARGV[0]\n" 217 # No info for `info' itself. 218 $opt_no_info = 1 if $program eq 'info'; 459 .B info 464 .B info $progra [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
ClassMerger.java | 29 import proguard.optimize.info.*; 273 ClassOptimizationInfo info = local 275 if (info != null) 277 info.merge(ClassOptimizationInfo.getClassOptimizationInfo(programClass)); 511 ClassOptimizationInfo info = ClassOptimizationInfo.getClassOptimizationInfo(clazz); local 512 if (info != null) 514 info.setTargetClass(targetClass); 526 ClassOptimizationInfo info = ClassOptimizationInfo.getClassOptimizationInfo(clazz); local 527 if (info == null) 532 clazz = info.getTargetClass() [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...] |
/external/webkit/WebKit/qt/tests/qwebplugindatabase/ |
tst_qwebplugindatabase.cpp | 423 QWebPluginInfo info; local 424 QCOMPARE(info.mimeTypes(), QList<MimeType>()); 425 QCOMPARE(info = first, first); 426 QCOMPARE(info, first); 427 QCOMPARE(info.mimeTypes(), first.mimeTypes()); 428 QCOMPARE(info = second, second); 429 QCOMPARE(info, second); 430 QCOMPARE(info.mimeTypes(), second.mimeTypes()); 431 QCOMPARE(info = QWebPluginInfo(), QWebPluginInfo()); 432 QCOMPARE(info.mimeTypes(), QList<MimeType>()) [all...] |
/frameworks/base/core/java/android/util/ |
Log.java | 31 * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled 33 * in but stripped at runtime. Error, warning and info logs are always kept. 67 public static final int INFO = 4; 137 * Send an {@link #INFO} log message. 143 return println_native(LOG_ID_MAIN, INFO, tag, msg); 147 * Send a {@link #INFO} log message and log the exception. 154 return println_native(LOG_ID_MAIN, INFO, tag, msg + '\n' + getStackTraceString(tr)); 181 * The default level of any tag is set to INFO. This means that any level above and including 182 * INFO will be logged. Before you make any calls to a logging method you should check to see 185 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS wil [all...] |
/frameworks/base/services/java/com/android/server/ |
PackageManagerBackupAgent.java | 63 // version & signature info of each app in a restore set 65 // The version info of each backed-up app as read from the state file 168 PackageInfo info = null; local 170 info = mPackageManager.getPackageInfo(packName, 186 if (info.versionCode == mStateVersions.get(packName).versionCode) { 191 if (info.signatures == null || info.signatures.length == 0) 208 outputBufferStream.writeInt(info.versionCode); 209 writeSignatureArray(outputBufferStream, info.signatures); 213 + " version=" + info.versionCod [all...] |
/cts/tools/dasm/src/dasm/ |
DopInfo.java | 116 DopInfo info = new DopInfo(); local 117 info.name = name; 118 info.opcode = opcode; 119 info.args = args; 120 dopsTable.put(name, info);
|
/dalvik/vm/ |
Properties.c | 142 struct utsname info; local 143 uname(&info); 190 setProperty(propObj, put, "os.arch", info.machine); 191 setProperty(propObj, put, "os.name", info.sysname); 192 setProperty(propObj, put, "os.version", info.release);
|
/external/bluetooth/glib/gio/ |
glocalfileenumerator.c | 321 GFileInfo *info; local 343 info = _g_local_file_info_get (filename, path, 350 if (info == NULL) 352 /* Failed to get info */ 366 return info;
|
/external/e2fsprogs/debian/attic/libs/ |
rules | 114 install -d $(debdir)/e2fslibsg-dev/usr/doc/e2fslibsg-dev/html-info/ 116 $(debdir)/e2fslibsg-dev/usr/doc/e2fslibsg-dev/html-info/ 117 install -d $(debdir)/comerrg-dev/usr/doc/comerrg-dev/html-info/ 119 $(debdir)/comerrg-dev/usr/doc/comerrg-dev/html-info/ 148 usr/info usr/lib usr/man/man3 usr/doc/e2fslibsg
|