HomeSort by relevance Sort by last modified time
    Searched defs:to (Results 351 - 375 of 2261) sorted by null

<<11121314151617181920>>

  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 10 * Unless required by applicable law or agreed to in writing, software
66 ALOGE("Unable to create data source for '%s'.", uri);
73 ALOGE("Unable to instantiate an extractor for '%s'.", uri);
120 ALOGE("Failed to instantiate a MediaExtractor.");
194 ALOGE("unable to instantiate image track.");
230 ALOGV("%s failed to extract thumbnail, trying next decoder.", componentName.c_str());
269 ALOGE("extractor doesn't publish metadata, failed to initialize?");
313 ALOGV("unable to instantiate video track.");
351 ALOGV("%s failed to extract frame, trying next decoder.", componentName.c_str());
354 ALOGE("all codecs failed to extract frame.")
408 int to; member in struct:android::Map
    [all...]
  /frameworks/base/core/java/android/text/
Selection.java 10 * Unless required by applicable law or agreed to in writing, software
73 * Set the selection anchor to <code>start</code> and the selection edge
74 * to <code>stop</code>.
81 * Set the selection anchor to <code>start</code>, the selection edge
82 * to <code>stop</code> and the memory horizontal to <code>memory</code>.
101 * Update the memory position for text. This is used to ensure vertical navigation of lines
149 * Move the cursor to offset <code>index</code>.
163 * Move the selection edge to offset <code>index</code>.
170 * Move the selection edge to offset <code>index</code> and update the memory horizontal
312 int to = layout.getOffsetToLeftOf(end); local
337 int to = layout.getOffsetToRightOf(end); local
392 int to = layout.getOffsetToLeftOf(end); local
408 int to = layout.getOffsetToRightOf(end); local
    [all...]
  /frameworks/base/tests/net/java/com/android/server/connectivity/
LingerMonitorTest.java 10 * Unless required by applicable law or agreed to in writing, software
99 NetworkAgentInfo to = cellNai(101); local
101 mMonitor.noteLingerDefaultNetwork(from, to);
102 verifyNotification(from, to);
110 NetworkAgentInfo to = cellNai(101); local
112 mMonitor.noteLingerDefaultNetwork(from, to);
113 verifyToast(from, to);
121 NetworkAgentInfo to = cellNai(101); local
123 mMonitor.noteLingerDefaultNetwork(from, to);
124 verifyNotification(from, to);
135 NetworkAgentInfo to = cellNai(101); local
149 NetworkAgentInfo to = cellNai(101); local
239 NetworkAgentInfo to = cellNai(101); local
256 NetworkAgentInfo to = cellNai(101); local
268 NetworkAgentInfo to = cellNai(101); local
280 NetworkAgentInfo to = cellNai(101); local
291 NetworkAgentInfo to = cellNai(101); local
302 NetworkAgentInfo to = cellNai(101); local
    [all...]
  /frameworks/support/app-toolkit/common/src/test/java/androidx/collection/
