HomeSort by relevance Sort by last modified time
    Searched refs:Values (Results 76 - 100 of 129) sorted by null

1 2 34 5 6

  /external/webkit/Source/WebCore/svg/
SVGFEColorMatrixElement.cpp 36 DEFINE_ANIMATED_NUMBER_LIST(SVGFEColorMatrixElement, SVGNames::valuesAttr, Values, values)
78 return colorMatrix->setValues(values());
140 // Use defaults if values is empty (SVG 1.1 15.10).
157 filterValues = values();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 202 public void loadKeyboard(EditorInfo editorInfo, Settings.Values settingsValues) {
236 Settings.Values.isKeyPreviewPopupEnabled(mPrefs, mResources),
237 Settings.Values.getKeyPreviewPopupDismissDelay(mPrefs, mResources));
300 final boolean isShift, Settings.Values settingsValues) {
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 36 /// not expected to take on certain values (those of the tombstone and
145 // For example, with NumBits == 4, we permit Values from [-7 .. 15].
518 // that have been filled in, we can propagate the values now.
622 ProfileListInit(ID, Values, EltTy);
637 assert(i < Values.size() && "List element index out of range!");
638 DefInit *DI = dynamic_cast<DefInit*>(Values[i]);
680 for (unsigned i = 0, e = Values.size(); i != e; ++i) {
682 Result += Values[i]->getAsString();
    [all...]
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store_unittest.cc 73 testing::Values(
113 testing::Values(
162 testing::Values(
224 testing::Values(
252 testing::Values(
261 // Verify that all the proxy prefs are set to the specified expected values.
config_dir_policy_provider_unittest.cc 81 // Test merging values from different files.
227 testing::Values(
configuration_policy_provider_mac_unittest.cc 201 testing::Values(
configuration_policy_provider_win_unittest.cc 359 testing::Values(
  /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);
  /external/chromium/chrome/browser/password_manager/
password_store_x_unittest.cc 745 testing::Values(NO_BACKEND));
748 testing::Values(FAILING_BACKEND));
751 testing::Values(WORKING_BACKEND));
  /external/guava/src/com/google/common/collect/
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/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 62 /// Configuration values for initial hash set sizes (log2).
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 469 llvm::Constant *Values[2] = { CS->getOperand(0), 0 };
471 Values[1] = llvm::ConstantExpr::getSub(CS->getOperand(1), Offset);
473 Values[1] = llvm::ConstantExpr::getAdd(CS->getOperand(1), Offset);
475 return llvm::ConstantStruct::get(CS->getType(), Values);
489 llvm::Constant *Values[2] = { Zero, Zero };
490 return llvm::ConstantStruct::getAnon(Values);
    [all...]
  /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
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java 103 public static class Values {
132 public Values(final SharedPreferences prefs, final Context context,
400 if (!Values.isShowSettingsKeyOption(res)) {
447 mKeyPreviewPopupDismissDelay.setEnabled(Values.isKeyPreviewPopupEnabled(prefs, res));
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 250 std::vector<char*> Values;
257 for (size_t I = 0, E = Values.size(); I != E; ++I) {
258 delete[] Values[I];
260 Values.clear();
280 Values.push_back(Dest);
522 /// ConstantExpr values.
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 89 // conflicting incoming values from the two switch blocks.
108 /// now be entries in it from the 'NewPred' block. The values that will be
349 /// Values vector.
375 // If there are a ton of values, we don't want to make a ginormous switch.
617 // which value (or set of values) this is.
623 return false; // Cannot handle multiple values coming to this block.
    [all...]
  /external/v8/test/mjsunit/
function-bind.js 59 // Values that would normally be in "this" when calling f_bound_this.
  /external/llvm/lib/CodeGen/
SplitKit.cpp 102 // First get all the defs from the interval values. This provides the correct
322 Values.clear();
356 // Use insert for lookup, so we can add missing values with a second lookup.
358 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
383 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
714 // Find the nearest common dominator for parent values with multiple
730 // Keep directly defined parent values. This is either a PHI or an
738 // Skip the singly mapped values. There is nothing to gain from hoisting a
740 if (Values.lookup(std::make_pair(0, ParentVNI->id)).getPointer()) {
803 /// transferValues - Transfer all possible values to the new live ranges
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java 50 * <em>not</em> permit the use of <tt>null</tt> keys or values because some
51 * null return values cannot be reliably distinguished from the absence of
60 * @param <V> the type of mapped values
111 * using otherwise impossible field values). Using plain nodes
289 * Values: v, value
328 /** Lazily initialized values collection */
329 private transient Values values; field in class:ConcurrentSkipListMap
341 values = null;
358 * Nodes hold keys and values, and are singly linked in sorte
1734 public Collection<V> values() { method in class:ConcurrentSkipListMap
2920 public Collection<V> values() { method in class:ConcurrentSkipListMap.SubMap
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_pref_value_map_unittest.cc 8 #include "base/values.h"
336 testing::Values(
  /external/chromium/net/http/
http_proxy_client_socket_pool_unittest.cc 222 ::testing::Values(HTTP, HTTPS, SPDY));
  /external/chromium/net/socket/
transport_client_socket_unittest.cc 172 ::testing::Values(TCP));
  /external/chromium/testing/gtest/test/
gtest_output_test_.cc 102 testing::Values(2));
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 563 TEST_F(ParseEnumTest, Values) {
878 "1:34: Messages can't have default values.\n");
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
SDL_sysjoystick.c 700 int values[5]; local
702 if ( ioctl(fd, EVIOCGABS(i), values) < 0 )
706 printf("Values = { %d, %d, %d, %d, %d }\n",
707 values[0], values[1],
708 values[2], values[3], values[4]);
711 if ( values[1] == values[2] )
    [all...]

Completed in 1671 milliseconds

1 2 34 5 6