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

1 2

  /external/chromium/chrome/browser/safe_browsing/
bloom_filter_unittest.cc 37 typedef std::set<SBPrefix> Values;
38 Values values; local
41 values.insert(value);
52 for (Values::const_iterator i = values.begin(); i != values.end(); ++i)
56 // we inserted, but of different values, and calculating what percentage are
62 if (values.count(value))
  /external/chromium/testing/gtest/include/gtest/
gtest-param-test.h 55 // class hierarchies), where the type of your parameter values.
58 // lifespan of the pointed values.
86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
89 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
90 // ValuesIn(container) - Yields values from a C-style array, an STL
94 // for the math savvy) of the values generated
101 // each with parameter values "meeny", "miny", and "moe".
105 Values("meeny", "miny", "moe"))
    [all...]
  /external/gtest/include/gtest/
gtest-param-test.h 52 // the type of your parameter values. TestWithParam<T> is itself derived
54 // you are responsible for managing the lifespan of the pointed values.
82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
83 // begin+step+step, ...}. The values do not
85 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
86 // ValuesIn(container) - Yields values from a C-style array, an STL
90 // for the math savvy) of the values generated
97 // each with parameter values "meeny", "miny", and "moe".
101 Values("meeny", "miny", "moe"))
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-param-test.h 55 // class hierarchies), where the type of your parameter values.
58 // lifespan of the pointed values.
86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
89 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
90 // ValuesIn(container) - Yields values from a C-style array, an STL
94 // for the math savvy) of the values generated
101 // each with parameter values "meeny", "miny", and "moe".
105 Values("meeny", "miny", "moe"))
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h 52 // the type of your parameter values. TestWithParam<T> is itself derived
54 // you are responsible for managing the lifespan of the pointed values.
82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
83 // begin+step+step, ...}. The values do not
85 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
86 // ValuesIn(container) - Yields values from a C-style array, an STL
90 // for the math savvy) of the values generated
97 // each with parameter values "meeny", "miny", and "moe".
101 Values("meeny", "miny", "moe"))
    [all...]
  /external/clang/include/clang/Driver/
Arg.h 26 /// derive the argument values efficiently. In addition, Arg
50 /// Does this argument own its values.
53 /// The argument values, as C strings.
54 SmallVector<const char *, 2> Values;
85 unsigned getNumValues() const { return Values.size(); }
87 return Values[N];
91 return Values;
96 if (Values[i] == Value)
106 /// options only render their values when rendered as a input
115 /// its values, for debugging and diagnostics
    [all...]
  /external/guava/src/com/google/common/collect/
