Lines Matching full:value
72 /** Return the event's unnamed 32bit field. Default value is 0 */
80 in value (if value is non-null). If there is no matching named field, return false
81 and ignore the value parameter.
83 bool findS32(const char name[], int32_t* value = NULL) const { return fMeta.findS32(name, value); }
85 in value (if value is non-null). If there is no matching named field, return false
86 and ignore the value parameter.
88 bool findScalar(const char name[], SkScalar* value = NULL) const { return fMeta.findScalar(name, value); }
90 in value[] (if value is non-null), and return the number of SkScalars in count (if count is non-null).
91 If there is no matching named field, return false and ignore the value and count parameters.
94 /** Return the value of the named string field, or if no matching named field exists, return null.
98 in value (if value is non-null). If there is no matching named field, return false
99 and ignore the value parameter.
101 bool findPtr(const char name[], void** value) const { return fMeta.findPtr(name, value); }
102 bool findBool(const char name[], bool* value) const { return fMeta.findBool(name, value); }
104 /** Returns true if ethe event contains the named 32bit field, and if it equals the specified value */
105 bool hasS32(const char name[], int32_t value) const { return fMeta.hasS32(name, value); }
106 /** Returns true if ethe event contains the named SkScalar field, and if it equals the specified value */
107 bool hasScalar(const char name[], SkScalar value) const { return fMeta.hasScalar(name, value); }
108 /** Returns true if ethe event contains the named string field, and if it equals (using strcmp) the specified value */
109 bool hasString(const char name[], const char value[]) const { return fMeta.hasString(name, value); }
110 /** Returns true if ethe event contains the named pointer field, and if it equals the specified value */
111 bool hasPtr(const char name[], void* value) const { return fMeta.hasPtr(name, value); }
112 bool hasBool(const char name[], bool value) const { return fMeta.hasBool(name, value); }
115 void setS32(const char name[], int32_t value) { fMeta.setS32(name, value); }
117 void setScalar(const char name[], SkScalar value) { fMeta.setScalar(name, value); }
121 void setString(const char name[], const SkString& value) { fMeta.setString(name, value.c_str()); }
123 void setString(const char name[], const char value[]) { fMeta.setString(name, value); }
125 void setPtr(const char name[], void* value) { fMeta.setPtr(name, value); }
126 void setBool(const char name[], bool value) { fMeta.setBool(name, value); }
163 The real "time" will be computed automatically by sampling the clock and adding its value