/packages/apps/Settings/src/com/android/settings/ |
UsageStats.java | 69 String alabel = mAppLabelList.get(a.packageName).toString(); 70 String blabel = mAppLabelList.get(b.packageName).toString(); 151 return mUsageStats.get(position); 177 // Get the ViewHolder back to get fast access to the TextView 183 PkgUsageStats pkgStats = mUsageStats.get(position); 185 CharSequence label = mAppLabelMap.get(pkgStats.packageName);
|
/packages/inputmethods/PinyinIME/jni/include/ |
pinyinime.h | 113 * can be used to get the spelling string kept by decoder currently. 121 * Get the spelling string kept by the decoder. 130 * Get a candidate(or choice) string. 132 * @param cand_id The id to get a candidate. Started from 0. Usually, id 0 142 * Get the segmentation information(the starting positions) of the spelling 173 * Get the number of fixed spelling ids, or Chinese characters. 185 * Get prediction candiates based on the given fixed Chinese string as the
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HandleProfiling.java | 42 * Register for the packets we expect to get from the client. 143 // get the filename and make the client not have pending HPROF dump anymore. 147 result = data.get(); 149 // get the app-level handler for method tracing dump 219 data.get(stuff, 0, stuff.length); 251 result = data.get(); 269 data.get(messageBuffer, 0, length);
|
/system/core/nexus/ |
PropertyManager.cpp | 159 if (p->get(idx, buffer, max)) { 160 LOGW("String property %s get failed (%s)", p->getName(), 167 if (p->get(idx, &tmp)) { 168 LOGW("Integer property %s get failed (%s)", p->getName(), 175 if (p->get(idx, &tmp)) { 176 LOGW("IPV4 property %s get failed (%s)", p->getName(), 224 const char *PropertyManager::get(const char *name, char *buffer, size_t max) { function in class:PropertyManager
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
Bridge.java | 177 // Static non-natives are not overridden and thus do not get here. 230 // the objects returned by Field.get() are the same as the ones used by 250 sRArrayMap.put((int[]) f.get(null), f.getName()); 252 Integer value = (Integer) f.get(null); 357 projectResources.get(BridgeConstants.RES_STYLE), 358 frameworkResources.get(BridgeConstants.RES_STYLE), styleParentMap); 410 // get the background drawable 461 // get the real cause of the exception. 503 return sRMap.get(value); 512 return sRArrayMap.get(array) [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
HashtableTest.java | 93 assertNull("Empty hashtable access", empty.get("nothing")); 95 assertTrue("cannot get element", empty.get("something") == "here"); 120 assertNull("Empty hashtable access", empty.get("nothing")); 122 assertTrue("cannot get element", empty.get("something") == "here"); 157 ht.get("Gah") == firstVal); 159 ht.get("Ooga") == secondVal); 230 assertTrue("Value comparison failed", ((String) htfull.get(okey)) 231 .equals((String) h.get(ckey))) [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/ |
EntityModifierTests.java | 346 final ContentProviderOperation oper = diff.get(0); 351 final ContentProviderOperation oper = diff.get(1); 356 final ContentProviderOperation oper = diff.get(2); 367 final ContentProviderOperation oper = diff.get(0); 475 final ContentProviderOperation oper = diff.get(0); 480 final ContentProviderOperation oper = diff.get(1); 485 final ContentProviderOperation oper = diff.get(2); 496 final ContentProviderOperation oper = diff.get(0); 517 final ContentProviderOperation oper = diff.get(0); 545 final ContentProviderOperation oper = diff.get(0) [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
SmsProvider.java | 132 qb.appendWhere("(_id = " + url.getPathSegments().get(0) + ")"); 141 qb.appendWhere("(_id = " + url.getPathSegments().get(1) + ")"); 148 threadID = Integer.parseInt(url.getPathSegments().get(1)); 156 + url.getPathSegments().get(1)); 187 "(sms_id = " + url.getPathSegments().get(1) + ")"); 199 qb.appendWhere("(_id = " + url.getPathSegments().get(1) + ")"); 206 String messageIndexString = url.getPathSegments().get(1); 263 SmsMessage message = messages.get(messageIndex); 286 SmsMessage message = messages.get(i); 322 Integer.parseInt(url.getPathSegments().get(0)) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
ResourceManager.java | 155 return mMap.get(project); 174 // can't get the project nature? return! 186 // get the project and its resource object. 188 resources = mMap.get(project); 207 resources = mMap.get(folder.getProject()); 219 resources = mMap.get(folder.getProject()); 222 // lets get the folder type 263 // can't get the project nature? return! 274 // get the project and its resources 276 resources = mMap.get(project) [all...] |
/external/webkit/WebKit/mac/Plugins/ |
WebNetscapePluginView.mm | 445 // Get list of dirty rects from the opaque ancestor -- WebKit does some tricks with invalidation and 521 // Get list of dirty rects from the opaque ancestor -- WebKit does some tricks with invalidation and 616 ASSERT([_pluginPackage.get() pluginFuncs]->event); 664 acceptedEvent = [_pluginPackage.get() pluginFuncs]->event(plugin, event); 767 // Set cursor back to arrow cursor. Because NSCursor doesn't know about changes that the plugin made, we could get confused about what we think the 843 if ([_pluginPackage.get() pluginFuncs]->setvalue) 844 [_pluginPackage.get() pluginFuncs]->setvalue(plugin, NPNVprivateModeBool, &value); [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WifiStateTracker.java | 128 * interface, etc. If we get a CONNECT event for another network 373 mInterfaceName = SystemProperties.get("wifi.interface", "tiwlan0"); 447 * Get a handle on the WifiManager. This cannot be done in our 771 * we didn't perform a DHCP request to get an IP address. 807 boolean died = mWifiState.get() != WIFI_STATE_DISABLED && 808 mWifiState.get() != WIFI_STATE_DISABLING; [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SsaBasicBlock.java | 143 BasicBlock bb = ropBlocks.get(basicBlockIndex); 151 result.insns.add(new NormalSsaInsn (ropInsns.get(i), result)); 238 SsaInsn oldInsn = insns.get(insns.size() - 1); 256 SsaInsn insn = insns.get(i); 291 SsaInsn insn = insns.get(countPhiInsns); 381 return parent.getBlocks().get(primarySuccessor); 394 result.add(parent.blockIndexToRopLabel(successorList.get(i))); 430 SsaBasicBlock predBlock = parent.getBlocks().get(i); 452 if (!successors.get(other.index)) { 465 if (successorList.get(i) == other.index) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
ElemLiteralResult.java | 109 AVT avt = (AVT) m_avts.get(i); 183 * Get a literal result attribute by name. 185 * @param namespaceURI Namespace URI of attribute node to get 186 * @param localName Local part of qualified name of attribute node to get 199 AVT avt = (AVT) m_avts.get(i); 215 * @param namespaceURI Namespace URI of attribute node to get 216 * @param localName Local part of qualified name of attribute node to get 235 * Get a literal result attribute by name. The name is namespaceURI:localname 238 * @param name Name of literal result attribute to get 251 AVT avt = (AVT) m_avts.get(i) [all...] |
/external/webkit/WebCore/page/ |
DOMWindow.cpp | 100 SecurityOrigin* targetOrigin() const { return m_targetOrigin.get(); } 220 DOMWindow* window = windows[i].get(); 262 DOMWindow* window = windows[i].get(); 485 return m_screen.get(); 492 return m_history.get(); 499 return m_locationbar.get(); 506 return m_menubar.get(); 513 return m_personalbar.get(); 520 return m_scrollbars.get(); 527 return m_statusbar.get(); [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
SSLSocketTest.java | 93 // Get the streams 102 "GET https://" + host + path + " HTTP/1.1"); 105 writer.println("GET https://" + host + path + " HTTP/1.1\r"); [all...] |
/external/stlport/src/ |
iostream.cpp | 90 // wrong types so that the constructors don't get run automatically. 224 istream* ptr_cin = new(&cin) istream(cin_buf.get()); cin_buf.release(); 225 ostream* ptr_cout = new(&cout) ostream(cout_buf.get()); cout_buf.release(); 226 ostream* ptr_cerr = new(&cerr) ostream(cerr_buf.get()); cerr_buf.release(); 227 /*ostream* ptr_clog = */ new(&clog) ostream(clog_buf.get()); clog_buf.release(); 238 wistream* ptr_wcin = new(&wcin) wistream(win.get()); win.release(); 239 wostream* ptr_wcout = new(&wcout) wostream(wout.get()); wout.release(); 240 wostream* ptr_wcerr = new(&wcerr) wostream(werr.get()); werr.release(); 241 /*wostream* ptr_wclog = */ new(&wclog) wostream(wlog.get()); wlog.release(); 338 if (cin_buf.get() != 0 && cout_buf.get() != 0 && cerr_buf.get() != 0 && clog_buf.get() != 0) [all...] |
/external/webkit/JavaScriptCore/qt/api/ |
qscriptvalue_p.h | 65 inline static QScriptValuePrivate* get(const QScriptValue& q); 66 inline static QScriptValue get(const QScriptValuePrivate* d); 67 inline static QScriptValue get(QScriptValuePrivate* d); 145 QScriptValuePrivate* QScriptValuePrivate::get(const QScriptValue& q) { return q.d_ptr.data(); } function in class:QScriptValuePrivate 147 QScriptValue QScriptValuePrivate::get(const QScriptValuePrivate* d) function in class:QScriptValuePrivate 152 QScriptValue QScriptValuePrivate::get(QScriptValuePrivate* d) function in class:QScriptValuePrivate 220 m_engine = QScriptEnginePrivate::get(engine); 235 m_engine = QScriptEnginePrivate::get(engine); 250 m_engine = QScriptEnginePrivate::get(engine); 265 m_engine = QScriptEnginePrivate::get(engine) [all...] |
/external/webkit/WebCore/css/ |
CSSFontSelector.cpp | 98 CSSValueList* familyList = static_cast<CSSValueList*>(fontFamily.get()); 102 CSSValueList* srcList = static_cast<CSSValueList*>(src.get()); 106 CSSValueList* rangeList = static_cast<CSSValueList*>(unicodeRange.get()); 118 CSSValueList* styleList = static_cast<CSSValueList*>(fontStyle.get()); 150 CSSValueList* weightList = static_cast<CSSValueList*>(fontWeight.get()); 206 CSSValueList* variantList = static_cast<CSSValueList*>(fontVariant.get()); 329 Vector<RefPtr<CSSFontFace> >* familyFontFaces = m_fontFaces.get(familyName); 481 Vector<RefPtr<CSSFontFace> >* familyFontFaces = m_fontFaces.get(family); 489 HashMap<unsigned, RefPtr<CSSSegmentedFontFace> >* segmentedFontFaceCache = m_fonts.get(family); 497 RefPtr<CSSSegmentedFontFace> face = segmentedFontFaceCache->get(traitsMask) [all...] |
/external/webkit/WebCore/editing/ |
InsertParagraphSeparatorCommand.cpp | 100 prepareEditingStyleToApplyAt(m_style.get(), endingSelection().start()); 103 applyStyle(m_style.get()); 226 // We can get here if we pasted a copied portion of a blockquote with a newline at the end and are trying to paste it 250 setEndingSelection(VisibleSelection(Position(parent.get(), 0), DOWNSTREAM)); 294 insertNodeAt(br.get(), insertionPosition); 295 insertionPosition = positionInParentAfterNode(br.get()); 336 appendNode(blockToInsert.get(), startBlock); 338 insertNodeAfter(blockToInsert.get(), startBlock); 349 appendNode(createBreakElement(document()).get(), blockToInsert.get()); [all...] |
/external/webkit/WebKit/win/ |
WebHistoryItem.cpp | 59 ASSERT(!historyItemWrappers().contains(m_historyItem.get())); 60 historyItemWrappers().set(m_historyItem.get(), this); 68 ASSERT(historyItemWrappers().contains(m_historyItem.get())); 69 historyItemWrappers().remove(m_historyItem.get()); 86 instance = historyItemWrappers().get(historyItem.get()); 186 historyItemWrappers().remove(m_historyItem.get()); 188 historyItemWrappers().set(m_historyItem.get(), this); 200 if (dailyVector.get()) 422 HRESULT hr = SafeArrayPutElement(children, &longI, item.get()); [all...] |
/frameworks/base/services/java/com/android/server/ |
TelephonyRegistry.java | 111 // handler before they get to app code. 140 r = mRecords.get(i); 223 if (mRecords.get(i).binder == binder) { 239 Record r = mRecords.get(i); 259 Record r = mRecords.get(i); 275 Record r = mRecords.get(i); 300 Record r = mRecords.get(i); 319 Record r = mRecords.get(i); 338 Record r = mRecords.get(i); 364 Record r = mRecords.get(i) [all...] |
/hardware/ti/omap3/liboverlay/ |
v4l2_utils.c | 244 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FBUF, &fbuf, "get fbuf"); 256 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &format, "get format"); 267 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &format, "get output format"); 280 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &format, "get format"); 301 "get v4l2_overlay format"); 326 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &format, "get v4l2_overlay format"); 341 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_CROP, &crop, "get crop"); 359 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_CROP, &crop, "get crop"); 390 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FBUF, &fbuf, "get transparency enables"); 410 ret = v4l2_overlay_ioctl(fd, VIDIOC_G_FMT, &fmt, "get colorkey") [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
BundleTest.java | 159 // get would return null if nothing has been put into the Bundle,else get 163 method = "get", 167 assertNull(mBundle.get(KEY)); 169 assertNotNull(mBundle.get(KEY)); 171 assertNotNull(mBundle.get(KEY)); 518 assertEquals("one", ret.get(0)); 519 assertEquals("two", ret.get(1)); 520 assertEquals("three", ret.get(2)); 521 assertSpannableEquals(mSpannable, ret.get(3)) [all...] |
/cts/tools/host/src/com/android/cts/ |
HostUtils.java | 85 // And since DataBufferUShort is final, it can't be subclassed to get around 208 * Interface provided to rename files before they get zipped. 246 * Get the formatted time string. 258 int year = cal.get(Calendar.YEAR); 259 int month = cal.get(Calendar.MONTH) + 1; 260 int date = cal.get(Calendar.DATE); 261 int hour = cal.get(Calendar.HOUR_OF_DAY); 262 int min = cal.get(Calendar.MINUTE); 263 int sec = cal.get(Calendar.SECOND);
|
/dalvik/dx/src/com/android/dx/rop/code/ |
BasicBlockList.java | 66 public BasicBlock get(int n) { method in class:BasicBlockList 138 Insn insn = insns.get(j); 166 return get(idx); 178 BasicBlock one = get(i); 240 return labelToBlock(successors.get(0)); 247 return labelToBlock(successors.get(0)); 288 int label1 = succ1.get(i); 289 int label2 = succ2.get(i); 381 processReg(sources.get(i));
|