SingletonImmutableMap.java 92 private transient ImmutableCollection<V> values; field in class:SingletonImmutableMap
94 @Override public ImmutableCollection<V> values() { method in class:SingletonImmutableMap
95 ImmutableCollection<V> v = values;
96 return (v == null) ? (values = new Values<V>(singleValue)) : v;
100 private static class Values<V> extends ImmutableCollection<V> {
103 Values(V singleValue) {
ImmutableMultimap.java 32 * An immutable {@link Multimap}. Does not permit null keys or values.
108 * value orderings, allows duplicate values, and performs better than
155 * Stores a collection of values with the same key in the built multimap.
157 * @throws NullPointerException if {@code key}, {@code values}, or any
158 * element in {@code values} is null. The builder is left in an invalid
161 public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
163 for (V value : values) {
170 * Stores an array of values with the same key in the built multimap.
175 public Builder<K, V> putAll(K key, V... values) {
176 return putAll(key, Arrays.asList(values));
330 Collection<V> values = map.get(key); local
474 private transient ImmutableCollection<V> values; typedefs
481 public ImmutableCollection<V> values() { method
    [all...]
RegularImmutableMap.java 35 private final transient Object[] table; // alternating keys and values
113 // deserialization should call entrySet(), keySet(), or values() on the
169 private transient ImmutableCollection<V> values; field in class:RegularImmutableMap
171 @Override public ImmutableCollection<V> values() { method in class:RegularImmutableMap
172 ImmutableCollection<V> v = values;
173 return (v == null) ? (values = new Values<V>(this)) : v;
177 private static class Values<V> extends ImmutableCollection<V> {
180 Values(RegularImmutableMap<?, V> map) {
ImmutableSortedMap.java 37 * An immutable {@link SortedMap}. Does not permit null keys or values.
346 * Associates all of the given map's keys and values in the built map.
524 private transient ImmutableCollection<V> values; field in class:ImmutableSortedMap
527 * Returns an immutable collection of the values in this map, sorted by the
530 @Override public ImmutableCollection<V> values() { method in class:ImmutableSortedMap
531 ImmutableCollection<V> v = values;
532 return (v == null) ? (values = new Values<V>(this)) : v;
536 private static class Values<V> extends ImmutableCollection<V> {
539 Values(ImmutableSortedMap<?, V> map)
    [all...]
  /external/clang/lib/Driver/
ArgList.cpp 152 SmallVector<const char *, 16> Values;
153 AddAllArgValues(Values, Id);
154 return std::vector<std::string>(Values.begin(), Values.end());
  /external/jhead/
gpsinfo.c 191 double Values[3];
224 Values[a] = ConvertAnyFormat(ValuePtr+a*ComponentSize, Format);
227 sprintf(TempString, FmtString, Values[0], Values[1], Values[2]);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===//
10 // This class gives values and types Unique ID's.
49 ValueList Values;
70 /// When a function is incorporated, this is the size of the Values list
104 /// getFunctionConstantRange - Return the range of values that corresponds to
111 const ValueList &getValues() const { return Values; }
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 74 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
75 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
  /external/webkit/Source/JavaScriptCore/wtf/
HashIterators.h 41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
53 Values values() { return Values(*this); } function in struct:WTF::HashTableConstIteratorAdapter
63 typedef HashTableValuesIterator<HashTableType, KeyType, MappedType> Values;
80 Values values() { return Values(*this); } function in struct:WTF::HashTableIteratorAdapter
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===//
10 // This class gives values and types Unique ID's.
49 ValueList Values;
70 /// When a function is incorporated, this is the size of the Values list
104 /// getFunctionConstantRange - Return the range of values that corresponds to
111 const ValueList &getValues() const { return Values; }
  /external/clang/lib/Rewrite/
DeltaTree.cpp 22 /// than binary trees, because they store multiple keys/values in each node.
69 /// Values - This tracks the SourceDelta's currently in this node.
71 SourceDelta Values[2*WidthFactor-1];
73 /// NumValuesUsed - This tracks the number of values this node currently
81 /// FullDelta - This is the full delta of all the values in this node and
95 return Values[i];
99 return Values[i];
138 Values[0] = IR.Split;
171 NewFullDelta += Values[i].Delta;
199 Values[i].Delta += Delta
    [all...]
  /external/clang/test/SemaCXX/
array-bounds.cpp 163 switch (myVal) { // expected-warning {{enumeration values 'enumB_X' and 'enumB_Z' not handled in switch}}
169 // Test that if all the values of an enum covered, that the 'default' branch
171 enum Values { A, B, C, D };
172 void test_all_enums_covered(enum Values v) {
  /external/llvm/lib/CodeGen/
SplitKit.h 267 /// Values - keep track of the mapping from parent values to values in the new
268 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
271 /// 2. (Null, false) - the value is mapped to multiple values in
279 ValueMap Values;
302 /// This is used for values whose live range doesn't match RegAssign exactly.
314 /// removeBackCopies - Remove the copy instructions that defines the values
327 /// transferValues - Transfer values to the new ranges.
331 /// extendPHIKillRanges - Extend the ranges of all values killed by origina
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 28 // runEnums - Print out enum values for all of the registers.
36 EmitSourceFileHeader("Target Register Enum Values", OS);
225 BitVector Values;
228 if (v >= Values.size())
229 Values.resize(((v/8)+1)*8); // Round up to the next byte.
230 Values[v] = true;
234 printBitVectorAsHex(OS, Values, 8);
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 28 * {@code null} values.
54 Values values = values(currentThread); local
55 if (values != null) {
56 Object[] table = values.table;
57 int index = hash & values.mask;
62 values = initializeValues(currentThread);
65 return (T) values.getAfterMiss(this);
87 Values values = values(currentThread) local
104 Values values = values(currentThread); local
120 Values values(Thread current) { method in class:ThreadLocal
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 134 /// Attributes values.
136 SmallVector<DIEValue*, 32> Values;
153 const SmallVector<DIEValue*, 32> &getValues() const { return Values; }
163 Values.push_back(Value);
392 /// DIEBlock - A block of values. Primarily used for location expressions.
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 48 typedef SetVector<Value*> Values;
74 /// These values must be passed in as live-ins to the function.
85 void findInputsOutputs(Values &inputs, Values &outputs);
87 Function *constructFunction(const Values &inputs,
88 const Values &outputs,
97 Values &inputs,
98 Values &outputs);
129 // containing PHI nodes merging values from outside of the region, and a
131 // incoming values from inside of the region
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 11 // engine, which structurally compares global values within a module.
120 /// The current mapping from old local values to new local values.
121 DenseMap<Value*, Value*> Values;
184 Values[L] = R;
372 // Ask the engine about global values.
428 // Fall out if the values have different kind.
440 return Values[L] == R || TentativeValues.count(std::make_pair(L, R));
443 return Values[L] == R;
468 Values[&*LI] = &*RI
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 74 private Values mValues;
81 mValues = new Values();
99 protected NewXmlFileCreationPage createMainPage(NewXmlFileWizard.Values values) {
100 return new NewXmlFileCreationPage(MAIN_PAGE_NAME, values);
357 * Specific New XML File wizard tied to the {@link ResourceFolderType#VALUES} type
367 setWindowTitle("New Android Values XML File");
368 super.mMainPage.setTitle("New Android Values XML File");
369 super.mMainPage.setDescription("Creates a new Android Values XML file.");
370 super.mMainPage.setInitialFolderType(ResourceFolderType.VALUES);
    [all...]

Completed in 584 milliseconds

1 2