HomeSort by relevance Sort by last modified time
    Searched defs:end (Results 151 - 175 of 4044) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/trie_policy/
string_trie_e_access_traits_imp.hpp 64 end(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
90 return (r_key.end());
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/bin_search_tree_/
iterators_fn_imps.hpp 60 end() function in class:PB_DS_CLASS_C_DEC
68 end() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/cc_hash_table_map_/
iterators_fn_imps.hpp 64 end() function in class:PB_DS_CLASS_C_DEC
81 end() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/gp_hash_table_map_/
iterator_fn_imps.hpp 64 end() function in class:PB_DS_CLASS_C_DEC
81 end() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/pat_trie_/
iterators_fn_imps.hpp 56 end() function in class:PB_DS_CLASS_C_DEC
62 end() const function in class:PB_DS_CLASS_C_DEC
72 return --end();
82 return --end();
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/trie_policy/
trie_string_access_traits_imp.hpp 64 end(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
90 return (r_key.end());
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/bin_search_tree_/
iterators_fn_imps.hpp 60 end() function in class:PB_DS_CLASS_C_DEC
68 end() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/cc_hash_table_map_/
iterators_fn_imps.hpp 64 end() function in class:PB_DS_CLASS_C_DEC
81 end() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/gp_hash_table_map_/
iterator_fn_imps.hpp 64 end() function in class:PB_DS_CLASS_C_DEC
81 end() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/pat_trie_/
iterators_fn_imps.hpp 56 end() function in class:PB_DS_CLASS_C_DEC
62 end() const function in class:PB_DS_CLASS_C_DEC
72 return --end();
82 return --end();
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/trie_policy/
trie_string_access_traits_imp.hpp 64 end(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
90 return (r_key.end());
  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 40 string::size_type end = str.find_last_not_of(WHITESPACE); local
41 if (start == string::npos || end == string::npos) {
44 result = str.substr(start, end - start + 1);
  /system/core/libcutils/
cpu_info.c 32 char* chp, *end; local
56 end = chp;
57 while (*end && *end != ' ' && *end != '\t' && *end != '\n' && *end != '\r')
58 ++end;
59 *end = 0;
  /bionic/libc/bionic/
strntoumax.c 52 const unsigned char* end = p + n; local
58 while (p < end && isspace(*p))
62 if (p < end) {
71 if ( p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X') ) {
74 } else if ( p+1 < end && p[0] == '0' ) {
81 if ( p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X') ) {
86 while ( p < end && (d = digitval(*p)) >= 0 && d < base ) {
  /cts/libs/commonutil/src/com/android/cts/util/
MeasureTime.java 35 long end = System.currentTimeMillis(); local
36 result[i] = end - start;
  /cts/suite/cts/deviceTests/dram/jni/
MemoryNativeJni.cpp 47 double end = currentTimeMillis(); local
50 return end - start;
67 double end = currentTimeMillis(); local
69 return end - start;
  /cts/suite/cts/deviceTests/opengl/jni/primitive/
GLPrimitive.cpp 56 // Records the end time.
57 double end = GLUtils::currentTimeMillis(); local
60 double times[] = {start, end};
  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 64 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1; local
67 hasMore = (remaining != end)
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLCharacterRecognizer.java 55 int end = start + length; local
57 for (int s = start; s < end; s++)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
OIDTokenizer.java 34 int end = oid.indexOf('.', index); local
36 if (end == -1)
43 token = oid.substring(index, end);
45 index = end + 1;
  /external/chromium/chrome/browser/automation/
automation_provider_list.h 30 const_iterator end() { function in class:AutomationProviderList
31 return automation_providers_.end();
  /external/chromium/chrome/browser/extensions/
pending_extension_manager.h 56 const_iterator end() const { return pending_extension_map_.end(); } function in class:PendingExtensionManager
  /external/chromium/chrome/browser/ui/gtk/
accelerators_gtk.h 27 const_iterator const end() { function in class:AcceleratorsGtk
28 return all_accelerators_.end();
  /external/chromium/googleurl/src/
url_canon_mailtourl.cc 70 int end = parsed.path.end(); local
71 for (int i = parsed.path.begin; i < end; ++i) {
74 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
url_canon_pathurl.cc 62 int end = parsed.path.end(); local
63 for (int i = parsed.path.begin; i < end; i++) {
66 success &= AppendUTF8EscapedChar(source.path, &i, end, output);

Completed in 334 milliseconds

1 2 3 4 5 67 8 91011>>