Searched refs:value (Results 426 - 450 of 13868) sorted by relevance

<<11121314151617181920>>

/external/icu4c/common/
H A Ducnv_ext.h54 * The lookup value of a unit points to another table that is to be searched
83 * which are output value limits in the data structure.
157 * Array of byte/value pairs for lookups for toUnicode conversion.
160 * a default value for when the lookup in this section yields no match.
172 * Each uint32_t contains an input byte value in bits 31..24 and the
173 * corresponding lookup value in bits 23..0.
174 * Interpret the value as follows:
175 * if(value==0) {
177 * } else if(value<0x1f0000) {
178 * partial match - use value a
[all...]
/external/skia/include/views/
H A DSkEvent.h108 * Return the event's unnamed 32bit field. Default value is 0
118 in value (if value is non-null). If there is no matching named field, return false
119 and ignore the value parameter.
121 bool findS32(const char name[], int32_t* value = NULL) const { return fMeta.findS32(name, value); }
123 in value (if value is non-null). If there is no matching named field, return false
124 and ignore the value parameter.
126 bool findScalar(const char name[], SkScalar* value
159 setS32(const char name[], int32_t value) argument
161 setScalar(const char name[], SkScalar value) argument
165 setString(const char name[], const SkString& value) argument
167 setString(const char name[], const char value[]) argument
169 setPtr(const char name[], void* value) argument
170 setBool(const char name[], bool value) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DEnumClass.h93 ALWAYS_INLINE EnumClass(Value value) : m_value(value) { }
95 ALWAYS_INLINE Value value() const { return m_value; }
104 ALWAYS_INLINE bool operator==(const Value value) { return m_value == value; }
105 ALWAYS_INLINE bool operator!=(const Value value) { return m_value != value; }
106 ALWAYS_INLINE bool operator<(const Value value) { return m_value < value; }
107 ALWAYS_INLINE bool operator<=(const Value value) { retur
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcoding.h22 extern void PutFixed32(std::string* dst, uint32_t value);
23 extern void PutFixed64(std::string* dst, uint64_t value);
24 extern void PutVarint32(std::string* dst, uint32_t value);
25 extern void PutVarint64(std::string* dst, uint64_t value);
26 extern void PutLengthPrefixedSlice(std::string* dst, const Slice& value);
28 // Standard Get... routines parse a value from the beginning of a Slice
29 // and advance the slice past the parsed value.
30 extern bool GetVarint32(Slice* input, uint32_t* value);
31 extern bool GetVarint64(Slice* input, uint64_t* value);
34 // Pointer-based variants of GetVarint... These either store a value
89 GetVarint32Ptr(const char* p, const char* limit, uint32_t* value) argument
[all...]
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHeaderParser.java26 public static void parseCacheControl(String value, CacheControlHandler handler) { argument
28 while (pos < value.length()) {
30 pos = skipUntil(value, pos, "=,");
31 String directive = value.substring(tokenStart, pos).trim();
33 if (pos == value.length() || value.charAt(pos) == ',') {
40 pos = skipWhitespace(value, pos);
45 if (pos < value.length() && value.charAt(pos) == '\"') {
48 pos = skipUntil(value, po
95 parseSeconds(String value) argument
[all...]
/external/srec/shared/src/
H A DLStringImpl.c40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG);
41 if (impl->value == NULL)
46 LSTRCPY(impl->value, L(""));
47 if (impl->value == NULL)
53 ESR_ReturnCode LString_Append(LString* self, const LCHAR* value) argument
58 needed = LSTRLEN(impl->value) + LSTRLEN(value) + 1;
62 LCHAR* temp = REALLOC(impl->value, sizeof(LCHAR) * (needed + (impl->size / 2)));
66 impl->value = temp;
68 LSTRCAT(impl->value, valu
[all...]
/external/chromium_org/chrome/test/webdriver/
H A Dwebdriver_basic_types.cc100 DictionaryValue* value = new DictionaryValue(); local
101 value->SetDouble("x", t.x());
102 value->SetDouble("y", t.y());
103 return value;
107 const Value* value, webdriver::Point* t) {
108 if (!value->IsType(Value::TYPE_DICTIONARY))
112 static_cast<const DictionaryValue*>(value);
121 bool ValueConversionTraits<webdriver::Point>::CanConvert(const Value* value) { argument
123 return SetFromValue(value, &t);
128 DictionaryValue* value local
106 SetFromValue( const Value* value, webdriver::Point* t) argument
134 SetFromValue( const Value* value, webdriver::Size* t) argument
149 CanConvert(const Value* value) argument
156 DictionaryValue* value = new DictionaryValue(); local
164 SetFromValue( const Value* value, webdriver::Rect* t) argument
181 CanConvert(const Value* value) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTests.cpp104 unsigned featuresSize = m_requiredFeatures.value.size();
106 String value = m_requiredFeatures.value.at(i); local
107 if (value.isEmpty() || !DOMImplementation::hasFeature(value, String()))
111 unsigned systemLanguageSize = m_systemLanguage.value.size();
113 String value = m_systemLanguage.value.at(i); local
114 if (value != defaultLanguage().substring(0, 2))
118 if (!m_requiredExtensions.value
124 parseAttribute(const QualifiedName& name, const AtomicString& value) argument
[all...]
H A DPatternAttributes.h66 void setX(const SVGLength& value) argument
68 m_x = value;
72 void setY(const SVGLength& value) argument
74 m_y = value;
78 void setWidth(const SVGLength& value) argument
80 m_width = value;
84 void setHeight(const SVGLength& value) argument
86 m_height = value;
90 void setViewBox(const FloatRect& value) argument
92 m_viewBox = value;
96 setPreserveAspectRatio(const SVGPreserveAspectRatio& value) argument
102 setPatternUnits(SVGUnitTypes::SVGUnitType value) argument
108 setPatternContentUnits(SVGUnitTypes::SVGUnitType value) argument
114 setPatternTransform(const AffineTransform& value) argument
120 setPatternContentElement(const SVGPatternElement* value) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.h89 inline SubstituteArg(const char* value) argument
90 : text_(value), size_(strlen(text_)) {}
91 inline SubstituteArg(const string& value) argument
92 : text_(value.data()), size_(value.size()) {}
104 inline SubstituteArg(char value) argument
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
106 inline SubstituteArg(short value) argument
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
108 inline SubstituteArg(unsigned short value) argument
110 SubstituteArg(int value) argument
112 SubstituteArg(unsigned int value) argument
114 SubstituteArg(long value) argument
116 SubstituteArg(unsigned long value) argument
118 SubstituteArg(long long value) argument
120 SubstituteArg(unsigned long long value) argument
122 SubstituteArg(float value) argument
124 SubstituteArg(double value) argument
126 SubstituteArg(bool value) argument
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.h89 inline SubstituteArg(const char* value) argument
90 : text_(value), size_(strlen(text_)) {}
91 inline SubstituteArg(const string& value) argument
92 : text_(value.data()), size_(value.size()) {}
104 inline SubstituteArg(char value) argument
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
106 inline SubstituteArg(short value) argument
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
108 inline SubstituteArg(unsigned short value) argument
110 SubstituteArg(int value) argument
112 SubstituteArg(unsigned int value) argument
114 SubstituteArg(long value) argument
116 SubstituteArg(unsigned long value) argument
118 SubstituteArg(long long value) argument
120 SubstituteArg(unsigned long long value) argument
122 SubstituteArg(float value) argument
124 SubstituteArg(double value) argument
126 SubstituteArg(bool value) argument
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicMaxAgeHandler.java44 public void parse(final SetCookie cookie, final String value) argument
49 if (value == null) {
50 throw new MalformedCookieException("Missing value for max-age attribute");
54 age = Integer.parseInt(value);
57 + value);
61 + value);
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_store_interface.cc25 Value* value) {
26 next_->Apply(policy, value);
33 Value* value) {
34 // Apply() takes ownership of |value|.
36 next_->Apply(policy, value);
38 delete value;
24 Apply(ConfigurationPolicyType policy, Value* value) argument
32 Apply(ConfigurationPolicyType policy, Value* value) argument
/external/chromium/chrome/browser/sync/syncable/
H A Dmodel_type_payload_map_unittest.cc30 scoped_ptr<DictionaryValue> value(ModelTypePayloadMapToValue(payloads));
31 EXPECT_EQ(2u, value->size());
32 ExpectStringValue("bookmarkpayload", *value, "Bookmarks");
33 ExpectStringValue("", *value, "Apps");
34 EXPECT_FALSE(value->HasKey("Preferences"));
/external/chromium/chrome/common/web_resource/
H A Dweb_resource_unpacker.cc27 scoped_ptr<Value> value; local
29 value.reset(base::JSONReader::Read(resource_data_, false));
30 if (!value.get()) {
35 if (!value->IsType(Value::TYPE_DICTIONARY)) {
39 parsed_json_.reset(static_cast<DictionaryValue*>(value.release()));
/external/chromium_org/chrome/browser/extensions/
H A Dextension_creator_filter.cc22 base::FilePath::CharType first_character = base_name.value()[0];
24 base_name.value()[base_name.value().length() - 1];
39 if (base_name.value() == FILE_PATH_LITERAL("__MACOSX")) {
46 DWORD file_attributes = ::GetFileAttributes(file_path.value().c_str());
H A Dextension_function_util.cc9 bool ReadOneOrMoreIntegers(base::Value* value, std::vector<int>* result) { argument
10 if (value->IsType(Value::TYPE_INTEGER)) {
12 if (!value->GetAsInteger(&v))
17 } else if (value->IsType(Value::TYPE_LIST)) {
18 base::ListValue* values = static_cast<base::ListValue*>(value);
/external/chromium_org/chrome/utility/
H A Dweb_resource_unpacker.cc27 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/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_post.c63 * otherwise, the semaphore value is incremented by one.
94 if (s->value < SEM_VALUE_MAX)
97 if (++s->value <= 0
100 s->value--;
104 if (++s->value <= 0
107 s->value--;
/external/chromium_org/ppapi/api/
H A Dpp_var.idl18 * An undefined value.
23 * A NULL value. This is similar to undefined, but JavaScript differentiates
29 * A boolean value, use the <code>as_bool</code> member of the var.
34 * A 32-bit integer value. Use the <code>as_int</code> member of the var.
39 * A double-precision floating point value. Use the <code>as_double</code>
84 * <code>as_bool</code> represents the value of this <code>PP_Var</code> as
91 * <code>as_int</code> represents the value of this <code>PP_Var</code> as
98 * <code>as_double</code> represents the value of this <code>PP_Var</code>
107 * <code>as_id</code> represents the value of this <code>PP_Var</code> as
117 * value o
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.h56 void append(PassRefPtr<CSSValue> value) { m_values.append(value); } argument
57 void prepend(PassRefPtr<CSSValue> value) { m_values.prepend(value); } argument
84 inline CSSValueList* toCSSValueList(CSSValue* value) argument
86 ASSERT_WITH_SECURITY_IMPLICATION(!value || value->isValueList());
87 return static_cast<CSSValueList*>(value);
90 inline const CSSValueList* toCSSValueList(const CSSValue* value) argument
92 ASSERT_WITH_SECURITY_IMPLICATION(!value || valu
103 CSSValueListInspector(CSSValue* value) argument
117 CSSValueListIterator(CSSValue* value) argument
119 CSSValue* value() const { return m_inspector.item(m_position); } function in class:WebCore::CSSValueListIterator
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DLineClampValue.h40 LineClampValue(int value, ELineClampType type) argument
42 , m_value(value)
46 int value() const { return m_value; } function in class:WebCore::LineClampValue
54 return value() == o.value() && isPercentage() == o.isPercentage();
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
H A Dglhd_context.h63 #define glhd_check(fmt, value, expr) \
64 ((value expr) ? (void)0 : debug_printf("galahad: %s:%u: Expected `%s %s`, got %s == " fmt "\n", __FUNCTION__, __LINE__, #value, #expr, #value, value))
/external/chromium_org/third_party/opus/src/silk/
H A Dsort.c47 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 <
96 opus_int value; local
140 opus_int value; local
[all...]
/external/chromium_org/tools/json_schema_compiler/test/
H A Dfunctions_as_parameters_unittest.cc12 // 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
60 DictionaryValue value; local
68 DictionaryValue value; local
86 DictionaryValue value; local
[all...]

Completed in 1755 milliseconds

<<11121314151617181920>>