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

1 2 3 4 5 6 7 8 91011>>

  /art/test/005-annotations/src/android/test/anno/
IntToString.java 10 int from(); method in interface:IntToString
  /external/guava/guava/src/com/google/common/collect/
FluentIterable.java 39 * chained fashion. A {@code FluentIterable} can be created from an {@code Iterable}, or from a set
57 * .from(database.getClientList())
73 // checks on the _original_ iterable when FluentIterable.from is used.
89 public static <E> FluentIterable<E> from(final Iterable<E> iterable) { method in class:FluentIterable
100 * Construct a fluent iterable from another fluent iterable. This is obviously never necessary,
101 * but is intended to help call out cases where one migration from {@code Iterable} to
108 public static <E> FluentIterable<E> from(FluentIterable<E> iterable) {
151 return from(Iterables.cycle(iterable));
155 * Returns the elements from this fluent iterable that satisfy a predicate. Th
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
FluentIterable.java 38 * chained fashion. A {@code FluentIterable} can be created from an {@code Iterable}, or from a set
56 * .from(database.getClientList())
72 // checks on the _original_ iterable when FluentIterable.from is used.
88 public static <E> FluentIterable<E> from(final Iterable<E> iterable) { method in class:FluentIterable
99 * Construct a fluent iterable from another fluent iterable. This is obviously never necessary,
100 * but is intended to help call out cases where one migration from {@code Iterable} to
107 public static <E> FluentIterable<E> from(FluentIterable<E> iterable) {
150 return from(Iterables.cycle(iterable));
154 * Returns the elements from this fluent iterable that satisfy a predicate. Th
    [all...]
  /external/icu/icu4c/source/i18n/
zonemeta.h 21 UDate from; member in struct:OlsonToMetaMappingEntry
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char16_t_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from+10, 10) == 10)
    [all...]
char32_t_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from+10, 10) == 10)
    [all...]
char_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[10]= {0}; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from+10, 11) == 10)
    [all...]
wchar_t_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from+10, 11) == 10)
    [all...]
char16_t_in.pass.cpp 15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
char16_t_out.pass.cpp 15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
char32_t_in.pass.cpp 15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
char32_t_out.pass.cpp 15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
  /external/toybox/toys/lsb/
dmesg.c 40 char *data, *to, *from; local
46 data = to = from = xmalloc(size+1);
52 if (!(toys.optflags & FLAG_r)) while ((from - data) < size) {
53 if (from == data || from[-1] == '\n') {
56 if (*from == '<' && (to = strchr(from, '>'))) from = ++to;
57 if ((toys.optflags&FLAG_t) && *from == '[' && (to = strchr(from, ']')))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char16_t_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from+10, 10) == 10)
    [all...]
char32_t_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from+10, 10) == 10)
    [all...]
char_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[10]= {0}; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from+10, 11) == 10)
    [all...]
wchar_t_length.pass.cpp 14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from+10, 11) == 10)
    [all...]
  /external/compiler-rt/test/asan/TestCases/
strcat_strict.c 14 void test1(char *to, int to_size, char *from) {
16 char* r = strcat(to + to_size, from);
19 void test2(char *to, int to_size, char *from) {
22 char* r = strcat(to, from);
29 char *from = (char*)malloc(from_size); local
30 memset(from, 'z', from_size);
31 from[from_size - 1] = '\0';
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
42 free(from);
    [all...]
strncat_strict.c 14 void test1(char *to, int to_size, char *from) {
16 char* r = strncat(to + to_size, from, 2);
19 void test2(char *to, int to_size, char *from) {
22 char* r = strncat(to, from, 1);
29 char *from = (char*)malloc(from_size); local
30 memset(from, 'z', from_size);
31 from[from_size - 1] = '\0';
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
42 free(from);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalIterable.java 69 public static <E> MinimalIterable<E> from(final Collection<E> elements) { method in class:MinimalIterable
  /external/mockito/src/org/mockito/internal/stubbing/answers/
ClonesArguments.java 19 Object from = arguments[i]; local
20 Object newInstance = ObjenesisHelper.newInstance(from.getClass());
21 new LenientCopyTool().copyToRealObject(from, newInstance);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LayoutInflaterTest.java 20 layoutInflater = LayoutInflater.from(Robolectric.application);
26 assertSame(LayoutInflater.from(Robolectric.application), layoutInflater);
27 assertSame(LayoutInflater.from(new ContextWrapper(Robolectric.application)), layoutInflater);
  /external/v8/src/
heap-snapshot-generator-inl.h 14 HeapEntry* HeapGraphEdge::from() const { function in class:v8::internal::HeapGraphEdge
  /frameworks/base/core/java/android/speech/tts/
UtteranceProgressListener.java 11 * The callbacks specified in this method can be called from multiple threads.
56 * @param errorCode one of the ERROR_* codes from {@link TextToSpeech}
63 * Called when an utterance has been stopped while in progress or flushed from the
82 static UtteranceProgressListener from( method in class:UtteranceProgressListener
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerException.java 35 public static PackageManagerException from(PackageParserException e) method in class:PackageManagerException

Completed in 2432 milliseconds

1 2 3 4 5 6 7 8 91011>>