HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 51 - 75 of 689) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/wrec/
Quantifier.h 39 enum Type {
46 Quantifier(Type type = None, unsigned min = 0, unsigned max = Infinity)
47 : type(type)
54 Type type; member in struct:JSC::WREC::Quantifier
  /external/webkit/WebCore/platform/sql/
SQLValue.h 39 enum Type { NullValue, NumberValue, StringValue };
46 Type type() const { return m_type; } function in class:WebCore::SQLValue
52 Type m_type;
  /frameworks/base/libs/rs/
rsSimpleMesh.h 35 ObjectBaseRef<const Type> mIndexType;
36 ObjectBaseRef<const Type> mPrimitiveType;
37 ObjectBaseRef<const Type> *mVertexTypes;
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 17 package com.android.dx.rop.type;
22 * Object which has an associated type, possibly itself.
27 * Gets the type associated with this instance.
29 * @return {@code non-null;} the type
31 public Type getType();
34 * Gets the frame type corresponding to this type. This method returns
35 * {@code this}, except if {@link Type#isIntlike} on the underlying
36 * type returns {@code true} but the underlying type is not i
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
LabelScope.h 41 enum Type { Loop, Switch, NamedLabel };
43 LabelScope(Type type, const Identifier* name, int scopeDepth, PassRefPtr<Label> breakTarget, PassRefPtr<Label> continueTarget)
45 , m_type(type)
64 Type type() const { return m_type; } function in class:JSC::LabelScope
70 Type m_type;
  /external/webkit/WebCore/editing/
ModifySelectionListLevel.h 57 enum Type { InheritedListType, OrderedList, UnorderedList };
58 static PassRefPtr<Node> increaseSelectionListLevelWithType(Document*, Type listType);
60 IncreaseSelectionListLevelCommand(Document*, Type);
63 Type m_listType;
  /external/webkit/WebCore/storage/
LocalStorageTask.h 42 enum Type { AreaImport, AreaSync, TerminateThread };
53 LocalStorageTask(Type, StorageAreaSync*);
54 LocalStorageTask(Type, LocalStorageThread*);
56 Type m_type;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstEnumRef.java 19 import com.android.dx.rop.type.Type;
22 * Constant type to represent a reference to a particular constant
23 * value of an enumerated type.
32 * @param nat {@code non-null;} the name-and-type; the defining class is derived
50 * <b>Note:</b> This returns the enumerated type.
52 public Type getType() {
CstByte.java 19 import com.android.dx.rop.type.Type;
23 * Constants of type {@code byte}.
76 public Type getType() {
77 return Type.BYTE;
CstChar.java 19 import com.android.dx.rop.type.Type;
23 * Constants of type {@code char}.
76 public Type getType() {
77 return Type.CHAR;
CstDouble.java 19 import com.android.dx.rop.type.Type;
23 * Constants of type {@code CONSTANT_Double_info}.
67 public Type getType() {
68 return Type.DOUBLE;
CstFieldRef.java 19 import com.android.dx.rop.type.Type;
22 * Constants of type {@code CONSTANT_Fieldref_info}.
28 * primitive type. For example, if given {@link Type#INT}, this
30 * {@code java.lang.Integer.TYPE}.
32 * @param primitiveType {@code non-null;} the primitive type
35 public static CstFieldRef forPrimitiveType(Type primitiveType) {
43 * @param definingClass {@code non-null;} the type of the defining class
44 * @param nat {@code non-null;} the name-and-type
    [all...]
CstFloat.java 19 import com.android.dx.rop.type.Type;
23 * Constants of type {@code CONSTANT_Float_info}.
68 public Type getType() {
69 return Type.FLOAT;
  /external/skia/src/effects/
SkPaintFlagsDrawFilter.cpp 11 bool SkPaintFlagsDrawFilter::filter(SkCanvas*, SkPaint* paint, Type)
18 void SkPaintFlagsDrawFilter::restore(SkCanvas*, SkPaint* paint, Type)
  /external/skia/src/animator/
SkScriptCallBack.h 9 enum Type {
21 virtual Type getType() const = 0;
26 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) = 0;
32 virtual Type getType() const { return kFunction; }
39 virtual Type getType() const { return kMember; }
47 virtual Type getType() const { return kMemberFunction; }
55 virtual Type getType() const { return kProperty; }
  /external/webkit/WebKit/android/
TimeCounter.h 45 enum Type {
67 static void record(enum Type type, const char* functionName);
68 static void recordNoCounter(enum Type type, const char* functionName);
72 static void start(enum Type type);
87 TimeCounterAuto(TimeCounter::Type type) :
88 m_type(type), m_startTime(getThreadMsec()) {
    [all...]
  /libcore/luni/src/main/java/java/net/
Proxy.java 20 * Proxy} stores a type and an address and is immutable. There are three types
30 * Represents the proxy type setting {@code Proxy.Type.DIRECT}. It tells
36 private Proxy.Type type; field in class:Proxy
42 * {@code null} when {@code type} is either {@code Proxy.Type.HTTP} or
43 * {@code Proxy.Type.SOCKS}. To create a {@code Proxy} instance representing
44 * the proxy type {@code Proxy.Type.DIRECT}, use {@code Proxy.NO_PROXY
82 public Proxy.Type type() { method in class:Proxy
    [all...]
ProxySelectorImpl.java 120 Proxy.Type type = Proxy.Type.DIRECT; local
131 type = Proxy.Type.HTTP;
136 type = Proxy.Type.HTTP;
142 type = Proxy.Type.SOCKS;
146 int defaultPort = (type == Proxy.Type.SOCKS) ? SOCKS_PROXY_POR
157 Proxy.Type type = Proxy.Type.DIRECT; local
185 Proxy.Type type = Proxy.Type.DIRECT; local
218 Proxy.Type type = Proxy.Type.DIRECT; local
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 24 import org.objectweb.asm.Type;
28 * a stub depending on the return type. Original annotations are passed along unchanged.
37 /** The method return type. Can be null. */
38 private Type mReturnType;
51 public StubMethodAdapter(MethodVisitor mv, String methodName, Type returnType,
78 int sort = mReturnType != null ? mReturnType.getSort() : Type.VOID;
80 case Type.VOID:
87 case Type.BOOLEAN:
88 case Type.CHAR:
89 case Type.BYTE
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
WildcardTypeTest.java 22 import java.lang.reflect.Type;
31 * Tests bounded type parameters declared on methods and bounded wildcards.
51 // * Tests that there are is one Type Parameter on the Class itself.
74 * Tests whether the type parameter is bounded by BoundedGenericMethods like:
83 Type[] bounds = typeParameter.getBounds();
85 Type bound = bounds[0];
90 Type genericParameterType = method.getGenericParameterTypes()[0];
95 Type[] actualTypeArguments = parameterizedType.getActualTypeArguments();
101 Type[] lowerBounds = wildcardType.getLowerBounds();
103 Type lowerBound = lowerBounds[0]
    [all...]
  /external/webkit/WebCore/xml/
XPathPredicate.h 44 virtual Value::Type resultType() const { return Value::NumberValue; }
54 virtual Value::Type resultType() const { return Value::StringValue; }
62 virtual Value::Type resultType() const { return Value::NumberValue; }
73 virtual Value::Type resultType() const { return Value::NumberValue; }
84 virtual Value::Type resultType() const { return Value::BooleanValue; }
95 virtual Value::Type resultType() const { return Value::BooleanValue; }
105 virtual Value::Type resultType() const { return Value::NodeSetValue; }
  /external/ppp/pppd/plugins/radius/etc/
dictionary 41 # RP-Upstream-Speed-Limit, number 1, type integer and vendor RoaringPenguin.
51 ATTRIBUTE Service-Type 6 integer
75 ATTRIBUTE Acct-Status-Type 40 integer
86 ATTRIBUTE NAS-Port-Type 61 integer
112 ATTRIBUTE Auth-Type 1000 integer
135 VALUE Service-Type Login-User 1
136 VALUE Service-Type Framed-User 2
137 VALUE Service-Type Callback-Login-User 3
138 VALUE Service-Type Callback-Framed-User 4
139 VALUE Service-Type Outbound-User
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
GeneratedMessageLite.java 65 // Defined here for return type covariance.
105 "This extension is for a different message type. Please make " +
106 "sure that you are not suppressing any generics type warnings.");
118 public final <Type> int getExtensionCount(
119 final GeneratedExtension<MessageType, List<Type>> extension) {
126 public final <Type> Type getExtension(
127 final GeneratedExtension<MessageType, Type> extension) {
133 return (Type) value;
139 public final <Type> Type getExtension
445 private final WireFormat.FieldType type; field in class:GeneratedMessageLite.ExtensionDescriptor
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForType.java 20 import java.lang.reflect.Type;
25 private Type ownerTypeRes;
40 public Type[] getActualTypeArguments() {
45 public Type getOwnerType() {
71 Type getResolvedType() {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java 54 args = {java.security.KeyRep.Type.class, java.lang.String.class, java.lang.String.class, byte[].class}
58 assertNotNull(new KeyRep(KeyRep.Type.SECRET, "", "", new byte[] {}));
64 assertNotNull(new KeyRep(KeyRep.Type.PUBLIC, "", "", new byte[] {}));
70 assertNotNull(new KeyRep(KeyRep.Type.PRIVATE, "", "", new byte[] {}));
80 args = {java.security.KeyRep.Type.class, java.lang.String.class, java.lang.String.class, byte[].class}
85 fail("NullPointerException has not been thrown (type)");
90 new KeyRep(KeyRep.Type.SECRET, null, "", new byte[] {});
96 new KeyRep(KeyRep.Type.PRIVATE, "", null, new byte[] {});
102 new KeyRep(KeyRep.Type.PUBLIC, "", "", null);
116 KeyRepChild kr = new KeyRepChild(KeyRep.Type.SECRET, "", ""
    [all...]

Completed in 1854 milliseconds

1 23 4 5 6 7 8 91011>>