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

1 2 34 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/rop/cst/
CstShort.java 19 import com.android.dx.rop.type.Type;
23 * Constants of type {@code short}.
77 public Type getType() {
78 return Type.SHORT;
CstString.java 19 import com.android.dx.rop.type.Type;
22 * Constants of type {@code CONSTANT_String_info}.
80 public Type getType() {
81 return Type.STRING;
  /external/webkit/JavaScriptCore/runtime/
PutPropertySlot.h 39 enum Type { Uncachable, ExistingProperty, NewProperty };
61 Type type() const { return m_type; } function in class:JSC::PutPropertySlot
70 Type m_type;
  /external/webkit/WebCore/xml/
XPathPath.h 50 virtual Value::Type resultType() const { return Value::NodeSetValue; }
69 virtual Value::Type resultType() const { return Value::NodeSetValue; }
83 virtual Value::Type resultType() const { return Value::NodeSetValue; }
  /external/webkit/WebKit/chromium/public/
WebCursorInfo.h 49 enum Type {
94 Type type; member in struct:WebKit::WebCursorInfo
100 // defined HCURSOR. If type is TypeCustom and externalHandle is non-
106 explicit WebCursorInfo(Type type = TypePointer)
107 : type(type)
  /frameworks/base/tools/aidl/
Type.cpp 1 #include "Type.h"
5 Type* VOID_TYPE;
6 Type* BOOLEAN_TYPE;
7 Type* BYTE_TYPE;
8 Type* CHAR_TYPE;
9 Type* INT_TYPE;
10 Type* LONG_TYPE;
11 Type* FLOAT_TYPE;
12 Type* DOUBLE_TYPE;
13 Type* STRING_TYPE
913 string type = v->type->QualifiedName(); local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 18 ATTRIBUTE MS-MPPE-Encryption-Type 8 string Microsoft
35 ATTRIBUTE MS-Acct-Auth-Type 23 integer Microsoft
36 ATTRIBUTE MS-Acct-EAP-Type 24 integer Microsoft
67 # MS-Acct-Auth-Type Values
69 VALUE MS-Acct-Auth-Type PAP 1
70 VALUE MS-Acct-Auth-Type CHAP 2
71 VALUE MS-Acct-Auth-Type MS-CHAP-1 3
72 VALUE MS-Acct-Auth-Type MS-CHAP-2 4
73 VALUE MS-Acct-Auth-Type EAP 5
75 # MS-Acct-EAP-Type Value
    [all...]
  /external/protobuf/src/google/protobuf/
generated_message_reflection.h 74 // It is required that the user represents fields of each type in a standard
76 // the appropriate type. For primitive fields and string fields, each field
77 // should be represented using the obvious C++ primitive type. Enums and
86 // of whatever type the individual field would be. Strings and
93 // descriptor: The descriptor for the message type being implemented.
114 // message, or -1 if the message type has no extension
120 // object_size: The size of a message object of this type, as measured
243 // Get a mutable pointer to a field with a message type.
288 template <typename Type>
289 inline const Type& GetRaw(const Message& message
    [all...]
  /frameworks/base/tools/preload/
Record.java 35 enum Type {
64 /** Type of record. */
65 final Type type; field in class:Record
82 case '>': type = Type.START_LOAD; break;
83 case '<': type = Type.END_LOAD; break;
84 case '+': type = Type.START_INIT; break
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 26 import com.android.dx.rop.type.Prototype;
27 import com.android.dx.rop.type.Type;
28 import com.android.dx.rop.type.TypeBearer;
178 Type type) {
185 machine.popArgs(frame, type);
194 machine.popArgs(frame, Type.INT);
200 machine.popArgs(frame, Type.LONG);
206 machine.popArgs(frame, Type.FLOAT)
    [all...]
BytecodeArray.java 28 import com.android.dx.rop.type.Type;
185 * to the {@code int} variant opcode, with the {@code type}
186 * argument set to indicate the actual type. E.g.,
188 * {@code type} is passed as {@code Type.FLOAT} in that
193 * variant opcode, with the {@code type} argument set to indicate
194 * the actual type. E.g., {@code aload} becomes {@code iload},
195 * but {@code type} is passed as {@code Type.OBJECT} i
889 CstType type; local
    [all...]
  /external/chromium/base/
task_unittest.cc 26 scoped_ptr<Callback1<int*>::Type> callback(
36 scoped_ptr<CallbackWithReturnValue<int>::Type> callback(
  /external/webkit/JavaScriptCore/debugger/
DebuggerCallFrame.h 38 enum Type { ProgramType, FunctionType };
55 Type type() const;
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.h 45 static QVariant variantFromObject(JSObject*, QMetaType::Type hint);
46 static bool canHandle(QMetaType::Type hint);
  /external/webkit/WebCore/html/
HTMLButtonElement.h 63 enum Type { SUBMIT, RESET, BUTTON };
66 Type m_type;
  /external/webkit/WebCore/page/
BarInfo.cpp 38 BarInfo::BarInfo(Frame* frame, Type type)
40 , m_type(type)
54 BarInfo::Type BarInfo::type() const function in class:WebCore::BarInfo
  /external/webkit/WebCore/storage/
LocalStorageTask.cpp 36 LocalStorageTask::LocalStorageTask(Type type, StorageAreaSync* area)
37 : m_type(type)
45 LocalStorageTask::LocalStorageTask(Type type, LocalStorageThread* thread)
46 : m_type(type)
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
GenericExceptionsTest.java 22 import java.lang.reflect.Type;
32 assertEquals(Arrays.<Type>asList(IOException.class),
38 assertEquals(Arrays.<Type>asList(IOException.class),
44 assertEquals(Arrays.<Type>asList(IOException.class),
50 assertEquals(Arrays.<Type>asList(IOException.class),
59 assertEquals(Arrays.<Type>asList(Throwable.class), Arrays.asList(typeVariable.getBounds()));
67 assertEquals(Arrays.<Type>asList(Throwable.class), Arrays.asList(typeVariable.getBounds()));
75 assertEquals(Arrays.<Type>asList(Exception.class), Arrays.asList(typeVariable.getBounds()));
80 Type[] exceptions = method.getGenericExceptionTypes();
84 assertEquals(Arrays.<Type>asList(Throwable.class), Arrays.asList(t.getBounds()))
    [all...]
OldGenericTypesTest.java 26 import java.lang.reflect.Type;
32 * Tests type parameters declared on classes.
80 Type[] genericParameterTypes = constructor.getGenericParameterTypes();
82 Type parameterType = genericParameterTypes[0];
98 Type[] genericParameterTypes = method.getGenericParameterTypes();
100 Type parameterType = genericParameterTypes[0];
117 Type[] genericParameterTypes = method.getGenericParameterTypes();
119 Type parameterType = genericParameterTypes[0];
138 //Type parameters
151 Type[] multipleGenericTypesTTypes = multipleGenericTypesT.getGenericParameterTypes()
    [all...]
  /external/webkit/WebCore/rendering/style/
SVGRenderStyleDefs.h 41 #define SVG_RS_DEFINE_ATTRIBUTE(Data, Type, Name, Initial) \
42 void set##Type(Data val) { svg_noninherited_flags.f._##Name = val; } \
44 static Data initial##Type() { return Initial; }
46 #define SVG_RS_DEFINE_ATTRIBUTE_INHERITED(Data, Type, Name, Initial) \
47 void set##Type(Data val) { svg_inherited_flags._##Name = val; } \
49 static Data initial##Type() { return Initial; }
53 #define SVG_RS_DEFINE_ATTRIBUTE_DATAREF(Data, Group, Variable, Type, Name) \
55 void set##Type(Data obj) { SVG_RS_SET_VARIABLE(Group, Variable, obj) }
57 #define SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(Data, Group, Variable, Type, Name, Initial) \
58 SVG_RS_DEFINE_ATTRIBUTE_DATAREF(Data, Group, Variable, Type, Name)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 17 package com.android.dx.rop.type;
34 /** {@code non-null;} return type */
35 private final Type returnType;
63 Type[] params = makeParameterArray(descriptor);
93 Type.intern(descriptor.substring(startAt, at));
97 Type returnType = Type.internReturnType(descriptor.substring(at));
118 private static Type[] makeParameterArray(String descriptor) {
150 return new Type[maxParams];
156 * method has an uninitialized object of type {@code definer
    [all...]
  /development/host/windows/usb/api/
adb_interface_enum.h 86 static AdbObjectType Type() {
  /external/chromium/net/base/
escape.h 47 typedef uint32 Type;
94 UnescapeRule::Type rules);
96 UnescapeRule::Type rules);
108 UnescapeRule::Type rules,
  /external/protobuf/gtest/include/gtest/
gtest-test-part.h 50 enum Type {
59 TestPartResult(Type type,
63 : type_(type),
71 Type type() const { return type_; } function in class:testing::TestPartResult
99 Type type_;
  /external/webkit/WebCore/platform/chromium/
PlatformCursor.h 42 enum Type {
88 explicit PlatformCursor(int type = 0) : m_type(TypePointer) {}
90 PlatformCursor(Type type) : m_type(type) {}
99 Type type() const { return m_type; } function in class:WebCore::PlatformCursor
104 Type m_type;

Completed in 930 milliseconds

1 2 34 5 6 7 8 91011>>