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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/004-annotations/src/android/test/anno/
IntToString.java 10 int from(); method in interface:IntToString
  /external/icu4c/i18n/
zonemeta.h 21 UDate from; member in struct:OlsonToMetaMappingEntry
  /external/smack/src/org/jivesoftware/smack/filter/
FromContainsFilter.java 26 * Filters for packets where the "from" field contains a specified value.
32 private String from; field in class:FromContainsFilter
35 * Creates a "from" contains filter using the "from" field part.
37 * @param from the from field value the packet must contain.
39 public FromContainsFilter(String from) {
40 if (from == null) {
43 this.from = from.toLowerCase()
    [all...]
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 17 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:NameMap
71 pConfig.scripts().sectionMap().append(map[i].from, map[i].to, exist);
ELFMCLinker.cpp 17 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:NameMap
  /ndk/sources/cxx-stl/llvm-libc++/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...]
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/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalIterable.java 66 public static <E> MinimalIterable<E> from(final Collection<E> elements) { method in class:MinimalIterable
MinimalSet.java 43 public static <E> MinimalSet<E> from(Collection<? extends E> contents) { method in class:MinimalSet
  /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/webkit/Source/WebCore/css/
CSSUnicodeRangeValue.h 37 static PassRefPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to)
39 return adoptRef(new CSSUnicodeRangeValue(from, to));
44 UChar32 from() const { return m_from; } function in class:WebCore::CSSUnicodeRangeValue
50 CSSUnicodeRangeValue(UChar32 from, UChar32 to)
51 : m_from(from)
  /frameworks/base/core/java/android/speech/tts/
UtteranceProgressListener.java 11 * The callbacks specified in this method can be called from multiple threads.
52 static UtteranceProgressListener from( method in class:UtteranceProgressListener
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegment.java 31 public int from; field in class:StrSegment
64 * @param from The start position
67 public StrSegment(String str, int from, int to) {
69 this.from = from;
  /bionic/libc/kernel/common/linux/netfilter/
xt_connbytes.h 4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
37 aligned_u64 from; member in struct:xt_connbytes_info::__anon406
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_connbytes.h 4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
30 aligned_u64 from; member in struct:xt_connbytes_info::__anon1054
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageInterstitial.java 56 CharSequence from = getIntent().getCharSequenceExtra(IncomingMessageView.KEY_FROM); local
59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg);
  /external/guava/guava/src/com/google/common/cache/
CacheLoader.java 86 * but only the entries for {@code keys} will be returned from {@code getAll}.
93 * @return a map from each key in {@code keys} to the value associated with that key;
105 public static <K, V> CacheLoader<K, V> from(Function<K, V> function) { method in class:CacheLoader
126 * Returns a {@code CacheLoader} which obtains values from a {@code Supplier} (independent of the
129 public static <V> CacheLoader<Object, V> from(Supplier<V> supplier) { method in class:CacheLoader
152 * Thrown to indicate that an invalid response was returned from a call to {@link CacheLoader}.
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheLoader.java 59 * but only the entries for {@code keys} will be returned from {@code getAll}.
66 * @return a map from each key in {@code keys} to the value associated with that key;
78 public static <K, V> CacheLoader<K, V> from(Function<K, V> function) { method in class:CacheLoader
99 * Returns a {@code CacheLoader} which obtains values from a {@code Supplier} (independent of the
102 public static <V> CacheLoader<Object, V> from(Supplier<V> supplier) { method in class:CacheLoader
125 * Thrown to indicate that an invalid response was returned from a call to {@link CacheLoader}.

Completed in 1103 milliseconds

1 2 3 4 5 6 7 8 91011>>