HomeSort by relevance Sort by last modified time
    Searched refs:stable (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
sort.h 58 template<bool stable, typename RandomAccessIterator,
72 template<bool stable, typename RandomAccessIterator, typename Comparator>
80 parallel_sort_mwms<stable, true>
83 parallel_sort_mwms<stable, false>
95 template<bool stable, typename RandomAccessIterator, typename Comparator>
102 parallel_sort_mwms<stable, true>
114 template<bool stable, typename RandomAccessIterator, typename Comparator>
121 parallel_sort_mwms<stable, false>
132 template<bool stable, typename RandomAccessIterator, typename Comparator>
139 _GLIBCXX_PARALLEL_ASSERT(stable == false)
    [all...]
multiway_mergesort.h 242 template<bool stable, typename RandomAccessIterator, typename Comparator>
267 template<bool stable, typename SeqRandomAccessIterator,
312 template<bool stable, bool exact, typename RandomAccessIterator,
340 possibly_stable_sort<stable, SortingPlacesIterator, Comparator>()
375 stable,
395 template<bool stable, bool exact, typename RandomAccessIterator,
461 parallel_sort_mwms_pu<stable, exact>(&sd, comp);
multiway_merge.h 269 * Note that making the merging stable does <em>not</em> come at a
389 * Note that making the merging stable does <em>not</em> come at a
683 * @param stable The value must the same as for the used LoserTrees.
790 * Note that 3-way merging is always stable!
814 * Note that 3-way merging is always stable!
839 * Note that 4-way merging is always stable!
863 * Note that 4-way merging is always stable!
890 bool stable,
915 , LoserTreePointerUnguarded<stable, value_type, Comparator>
916 , LoserTreeUnguarded<stable, value_type, Comparator
    [all...]
losertree.h 157 * @brief Stable LoserTree variant.
159 * Provides the stable implementations of insert_start, init_winner,
164 template<bool stable/* default == true */, typename T, typename Comparator>
212 * This implementation is stable.
248 * Stability (non-stable here) is selected with partial specialization.
251 class LoserTree</* stable == */false, T, Comparator> :
389 * @brief Stable LoserTree implementation.
393 template<bool stable/* default == true */, typename T, typename Comparator>
470 * The stable variant is above.
473 class LoserTreePointer</* stable == */false, T, Comparator>
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_strnid.c 66 static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
206 if(!stable) return NULL;
207 idx = sk_ASN1_STRING_TABLE_find(stable, &fnd);
209 return sk_ASN1_STRING_TABLE_value(stable, idx);
219 if(!stable) stable = sk_ASN1_STRING_TABLE_new(sk_table_cmp);
220 if(!stable) {
238 if(new_nid) sk_ASN1_STRING_TABLE_push(stable, tmp);
245 tmp = stable;
247 stable = NULL
    [all...]
  /external/openssl/crypto/asn1/
a_strnid.c 66 static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
206 if(!stable) return NULL;
207 idx = sk_ASN1_STRING_TABLE_find(stable, &fnd);
209 return sk_ASN1_STRING_TABLE_value(stable, idx);
219 if(!stable) stable = sk_ASN1_STRING_TABLE_new(sk_table_cmp);
220 if(!stable) {
238 if(new_nid) sk_ASN1_STRING_TABLE_push(stable, tmp);
245 tmp = stable;
247 stable = NULL
    [all...]
  /external/javassist/src/main/javassist/compiler/
Javac.java 38 SymbolTable stable; field in class:Javac
66 stable = new SymbolTable();
89 ASTList mem = p.parseMember1(stable);
148 md = p.parseMethod2(stable, md);
212 SymbolTable stb = new SymbolTable(stable);
284 va.index(i), stable); local
313 index, stable); local
333 return gen.recordParams(params, isStatic, "$", "$args", "$$", stable);
362 use0, varNo, target, stable);
397 (useResultVar ? resultVarName : null), stable);
    [all...]
  /external/chromium_org/chrome/installer/linux/debian/
