HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 151 - 175 of 6482) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/utility/
web_resource_unpacker.cc 27 scoped_ptr<base::Value> value; local
29 value.reset(base::JSONReader::Read(resource_data_));
30 if (!value.get()) {
35 if (!value->IsType(base::Value::TYPE_DICTIONARY)) {
39 parsed_json_.reset(static_cast<base::DictionaryValue*>(value.release()));
  /external/chromium_org/chrome_frame/crash_reporting/
crash_dll.cc 25 wchar_t value[1024]; local
26 DWORD ret = ::GetEnvironmentVariable(name, value, ARRAYSIZE(value));
  /external/chromium_org/chromeos/ime/
ibus_keymap.cc 30 return "ChromeOSFullscreen"; // TODO: Check this value
33 return "ChromeOSSwitchWindow"; // TODO: Check this value
94 char value[2]; local
95 value[0] = keyval;
96 value[1] = '\0';
97 return value;
  /external/chromium_org/content/browser/android/
content_startup_flags.cc 33 int value; local
34 if (base::StringToInt(limit, &value))
35 max_render_process_count = value;
  /external/chromium_org/content/common/
date_time_suggestion.h 21 // The date/time value represented as a double.
22 double value; member in struct:content::DateTimeSuggestion
23 // The localized value to be shown to the user.
edit_command.h 17 : name(n), value(v) {
21 std::string value; member in struct:content::EditCommand
  /external/chromium_org/extensions/common/
event_matcher.h 42 base::DictionaryValue* value() const { function in class:extensions::EventMatcher
  /external/chromium_org/net/base/
platform_mime_util_win.cc 18 std::wstring value, key = L"." + ext; local
20 L"Content Type", &value);
21 if (!value.empty()) {
22 *result = WideToUTF8(value);
  /external/chromium_org/net/tools/fetch/
fetch_server.cc 50 int value = table.GetRowValue(index); local
51 printf("%s:\t%d\n", name.c_str(), value);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptString.cpp 52 v8::Handle<v8::String> value = v8::Handle<v8::String>::Cast(v8Value()); local
53 return v8StringToWebCoreString<String>(value, Externalize);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 43 void V8SVGLength::valueAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
49 float value = imp.value(lengthContext, exceptionState); local
52 v8SetReturnValue(info, value);
55 void V8SVGLength::valueAttributeSetterCustom(v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
63 if (!isUndefinedOrNull(value) && !value->IsNumber() && !value->IsBoolean()) {
71 imp.setValue(static_cast<float>(value->NumberValue()), lengthContext, exceptionState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebTransformKeyframe.cpp 32 WebTransformKeyframe::WebTransformKeyframe(double time, PassOwnPtr<WebTransformOperations> value)
34 , m_value(value)
48 const WebTransformOperations& WebTransformKeyframe::value() const function in class:blink::WebTransformKeyframe
  /external/chromium_org/third_party/WebKit/Source/wtf/
OwnPtrCommon.h 42 static const bool value = IsSubclass<T, RefCountedBase>::value member in struct:WTF::IsRefCounted
43 || IsSubclass<T, ThreadSafeRefCountedBase>::value;
50 COMPILE_ASSERT(!IsRefCounted<T>::value, UseRefPtrForRefCountedObjects);
60 COMPILE_ASSERT(!IsRefCounted<T>::value, UseRefPtrForRefCountedObjects);
  /external/chromium_org/third_party/WebKit/public/web/
WebDateTimeSuggestion.h 38 double value; member in struct:blink::WebDateTimeSuggestion
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-shape.h 45 uint32_t value; member in struct:hb_feature_t
  /external/chromium_org/third_party/mesa/src/src/mesa/main/tests/
enum_strings.cpp 43 int value; member in struct:enum_info
54 _mesa_lookup_enum_by_nr(everything[i].value));
61 EXPECT_EQ(everything[i].value,
72 EXPECT_EQ(alternate_names[i].value,
82 /* Please type the name and the value. This makes it easier to detect
83 * enums with the same value but different names. The current list is
84 * sorted by enum value. Please keep it that way.
507 /* This should be included, but it's value collides with GL_HINT_BIT. The
    [all...]
  /external/chromium_org/third_party/opus/src/silk/
sort.c 47 opus_int32 value; local
60 /* Sort vector elements by value, increasing order */
62 value = a[ i ];
63 for( j = i - 1; ( j >= 0 ) && ( value < a[ j ] ); j-- ) {
64 a[ j + 1 ] = a[ j ]; /* Shift value */
67 a[ j + 1 ] = value; /* Write value */
74 value = a[ i ];
75 if( value < a[ K - 1 ] ) {
76 for( j = K - 2; ( j >= 0 ) && ( value < a[ j ] ); j-- )
96 opus_int value; local
140 opus_int value; local
    [all...]
  /external/chromium_org/third_party/skia/include/device/xps/
SkConstexprMath.h 17 static const uintmax_t value = 1 + SK_LOG<N/B, B>::value; member in struct:SK_LOG
21 static const uintmax_t value = 0; member in struct:SK_LOG
25 static const uintmax_t value = 0; member in struct:SK_LOG
31 static const uintmax_t value = (SK_2N1<N-1>::value << 1) + 1; member in struct:SK_2N1
35 static const uintmax_t value = 1; member in struct:SK_2N1
42 SK_LOG<SK_2N1<(sizeof(t) * CHAR_BIT)>::value, n>::value\
49 // Compile-time constant maximum value of two unsigned values
51 static const uintmax_t value = (b < a) ? a : b; member in struct:SkTUMax
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkHitTest.h 27 SkBool value; member in class:SkHitTest
  /external/chromium_org/tools/gn/
binary_target_generator.cc 57 const Value* value = scope_->GetValue(variables::kOutputName, true); local
58 if (!value)
60 if (!value->VerifyTypeIs(Value::STRING, err_))
62 target_->set_output_name(value->string_value());
  /external/chromium_org/tools/json_schema_compiler/test/
crossref_unittest.cc 15 DictionaryValue* value(new DictionaryValue());
16 value->SetWithoutPathExpansion("number", Value::CreateDoubleValue(1.1));
17 value->SetWithoutPathExpansion("integer", Value::CreateIntegerValue(4));
18 value->SetWithoutPathExpansion("string", Value::CreateStringValue("bling"));
19 value->SetWithoutPathExpansion("boolean", Value::CreateBooleanValue(true));
20 return scoped_ptr<DictionaryValue>(value);
58 scoped_ptr<DictionaryValue> value = CreateTestTypeDictionary(); local
    [all...]
error_generation_unittest.cc 18 base::string16 GetPopulateError(const base::Value& value) {
21 T::Populate(value, &test_type, &error);
36 scoped_ptr<DictionaryValue> value = Dictionary( local
38 EXPECT_TRUE(EqualsUtf16("", GetPopulateError<TestType>(*value)));
41 scoped_ptr<base::BinaryValue> value(new base::BinaryValue());
43 GetPopulateError<TestType>(*value)));
49 scoped_ptr<base::ListValue> value(new base::ListValue());
51 GetPopulateError<ChoiceType::Integers>(*value)));
54 scoped_ptr<base::BinaryValue> value(new base::BinaryValue())
64 scoped_ptr<DictionaryValue> value = Dictionary( local
114 scoped_ptr<DictionaryValue> value = Dictionary( local
119 scoped_ptr<DictionaryValue> value = Dictionary( local
148 scoped_ptr<DictionaryValue> value = Dictionary( local
173 scoped_ptr<DictionaryValue> value = Dictionary( local
178 scoped_ptr<DictionaryValue> value = Dictionary( local
187 scoped_ptr<DictionaryValue> value = Dictionary( local
192 scoped_ptr<DictionaryValue> value = Dictionary( local
203 scoped_ptr<DictionaryValue> value = Dictionary( local
208 scoped_ptr<DictionaryValue> value = Dictionary( local
    [all...]
functions_as_parameters_unittest.cc 12 // The expectation is that if any value is set for the function, then
20 DictionaryValue value; local
22 value.Set("event_callback", function_dict.DeepCopy());
24 ASSERT_TRUE(FunctionType::Populate(value, &out));
31 DictionaryValue value; local
33 value.Set("event_callback", function_dict.DeepCopy());
36 ASSERT_TRUE(FunctionType::Populate(value, &out));
37 EXPECT_TRUE(value.Equals(out.ToValue().get()));
40 DictionaryValue value; local
43 value.Set("event_callback", function_dict.DeepCopy())
60 DictionaryValue value; local
68 DictionaryValue value; local
86 DictionaryValue value; local
    [all...]
simple_api_unittest.cc 14 scoped_ptr<DictionaryValue> value(new DictionaryValue());
15 value->SetWithoutPathExpansion("number", Value::CreateDoubleValue(1.1));
16 value->SetWithoutPathExpansion("integer", Value::CreateIntegerValue(4));
17 value->SetWithoutPathExpansion("string", Value::CreateStringValue("bling"));
18 value->SetWithoutPathExpansion("boolean", Value::CreateBooleanValue(true));
19 return value.Pass()
119 scoped_ptr<DictionaryValue> value = CreateTestTypeDictionary(); local
129 scoped_ptr<DictionaryValue> value = CreateTestTypeDictionary(); local
137 scoped_ptr<DictionaryValue> value = CreateTestTypeDictionary(); local
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
util.cc 30 linked_ptr<base::Value>* out) {
31 const base::Value* value = NULL; local
32 if (!from.Get(index, &value))
34 *out = make_linked_ptr(value->DeepCopy());
63 void AddItemToList(const linked_ptr<base::Value>& from,
70 out->Append(static_cast<base::Value*>(from->DeepCopy()));
73 std::string ValueTypeToString(Value::Type type) {
75 case Value::TYPE_NULL:
77 case Value::TYPE_BOOLEAN
    [all...]

Completed in 1424 milliseconds

1 2 3 4 5 67 8 91011>>