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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/gn/
scope_per_file_provider.cc 10 #include "tools/gn/value.h"
22 const Value* ScopePerFileProvider::GetProgrammaticValue(
47 const Value* ScopePerFileProvider::GetCurrentToolchain() {
49 current_toolchain_.reset(new Value(NULL,
55 const Value* ScopePerFileProvider::GetDefaultToolchain() {
57 default_toolchain_.reset(new Value(NULL,
64 const Value* ScopePerFileProvider::GetPythonPath() {
66 python_path_.reset(new Value(NULL,
72 const Value* ScopePerFileProvider::GetRootBuildDir() {
74 root_build_dir_.reset(new Value(NULL, DirectoryWithNoLastSlash
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
21 SIntMax Value::getSIntValue() const {
42 UIntMax Value::getUIntValue() const {
58 UIntMax Value::getPositiveIntValue() const {
66 /// Get the floating-point value of this object, extended to a long double.
69 FloatMax Value::getFloatValue() const {
77 __fp16 Value;
78 internal_memcpy(&Value, &Val, 4);
79 return Value;
83 float Value;
    [all...]
  /external/chromium_org/cc/resources/
tile_priority.cc 12 scoped_ptr<base::Value> WhichTreeAsValue(WhichTree tree) {
15 return scoped_ptr<base::Value>(new base::StringValue("ACTIVE_TREE"));
17 return scoped_ptr<base::Value>(new base::StringValue("PENDING_TREE"));
19 DCHECK(false) << "Unrecognized WhichTree value " << tree;
20 return scoped_ptr<base::Value>(new base::StringValue(
21 "<unknown WhichTree value>"));
25 scoped_ptr<base::Value> TileResolutionAsValue(
29 return scoped_ptr<base::Value>(new base::StringValue("LOW_RESOLUTION"));
31 return scoped_ptr<base::Value>(new base::StringValue("HIGH_RESOLUTION"));
33 return scoped_ptr<base::Value>(new base::StringValue
    [all...]
raster_mode.h 11 class Value;
24 scoped_ptr<base::Value> RasterModeAsValue(RasterMode mode);
  /external/chromium_org/chrome/browser/prefs/tracked/
tracked_preference.h 12 class Value;
21 // Notifies the underlying TrackedPreference about its new |value| which
23 virtual void OnNewValue(const base::Value* value,
26 // Verifies that the value of this TrackedPreference in |pref_store_contents|
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/
apple_event_util.h 11 class Value;
17 NSAppleEventDescriptor* ValueToAppleEventDescriptor(const base::Value* value);
  /external/chromium_org/chrome/browser/ui/webui/net_internals/
net_internals_ui.h 10 class Value;
17 // Returns a Value containing constants NetInternals needs to load a log file.
18 // Safe to call on any thread. Caller takes ownership of the returned Value.
19 static base::Value* GetConstants();
  /external/chromium_org/chrome/renderer/extensions/
notifications_native_handler.h 12 class Value;
28 // * |args| is used only to get the return value.
29 // * The return value contains the following keys:
35 const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/chromium_org/chromeos/dbus/
shill_property_changed_observer.h 11 class Value;
21 const base::Value& value) = 0;
  /external/chromium_org/components/policy/core/common/
mac_util.h 16 class Value;
21 // Converts a CFPropertyListRef to the equivalent base::Value. CFDictionary
27 POLICY_EXPORT scoped_ptr<base::Value> PropertyToValue(
  /external/chromium_org/components/url_matcher/
url_matcher_helpers.h 14 class Value;
20 // Converts a ValueList |value| of strings into a vector. Returns true if
22 bool GetAsStringVector(const base::Value* value, std::vector<std::string>* out);
  /external/chromium_org/content/browser/media/
webrtc_internals_ui_observer.h 11 class Value;
24 const base::Value* args) = 0;
  /external/chromium_org/extensions/browser/value_store/
value_store_change.h 27 const std::string& key, base::Value* old_value, base::Value* new_value);
34 // Gets the value of the setting before the change, or NULL if there was no
35 // old value.
36 const base::Value* old_value() const;
38 // Gets the value of the setting after the change, or NULL if there is no new
39 // value.
40 const base::Value* new_value() const;
46 const std::string& key, base::Value* old_value, base::Value* new_value)
    [all...]
  /external/chromium_org/extensions/common/
value_counter.h 13 class Value;
18 // Keeps a running count of Values, like map<Value, int>. Adding / removing
19 // values increments / decrements the count associated with a given Value.
22 // because there is no operator<() defined on Value, so we must iterate to find
23 // whether a Value is equal to an existing one.
29 // Adds |value| to the set and returns how many equal values are in the set
30 // after. Does not take ownership of |value|. In the case where a Value equal
31 // to |value| doesn't already exist in this map, this function makes a
32 // DeepCopy() of |value|
51 const base::Value* value() const { return value_.get(); } function in class:extensions::ValueCounter::Entry
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
HashTools.h 30 struct Value {
36 const Value* findValue(register const char* str, register unsigned len);
  /external/chromium_org/third_party/re2/util/
sparse_array.h 11 // uninitialized (having no value).
68 // any value at all, perhaps outside the range [0, size_) but perhaps not.
72 // complicated. An index i has a value in the array if and only if:
77 // as the value associated with index i.
99 template<typename Value>
160 // Set the value at index i to v.
161 inline iterator set(int i, Value v);
165 // Returns the value at index i
167 inline Value get(int i, Value defaultv) const
249 Value value() const { return second; } function in class:re2::SparseArray::IndexValue
    [all...]
  /external/regex-re2/util/
sparse_array.h 11 // uninitialized (having no value).
68 // any value at all, perhaps outside the range [0, size_) but perhaps not.
72 // complicated. An index i has a value in the array if and only if:
77 // as the value associated with index i.
99 template<typename Value>
160 // Set the value at index i to v.
161 inline iterator set(int i, Value v);
165 // Returns the value at index i
167 inline Value get(int i, Value defaultv) const
248 Value value() const { return second; } function in class:re2::SparseArray::IndexValue
    [all...]
  /external/chromium_org/extensions/renderer/
file_system_natives.h 20 void GetFileEntry(const v8::FunctionCallbackInfo<v8::Value>& args);
21 void GetIsolatedFileSystem(const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
25 void GetDOMError(const v8::FunctionCallbackInfo<v8::Value>& args);
runtime_custom_bindings.h 22 void OpenChannelToExtension(const v8::FunctionCallbackInfo<v8::Value>& args);
25 void OpenChannelToNativeApp(const v8::FunctionCallbackInfo<v8::Value>& args);
28 void GetManifest(const v8::FunctionCallbackInfo<v8::Value>& args);
29 void GetExtensionViews(const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
BaseContext.h 54 const PropertyCallbackInfo<Value>& info,
56 static void SetStyle(Local<String> name, Local<Value> value,
61 const PropertyCallbackInfo<Value>& info);
62 static void SetFillStyle(Local<String> name, Local<Value> value,
65 const PropertyCallbackInfo<Value>& info);
66 static void SetStrokeStyle(Local<String> name, Local<Value> value,
69 const PropertyCallbackInfo<Value>& info)
    [all...]
  /external/llvm/include/llvm/Object/
RelocVisitor.h 30 // The computed value after applying the relevant relocations.
31 int64_t Value;
33 // The width of the value; how many bytes to touch when applying the
36 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {}
37 RelocToApply() : Value(0), Width(0) {}
47 // previously computed value or just count paired relocations as a single
50 uint64_t Value = 0) {
56 return visitELF_X86_64_64(R, Value);
    [all...]
  /external/skia/experimental/SkV8Example/
BaseContext.h 54 const PropertyCallbackInfo<Value>& info,
56 static void SetStyle(Local<String> name, Local<Value> value,
61 const PropertyCallbackInfo<Value>& info);
62 static void SetFillStyle(Local<String> name, Local<Value> value,
65 const PropertyCallbackInfo<Value>& info);
66 static void SetStrokeStyle(Local<String> name, Local<Value> value,
69 const PropertyCallbackInfo<Value>& info)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_GetVLCInfo.c 43 * transform coefficient matrix, pSrcCoeff. The value should be 16
45 * value should be 4 for blocks of type CHROMADC.
52 * Return Value:
71 OMX_S32 Value;
123 Value = Buf [i];
124 if (Value == 1 || Value == -1)
129 Value == -1 ? Mask : 0;
134 Value -= (Value > 0 ? 1 : -1)
    [all...]
  /external/chromium_org/base/
value_conversions.h 8 // This file contains methods to convert things to a |Value| and back.
18 class Value;
20 // The caller takes ownership of the returned value.
22 BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path);
25 BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time);
  /external/chromium_org/chromeos/network/onc/
onc_test_utils.h 15 class Value;
30 // Checks that the pointer |actual| is not NULL but points to a value that
31 // equals |expected| (using Value::Equals). The intended use case is:
33 ::testing::AssertionResult Equals(const base::Value* expected,
34 const base::Value* actual);

Completed in 2086 milliseconds

1 2 34 5 6 7 8 91011>>