postinst 27 stable )
32 # Almost good enough to be the default. (Firefox stable should arguably be
build.sh 56 if [ "$CHANNEL" != "stable" ]; then
105 if [ "${CHANNEL}" != "stable" ] && \
151 echo "-c channel the package channel (trunk, asan, unstable, beta, stable)"
161 stable )
162 CHANNEL=stable
163 RELEASENOTES="http://googlechromereleases.blogspot.com/search/label/Stable%20updates"
262 REPOCONFIG="deb http://dl.google.com/linux/chrome/deb/ stable main"
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarOverlayLayout.java 119 // and the application has asked for stable content insets, then
144 final boolean stable = (visible&SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0;
147 // or the app has not turned on a stable UI mode (meaning they
149 mActionBar.enableContentAnimations(!stable);
150 if (barVisible || !stable) mActionBar.showForSystem();
197 final boolean stable = (vis & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0;
274 final boolean stable = (vis & SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0;
276 if (stable) {
277 // This is the standard space needed for the action bar. For stable measurement,
296 if (stable) {
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/test_data/api_data_source/
canned_trunk_fs.py 163 'channel': 'stable',
  /external/chromium_org/remoting/tools/win/
chromoting-set-channel.bat 38 echo Remote Desktop to get your machine back on the stable channel.
49 echo where ^<channel^> is 'beta' or 'stable'.
  /external/chromium_org/chrome/installer/linux/rpm/
build.sh 40 if [ "$CHANNEL" != "stable" ]; then
179 echo "-c channel the package channel (trunk, asan, unstable, beta, stable)"
189 stable )
190 CHANNEL=stable
195 REPLACES="stable beta"
199 REPLACES="unstable stable"
290 REPOCONFIG="http://dl.google.com/linux/${PACKAGE#google-}/rpm/stable"
  /external/chromium_org/chrome/common/extensions/docs/server2/
availability_finder.py 86 if api_info['channel'] == 'stable':
146 '''Checks for availability of an API, |api_name|, on the stable channel.
167 return available_channel == 'stable'
170 # stable in any of the _features.json files, or if the _features files
198 determined to be 'stable' at the given version.
200 if channel_info.channel == 'stable':
branch_utility.py 15 one of 'stable', 'beta', 'dev', or 'trunk'. |branch| and |version| correspond
68 return ('stable', 'beta', 'dev', 'trunk')
83 if channel_info.channel == 'stable':
84 stable_info = self.GetChannelInfo('stable')
94 if channel_info.channel == 'stable':
138 '''Given a |version| corresponding to a 'stable' version of Chrome, returns
141 return ChannelInfo('stable', self.GetBranchForVersion(version), version)
215 if channel_info.channel == 'stable' and version <= channel_info.version:
  /external/bison/
GNUmakefile 51 $(filter maintainer-% dist% alpha beta stable,$(MAKECMDGOALS)))
  /external/chromium_org/chrome/browser/resources/help/
help.js 28 channelList_: ['dev-channel', 'beta-channel', 'stable-channel'],
96 'stable-channel': {
97 'name': loadTimeData.getString('stable'),
287 // when user explicitly decides to update to a more stable
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 72 ContentResolver contentResolver, IContentProvider contentProvider, boolean stable) {
76 mStable = stable;
  /external/chromium_org/native_client_sdk/src/build_tools/
update_nacl_manifest.py 129 cros,stable,18.0.1025.168,2012-05-01 17:04:05.962578\n
132 win,stable,18.0.1025.168,2012-04-30 20:34:56.078490\n
133 mac,stable,18.0.1025.168,2012-04-30 20:34:55.231141\n
350 "19.0.1084.41". The channel is one of ('stable', 'beta', or 'dev').
440 "19.0.1084.41". The channel is one of ('stable', 'beta', 'dev',
640 # Make sure there is only one stable branch: the one with the max version.
641 # All others are post-stable.
643 in self.versions_to_update if channel == 'stable']
644 # Add 0 in case there are no stable versions.
687 # We always recommend the stable version
    [all...]
  /external/chromium_org/chrome/installer/linux/sysroot_scripts/
sysroot-creator-debian.wheezy.sh 466 [ ! -e "/etc/apt/trusted.gpg.d/debian-archive-wheezy-stable.gpg" ]; then
489 --keyring /etc/apt/trusted.gpg.d/debian-archive-wheezy-stable.gpg \
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_experimental.js 10 // the <webview> feature itself. <webview> is available in stable channel, but
  /frameworks/base/core/java/android/app/
ActivityThread.java     [all...]
  /bionic/libc/kernel/common/linux/
nfs_xdr.h 267 enum nfs3_stable_how stable; member in struct:nfs_writeargs
  /development/ndk/platforms/android-3/include/linux/
nfs_xdr.h 208 enum nfs3_stable_how stable; member in struct:nfs_writeargs

Completed in 1259 milliseconds

1 2 3 4