SafeIterableMapTest.java 10 * Unless required by applicable law or agreed to in writing, software
38 SafeIterableMap<Integer, String> map = from(1, 2, 3, 4).to("a", "b", "c", "d");
57 SafeIterableMap<Integer, Integer> map1 = from(1, 2, 3, 4).to(10, 20, 30, 40);
58 SafeIterableMap<Integer, Integer> map2 = from(1, 2, 3, 4).to(10, 20, 30, 40);
98 SafeIterableMap<Integer, Integer> map1 = from(1, 2, 3, 4).to(1, 2, 3, 4);
99 SafeIterableMap<Integer, Integer> map2 = from(1, 2, 3, 4).to(1, 2, 3, 5);
120 SafeIterableMap<Integer, Integer> map = from(1, 2, 3, 4).to(10, 20, 30, 40);
122 assertThat(map, is(from(1, 2, 3, 4, 5).to(10, 20, 30, 40, 10)));
127 SafeIterableMap<Integer, Integer> map = from(1, 2, 3, 4).to(10, 20, 261, 40);
129 assertThat(map, is(from(1, 2, 3, 4).to(10, 20, 261, 40)))
496 public final <V> SafeIterableMap<K, V> to(V... values) { method in class:SafeIterableMapTest.MapBuilder
    [all...]
  /frameworks/support/samples/SupportSliceDemos/src/main/java/com/example/androidx/slice/demos/
SliceBrowser.java 10 * Unless required by applicable law or agreed to in writing, software
62 * Example use of SliceView. Uses a search bar to select/auto-complete a slice uri which is
95 final int[] to = new int[]{android.R.id.text1}; local
97 null, from, to, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
ItemTouchHelperTest.java 10 * Unless required by applicable law or agreed to in writing, software
317 RecyclerView.ViewHolder from, to; field in class:ItemTouchHelperTest.MoveRecord
319 MoveRecord(RecyclerView.ViewHolder from, RecyclerView.ViewHolder to) {
321 this.to = to;
323 toPos = to.getAdapterPosition();
  /libcore/ojluni/src/main/java/java/util/regex/
Matcher.java 9 * particular file as subject to the "Classpath" exception as provided
19 * 2 along with this work; if not, write to the Free Software Foundation,
37 * Pattern#matcher matcher} method. Once created, a matcher can be used to
42 * <li><p> The {@link #matches matches} method attempts to match the entire
45 * <li><p> The {@link #lookingAt lookingAt} method attempts to match the
69 * #appendTail appendTail} methods can be used in tandem in order to collect
71 * #replaceAll replaceAll} method can be used to create a string in which every
81 * <p> The explicit state of a matcher is initially undefined; attempting to
83 * IllegalStateException} to be thrown. The explicit state of a matcher is
94 * to zero
384 int to = matchOffsets[(group * 2) + 1]; local
423 int to = matchOffsets[(group * 2) + 1]; local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramSocketAdaptor.java 8 * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
37 // java.net.DatagramSocket so as to simplify tracking future changes to that
54 // passing a dummy DatagramSocketImpl object to aovid any native
185 long to = timeout; local
190 int result = dc.poll(Net.POLLIN, to);
196 to -= System.currentTimeMillis() - st;
197 if (to <= 0)
371 * A dummy implementation of DatagramSocketImpl that can be passed to th
    [all...]
SocketAdaptor.java 9 * particular file as subject to the "Classpath" exception as provided
19 * 2 along with this work; if not, write to the Free Software Foundation,
39 // The only aspects of java.net.Socket-hood that we don't attempt to emulate
41 // attempt to support) and the sending of urgent data. Otherwise an adapted
42 // socket should look enough like a real java.net.Socket to fool most of the
43 // developers most of the time, right down to the exception message strings.
46 // java.net.Socket so as to simplify tracking future changes to that class.
76 // Override this method just to protect against changes in the superclass
109 long to = timeout local
214 long to = timeout; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java 10 * Unless required by applicable law or agreed to in writing, software
44 * is actually only a pointer to either a {@link DayInfo} or an
72 * contains all of the data necessary to display that event, including the
192 * contains all of the data necessary to display that day header, including
200 /** The string representation of this day header, to be displayed */
254 time.setToNow(); // This is needed for gmtoff to be set
288 // we don't compute these ourselves because it seems to produce the
307 // we might get some extra events when querying, in order to
318 int to = Math.min(endDay, mMaxJulianDay); local
319 for (int day = from; day <= to; day++)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 10 * Unless required by applicable law or agreed to in writing, software
82 * up and ready to use. Do not use for real code.
83 * @param testTransport The Transport to inject and use for all future communication.
98 // Try to get local address in the proper format.
101 // Address Literal formatted in accordance to RFC2821 Sec. 4.1.3
114 * TODO may need to add code to fall back to HELO I switched it from
117 * We should really be paying more attention to the capabilities
164 // It is acceptable to hvae no authentication at all for SMTP
190 Address[] to = Address.fromHeader(message.mTo); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/datetime/
ZonePicker.java 10 * Unless required by applicable law or agreed to in writing, software
90 final int[] to = new int[] {android.R.id.text1, android.R.id.text2}; local
102 to);
110 * Set the text to the given {@link CharSequence} as is, instead of calling toString, so
111 * that additional information stored in the CharSequence is, like spans added to a
128 * @param tz TimeZone to be searched.
140 // If current timezone is in this list, move focus to it
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 10 * Unless required by applicable law or agreed to in writing, software
50 /* convert UTF-16BE character to NJ_CHAR format */
66 /* convert UTF-8 to UTF-16BE */
142 /* convert UTF-16BE to a UTF-8 */
239 /* Retrieve data pointers of dictionary from the dictionary library, and put to internal work area */
261 /* Execute the initialize method to initialize the internal work area */
356 /* If -1 was specified to base or high, clear that dictionary information structure */
419 /* If the link search feature is specified, set the predict search information to structure */
602 work->approxSet.to[ i ] = NULL;
630 NJ_CHAR* to; local
691 NJ_CHAR* to; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tic.h 4 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
24 * holders shall not be used in advertising or otherwise to promote the *
57 ** A null byte may be inserted here to mak
216 const char *to; member in struct:alias
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-port_test.cc 15 // contributors may be used to endorse or promote products derived from
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
51 // included, or there will be a compiler error. This trick is to
202 class To {
204 To(bool* converted) { *converted = true; } // NOLINT
209 To to = ::testing::internal::ImplicitCast_<To>(&converted); local
210 (void)to;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
VaryingConfiguration.java 10 * Unless required by applicable law or agreed to in writing, software
45 * The configuration will attempt to make its changed inherited value to be as
57 /** Bitmask of attributes to be varied/alternated from the parent */
65 * @param configuration the configuration to inherit from
79 * @param parent the configuration to inherit values from
92 * @param other the configuration to copy overrides from
93 * @param parent the parent to tie the configuration to for inheriting values
112 * Returns the alternate flags for this configuration. Corresponds to
272 double to = from + inchesPerBucket; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
app.c 17 along with GAS; see the file COPYING. If not, write to the Free
53 /* The pseudo-op for which we need to special-case `@' characters.
121 /* I370 uses single-quotes to delimit integer, float constants. */
142 /* This macro permits the processor to specify all characters which
145 backend uses this to support prefixes, which can confuse the
146 scrubber as to whether it is parsing operands or opcodes. */
151 /* The m68k backend wants to be able to change comment_chars. */
168 /* This macro permits the processor to specify all characters which
224 app is called asynchronously to the parsing of the .include's, so ou
358 char *to = tostart; local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/26.0.0/
lint-tests-26.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/26.0.0-beta6/
lint-tests-26.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/26.0.0-beta7/
lint-tests-26.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/26.0.0-rc1/
lint-tests-26.0.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0/
lint-tests-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-alpha7/
lint-tests-25.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-alpha9/
lint-tests-25.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-beta2/
lint-tests-25.0.0-beta2.jar 

Completed in 929 milliseconds

<<11121314151617181920>>