HomeSort by relevance Sort by last modified time
    Searched defs:hint (Results 1 - 25 of 40) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DialerFilterRule.java 42 INode hint = node.appendChild(FQCN_EDIT_TEXT); local
43 hint.setAttribute(ANDROID_URI, ATTR_TEXT, "Hint");
44 hint.setAttribute(ANDROID_URI, ATTR_ID, "@android:id/hint"); //$NON-NLS-1$
45 hint.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
51 "@android:id/hint"); //$NON-NLS-1$
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
HelpersTest.java 33 String hint = "file:///com.android.providers.downloads/test"; local
37 hint,
41 assertEquals(hint, fileName);
  /frameworks/base/voip/java/android/net/rtp/
AudioCodec.java 112 AudioCodec hint = null; local
119 hint = codec;
127 hint = codec;
134 if (hint == null) {
137 if (hint == AMR && fmtp != null) {
  /external/ipsec-tools/src/racoon/
kmpstat.c 218 struct addrinfo hint, *ai; local
221 memset(&hint, 0, sizeof(hint));
222 hint.ai_family = PF_UNSPEC;
223 hint.ai_family = family;
224 hint.ai_socktype = SOCK_STREAM;
226 error = getaddrinfo(name, port, &hint, &ai);
  /external/freetype/src/cff/
cffobjs.h 75 FT_Bool hint; member in struct:CFF_GlyphSlotRec_
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 99 // Find the best physreg hist and the best virtreg hint.
103 // Don't recompute a target specific hint.
141 unsigned hint = copyHint(mi, li.reg, tri, mri); local
142 if (!hint)
144 float hweight = Hint[hint] += weight;
145 if (TargetRegisterInfo::isPhysicalRegister(hint)) {
146 if (hweight > bestPhys && LIS.isAllocatable(hint))
147 bestPhys = hweight, hintPhys = hint;
150 bestVirt = hweight, hintVirt = hint;
    [all...]
  /external/openssl/crypto/bio/
b_sock.c 671 struct addrinfo *res,hint; local
682 * e.g. Solaris, default to IPv6 without any hint. Also
685 memset(&hint,0,sizeof(hint));
686 hint.ai_flags = AI_PASSIVE;
693 hint.ai_family = AF_INET6;
700 hint.ai_family = AF_INET;
705 if ((*p_getaddrinfo.f)(h,p,&hint,&res)) break;
  /external/stlport/src/
locale.cpp 152 _Locale_name_hint *hint = 0; local
165 hint = impl->insert_ctype_facets(ctype_name, ctype_buf, hint);
166 hint = impl->insert_numeric_facets(numeric_name, numeric_buf, hint);
167 hint = impl->insert_time_facets(time_name, time_buf, hint);
168 hint = impl->insert_collate_facets(collate_name, collate_buf, hint);
169 hint = impl->insert_monetary_facets(monetary_name, monetary_buf, hint)
259 _Locale_name_hint *hint = 0; local
    [all...]
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 461 * @param hint the index at which to begin the search, 0 <= hint < n.
462 * The closer hint is to the result, the faster this method will run.
470 int base, int len, int hint) {
471 if (DEBUG) assert len > 0 && hint >= 0 && hint < len;
475 if (key.compareTo(a[base + hint]) > 0) {
476 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
477 int maxOfs = len - hint;
541 if (DEBUG) assert len > 0 && hint >= 0 && hint < len; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
locale.cpp 152 _Locale_name_hint *hint = 0; local
165 hint = impl->insert_ctype_facets(ctype_name, ctype_buf, hint);
166 hint = impl->insert_numeric_facets(numeric_name, numeric_buf, hint);
167 hint = impl->insert_time_facets(time_name, time_buf, hint);
168 hint = impl->insert_collate_facets(collate_name, collate_buf, hint);
169 hint = impl->insert_monetary_facets(monetary_name, monetary_buf, hint)
259 _Locale_name_hint *hint = 0; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiveFileInfo.java 94 String filename = null, hint = null; local
102 hint = metadataCursor.getString(0);
137 filename = choosefilename(hint);
239 private static String choosefilename(String hint) {
242 // First, try to use the hint from the application, if there's one
243 if (filename == null && !(hint == null) && !hint.endsWith("/") && !hint.endsWith("\\")) {
246 hint = hint.replace('\\', '/')
    [all...]
  /dalvik/vm/interp/
InterpState.h 200 JitHint hint:7; // Hint to apply to final code of run member in struct:JitCodeDesc
  /external/chromium/base/win/
pe_image.cc 281 UINT hint; local
282 for (hint = 0; hint < num_names; hint++) {
283 if (ordinals[hint] == count) {
284 name = reinterpret_cast<LPCSTR>(RVAToAddr(names[hint]));
290 hint = 0;
301 if (!callback(*this, ordinal_base + count, hint, name, func, forward,
370 WORD hint = 0; local
378 hint = import->Hint
463 WORD hint = 0; local
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 38 int hint = 0; local
40 hint = stream.available() + CHUNK;
43 if (hint < CHUNK) {
44 hint = CHUNK;
46 byte[] buf = new byte[hint];
  /external/freetype/src/pshinter/
pshrec.c 88 PS_Hint hint = 0; local
101 hint = table->hints + count - 1;
102 hint->pos = 0;
103 hint->len = 0;
104 hint->flags = 0;
109 *ahint = hint;
284 /* return last hint mask in a table, create one if the table is empty */
557 /* set a bit at a given index in the current hint mask */
567 /* get last hint mask */
673 PS_Hint hint = dim->hints.hints local
    [all...]
pshalgo.c 86 PSH_Hint hint = table->hints; local
89 for ( ; count > 0; count--, hint++ )
91 psh_hint_deactivate( hint );
92 hint->order = -1;
97 /* internal function to record a new hint */
102 PSH_Hint hint = table->hints + idx; local
107 FT_TRACE0(( "psh_hint_table_record: invalid hint index %d\n", idx ));
112 if ( psh_hint_is_active( hint ) )
115 psh_hint_activate( hint );
117 /* now scan the current active hint set to check *
270 PSH_Hint hint = &table->hints[idx]; local
405 PSH_Hint hint; local
854 PSH_Hint hint; local
1551 PSH_Hint hint = sort[nn]; local
1571 PSH_Hint hint = sort[nn]; local
1608 PSH_Hint hint = sort[nn]; local
1625 PSH_Hint hint = sort[nn]; local
1643 PSH_Hint hint = sort[nn]; local
1840 PSH_Hint hint = point->hint; local
    [all...]
pshalgo.h 31 /* handle to Hint structure */
34 /* hint bit-flags */
53 /* hint structure */
173 PSH_Hint hint; member in struct:PSH_PointRec_
233 (*PSH_HintFunc)( PSH_Hint hint,
  /external/v8/src/
lithium-allocator.h 253 LOperand* hint() const { return hint_; } function in class:v8::internal::UsePosition
254 void set_hint(LOperand* hint) { hint_ = hint; }
331 if (pos != NULL) return pos->hint();
504 void Define(LifetimePosition position, LOperand* operand, LOperand* hint);
508 LOperand* hint);
lithium-allocator.cc 718 LOperand* hint) {
732 range->AddUsePosition(position, unalloc_operand)->set_hint(hint);
740 LOperand* hint) {
745 range->AddUsePosition(position, unalloc_operand)->set_hint(hint);
914 LOperand* hint = to; local
918 hint = LiveRangeFor(phi->id())->FirstHint();
933 Use(block_start_position, curr_position, from, hint);
1240 LOperand* hint = NULL; local
1781 LOperand* hint = hinted_use->hint(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.h 98 unsigned hint; member in struct:JSC::SlowCaseEntry
103 , hint(h)
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 183 QVariant convertValueToQVariant(ExecState* exec, JSValue value, QMetaType::Type hint, int *distance, HashSet<JSObject*>* visitedObjects, int recursionLimit)
202 && hint != QMetaType::QString
203 && hint != (QMetaType::Type) qMetaTypeId<QVariant>())) {
211 if (hint == QMetaType::Void) {
214 hint = QMetaType::Double;
217 hint = QMetaType::Bool;
221 hint = QMetaType::QString;
224 hint = QMetaType::QDateTime;
227 hint = QMetaType::QRegExp;
231 hint = QMetaType::Double
250 qConvDebug() << "convertValueToQVariant: jstype is " << type << ", hint is" << hint; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 760 void GraphicsContext3D::hint(GC3Denum target, GC3Denum mode) function in class:WebCore::GraphicsContext3D
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 86 // HORIZONTAL ELLIPSIS "...", character for popup hint.
638 // Draw hint label.
640 final CharSequence hint = key.mHintLabel; local
660 // The hint label is placed just right of the key label. Used mainly on
667 // The hint label is placed at top-right corner of the key. Used mainly on tablet.
673 // The hint label is placed at top-right corner of the key. Used mainly on phone.
679 canvas.drawText(hint, 0, hint.length(), hintX, hintY, paint);
713 // Draw popup hint "..." at the bottom right corner of the key.
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp 2615 void WebGLRenderingContext::hint(GC3Denum target, GC3Denum mode) function in class:WebCore::__anon13303::WebGLRenderingContext
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp 1048 void GraphicsContext3D::hint(GC3Denum target, GC3Denum mode) function in class:WebCore::GraphicsContext3D
    [all...]

Completed in 1013 milliseconds

1 2