HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 301 - 325 of 8780) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/icu/source/common/
usetiter.cpp 18 * @param set set to iterate over
26 * Create an iterator. Convenience for when the contents are to be set later.
29 this->set = NULL;
39 * Returns the next element in the set.
40 * @return true if there was another element in the set.
62 string = (const UnicodeString*) set->strings->elementAt(nextString++);
67 * @return true if there was another element in the set.
95 string = (const UnicodeString*) set->strings->elementAt(nextString++);
100 *@param set the set to iterate over. This allows reuse of the iterator
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
linuxfdwalk_unittest.cc 28 #include <set>
42 std::set<int> *fds = static_cast<std::set<int> *>(data);
47 std::set<int> *fds = static_cast<std::set<int> *>(data);
51 // Checks that the set of open fds is exactly the given list.
52 static void CheckOpenFdList(std::set<int> fds) {
57 static void GetOpenFdList(std::set<int> *fds) {
63 std::set<int> fds;
66 // I have observed that the open set when starting a test is [0, 6]. Leake
    [all...]
  /external/icu4c/common/
usetiter.cpp 18 * @param set set to iterate over
26 * Create an iterator. Convenience for when the contents are to be set later.
29 this->set = NULL;
39 * Returns the next element in the set.
40 * @return true if there was another element in the set.
62 string = (const UnicodeString*) set->strings->elementAt(nextString++);
67 * @return true if there was another element in the set.
95 string = (const UnicodeString*) set->strings->elementAt(nextString++);
100 *@param set the set to iterate over. This allows reuse of the iterator
    [all...]
  /external/oprofile/libutil++/
cverb.cpp 63 set(false)
79 result.set = result.set || rhs.set;
87 result.set = result.set && rhs.set;
106 p_it.first->second->set = true;
122 return v.set ? cout : null_stream;
  /external/chromium_org/chrome/browser/extensions/
process_map.h 8 #include <set>
81 std::set<std::string> GetExtensionsInProcess(int process_id) const;
86 typedef std::set<Item> ItemSet;
  /external/chromium_org/chrome/browser/history/
most_visited_tiles_experiment.h 43 const std::set<std::string>& open_urls,
49 const std::set<std::string>& open_urls,
58 static bool ShouldRemoveURL(const std::set<std::string>& open_urls,
  /external/chromium_org/chrome/browser/
site_details.h 13 // Maps an ID representing each BrowsingInstance to a set of site URLs.
14 typedef base::hash_map<int32, std::set<GURL> > BrowsingInstanceSiteMap;
22 std::set<GURL> sites;
23 std::set<GURL> https_sites;
  /external/chromium_org/net/quic/crypto/
strike_register_test.cc 7 #include <set>
16 using std::set;
22 // simply set the random bytes to 0.
33 // The set must reject values created on or before its own creation time.
34 StrikeRegister set(10 /* max size */, 1000 /* current time */,
39 ASSERT_FALSE(set.Insert(nonce, 1000));
41 ASSERT_FALSE(set.Insert(nonce, 1000));
47 StrikeRegister set(10 /* max size */, 0 /* current time */,
52 ASSERT_TRUE(set.Insert(nonce, 0));
53 ASSERT_FALSE(set.Insert(nonce, 0))
    [all...]
  /external/chromium_org/ppapi/proxy/
plugin_message_filter.h 8 #include <set>
26 // The input is a pointer to a set that will be used to uniquify PP_Instances
30 PluginMessageFilter(std::set<PP_Instance>* seen_instance_ids);
47 std::set<PP_Instance>* seen_instance_ids_;
  /external/chromium_org/webkit/browser/appcache/
appcache_test_helper.h 8 #include <set>
26 std::set<GURL>* origins);
39 std::set<GURL>* origins_; // not owned
  /external/llvm/include/llvm/ADT/
DeltaAlgorithm.h 1 //===--- DeltaAlgorithm.h - A Set Minimization Algorithm -------*- C++ -*--===//
12 #include <set>
20 /// The result of the algorithm is a subset of the input change set which is
21 /// guaranteed to satisfy the predicate, assuming that the input set did. For
22 /// well formed predicates, the result set is guaranteed to be such that
27 /// (1) The predicate should return false on an empty set and true on the full
28 /// set.
29 /// (2) If the predicate returns true for a set of changes, it should return
30 /// true for all supersets of that set.
40 typedef std::set<change_ty> changeset_ty
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GravityComponent.java 37 mGravity.set(sDefaultGravity);
42 mScaledGravity.set(mGravity);
52 mGravity.set(sDefaultGravity);
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicColorMatrix.java 90 * Set the color matrix which will be applied to each cell of
93 * @param m The 4x4 matrix to set.
101 * Set the color matrix which will be applied to each cell of the image.
102 * This will set the alpha channel to be a copy.
104 * @param m The 3x3 matrix to set.
112 * Set the value to be added after the color matrix has been
132 * Set the value to be added after the color matrix has been
155 * Set a color matrix to convert from RGB to luminance. The alpha channel
161 mMatrix.set(0, 0, 0.299f);
162 mMatrix.set(1, 0, 0.587f)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
clear.pass.cpp 10 // <set>
12 // class set
16 #include <set>
24 typedef std::set<int> M;
44 typedef std::set<int, std::less<int>, min_allocator<int>> M;
empty.pass.cpp 10 // <set>
12 // class set
16 #include <set>
24 typedef std::set<int> M;
34 typedef std::set<int, std::less<int>, min_allocator<int>> M;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DataSourceType.java 30 public static int identifySourceType(MediaSet set) {
31 if (set == null) {
35 Path path = set.getPath();
  /external/bison/lib/
sigprocmask.c 114 sigismember (const sigset_t *set, int sig)
123 return (*set >> sig) & 1;
130 sigemptyset (sigset_t *set)
132 *set = 0;
137 sigaddset (sigset_t *set, int sig)
146 *set |= 1U << sig;
157 sigdelset (sigset_t *set, int sig)
166 *set &= ~(1U << sig);
178 sigfillset (sigset_t *set)
180 *set = ((2U << (NSIG - 1)) - 1) & ~ SIGABRT_COMPAT_MASK
    [all...]
  /external/chromium_org/third_party/re2/util/
sparse_array_test.cc 16 SparseArray<int> set(n);
33 ASSERT_TRUE(set.has_index(order[j]));
34 ASSERT_EQ(value[order[j]], set.get(order[j], -1));
39 ASSERT_FALSE(set.has_index(order[j]));
40 set.set(order[i], value[order[i]]);
44 for (SparseArray<int>::iterator i = set.begin(); i != set.end(); ++i) {
50 set.clear();
52 ASSERT_FALSE(set.has_index(i))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 88 retval.set(Calendar.DAY_OF_MONTH, day);
92 retval.set(Calendar.MONTH, Calendar.JANUARY);
94 retval.set(Calendar.MONTH, Calendar.FEBRUARY);
96 retval.set(Calendar.MONTH, Calendar.MARCH);
98 retval.set(Calendar.MONTH, Calendar.APRIL);
100 retval.set(Calendar.MONTH, Calendar.MAY);
102 retval.set(Calendar.MONTH, Calendar.JUNE);
104 retval.set(Calendar.MONTH, Calendar.JULY);
106 retval.set(Calendar.MONTH, Calendar.AUGUST);
108 retval.set(Calendar.MONTH, Calendar.SEPTEMBER)
    [all...]
  /external/regex-re2/util/
sparse_array_test.cc 16 SparseArray<int> set(n);
33 ASSERT_TRUE(set.has_index(order[j]));
34 ASSERT_EQ(value[order[j]], set.get(order[j], -1));
39 ASSERT_FALSE(set.has_index(order[j]));
40 set.set(order[i], value[order[i]]);
44 for (SparseArray<int>::iterator i = set.begin(); i != set.end(); ++i) {
50 set.clear();
52 ASSERT_FALSE(set.has_index(i))
    [all...]
  /developers/build/
gradlew.bat 8 @rem Set local scope for the variables with windows NT shell
12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
    [all...]
  /developers/build/templates/create/
gradlew.bat 8 @rem Set local scope for the variables with windows NT shell
12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
    [all...]
  /developers/samples/android/background/alarms/RepeatingAlarm/
gradlew.bat 8 @rem Set local scope for the variables with windows NT shell
12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
    [all...]
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/
gradlew.bat 8 @rem Set local scope for the variables with windows NT shell
12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
    [all...]
  /developers/samples/android/connectivity/network/BasicNetworking/
gradlew.bat 8 @rem Set local scope for the variables with windows NT shell
12 set DEFAULT_JVM_OPTS=
14 set DIRNAME=%~dp0
15 if "%DIRNAME%" == "" set DIRNAME=.
16 set APP_BASE_NAME=%~n0
17 set APP_HOME=%DIRNAME%
22 set JAVA_EXE=java.exe
27 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
29 echo Please set the JAVA_HOME variable in your environment to match the
35 set JAVA_HOME=%JAVA_HOME:"=%
    [all...]

Completed in 1630 milliseconds

<<11121314151617181920>>