OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FontSize
(Results
1 - 3
of
3
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
FontSize.java
25
public enum
FontSize
{
32
FontSize
(int value) {
37
* Create a
FontSize
object.
38
* @param value Integer value to be converted to a
FontSize
object.
39
* @return
FontSize
object whose value is {@code value}. If no
40
*
FontSize
object has that value, null is returned.
42
public static
FontSize
fromInt(int value) {
43
for (
FontSize
e :
FontSize
.values()) {
/external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpreferences.h
52
enum
FontSize
{
66
void setFontSize(
FontSize
type, int size);
67
int
fontSize
(
FontSize
type) const;
/external/webkit/Source/WebKit/qt/Api/
qwebsettings.h
92
enum
FontSize
{
105
void setFontSize(
FontSize
type, int size);
106
int
fontSize
(
FontSize
type) const;
107
void resetFontSize(
FontSize
type);
Completed in 234 milliseconds