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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/inspector/front-end/
Resource.js 75 415: "Unsupported Media Type",
97 // Keep these in sync with WebCore::InspectorResource::Type
98 WebInspector.Resource.Type = {
108 isTextType: function(type)
110 return (type === this.Document) || (type === this.Stylesheet) || (type === this.Script) || (type === this.XHR);
113 toString: function(type)
115 switch (type) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
DalvCode.java 20 import com.android.dx.rop.type.Type;
165 public HashSet<Type> getCatchTypes() {
StdCatchBuilder.java 23 import com.android.dx.rop.type.Type;
24 import com.android.dx.rop.type.TypeList;
96 public HashSet<Type> getCatchTypes() {
97 HashSet<Type> result = new HashSet<Type>(20);
246 Type type = catches.getType(i); local
247 if (type.equals(Type.OBJECT))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
TypeListItem.java 20 import com.android.dx.rop.type.StdTypeList;
21 import com.android.dx.rop.type.Type;
22 import com.android.dx.rop.type.TypeList;
100 Type one = list.getType(i);
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 19 import com.android.dx.rop.type.StdTypeList;
20 import com.android.dx.rop.type.Type;
21 import com.android.dx.rop.type.TypeList;
22 import com.android.dx.rop.type.TypeBearer;
84 public Insn withAddedCatch(Type type) {
RegisterSpec.java 21 import com.android.dx.rop.type.Type;
22 import com.android.dx.rop.type.TypeBearer;
28 * Combination of a register number and a type, used as the sources and
46 /** {@code non-null;} type loaded or stored */
47 private final TypeBearer type; field in class:RegisterSpec
56 * @param type {@code non-null;} the type (or possibly actual value) which
61 private static RegisterSpec intern(int reg, TypeBearer type,
63 theInterningItem.set(reg, type, local)
599 private TypeBearer type; field in class:RegisterSpec.ForComparison
    [all...]
  /external/skia/include/xml/
SkDOM.h 43 enum Type {
47 Type getType(const Node*) const;
  /external/skia/src/views/
SkMetaData.cpp 53 this->set(rec->name(), rec->data(), rec->fDataLen, (Type)rec->fType, rec->fDataCount);
92 void* SkMetaData::set(const char name[], const void* data, size_t dataSize, Type type, int count)
98 (void)this->remove(name, type);
104 rec->fType = SkToU8(type);
106 rec->fType = type;
116 switch (type) {
133 SkASSERT(!"bad type");
216 const SkMetaData::Rec* SkMetaData::find(const char name[], Type type) cons
    [all...]
  /external/webkit/WebCore/html/
DateComponents.h 42 // * Month type: year-month
43 // * Date type: year-month-day
44 // * Week type: year-week
45 // * Time type: hour-minute-second-millisecond
46 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
110 // DateComponents type. The functions return true if it succeeds, and
113 // For Date type. Updates m_year, m_month and m_monthDay.
115 // For DateTime type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
117 // For DateTimeLocal type. Updates m_year, m_month, m_monthDay, m_hour, m_minute, m_second and m_millisecond.
119 // For Month type. Updates m_year and m_month
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasStyle.h 65 enum Type { ColorString, ColorStringWithAlpha, GrayLevel, RGBA, CMYKA, Gradient, ImagePattern };
67 Type m_type;
  /external/webkit/WebKit/chromium/public/
WebInputEvent.h 54 , type(Undefined)
79 // TODO(hbono): Issue 18064: remove the KeyDown type since it isn't
82 enum Type {
120 Type type; member in class:WebKit::WebInputEvent
124 // Returns true if the WebInputEvent |type| is a keyboard event.
125 static bool isKeyboardEventType(int type)
127 return type == RawKeyDown
128 || type == KeyDown
129 || type == KeyU
    [all...]
  /frameworks/base/libs/rs/
rsAdapter.h 31 // By policy this allocation will hold a pointer to the type
42 const Type * getBaseType() const {return mAllocation->getType();}
65 // By policy this allocation will hold a pointer to the type
74 const Type * getBaseType() const {return mAllocation->getType();}
  /external/chromium/base/i18n/
icu_string_conversions.cc 88 int uchar_len, OnStringConversionError::Type on_error,
123 void SetUpErrorHandlerForToUChars(OnStringConversionError::Type on_error,
162 OnStringConversionError::Type on_error,
177 OnStringConversionError::Type on_error,
212 OnStringConversionError::Type on_error,
241 OnStringConversionError::Type on_error,
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
TypeVariableTest.java 27 import java.lang.reflect.Type;
31 * Tests type variables and their properties.
39 notes = "Tests getGenericDeclaration of a type variable on a class.",
50 Type[] bounds = typeVariable.getBounds();
60 notes = "Tests getGenericDeclaration of a type variable on a method.",
72 Type[] bounds = typeVariable.getBounds();
108 Type[] bounds = typeVariable.getBounds();
197 Type[] bounds = typeVariable.getBounds();
213 Type[] bounds = typeVariable.getBounds();
GenericMethodsTests.java 26 import java.lang.reflect.Type;
31 * Tests unbounded type parameters declared on methods.
51 * Tests that there are no Type Parameters on the Class itself.
64 * Tests whether the specified method declares a type parameter T.
75 * type of the type parameter.
81 Type genericParameterType = method.getGenericParameterTypes()[0];
88 * Tests whether the type of the return type is the declared type parameter
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java 71 // Regression test for bug where referencing a FieldDescriptor.Type value
72 // before a FieldDescriptorProto.Type value would yield a
74 private static final Object STATIC_INIT_TEST = FieldDescriptor.Type.BOOL;
77 assertEquals(FieldDescriptor.Type.values().length,
78 FieldDescriptorProto.Type.values().length);
79 for (FieldDescriptor.Type type : FieldDescriptor.Type.values()) {
80 FieldDescriptorProto.Type protoType = type.toProto()
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 2 #include "Type.h"
75 Field::GatherTypes(set<Type*>* types) const
77 types->insert(this->variable->type);
87 fprintf(to, "%s %s", this->variable->type->QualifiedName().c_str(),
115 :type(NULL),
121 Variable::Variable(Type* t, const string& n)
122 :type(t),
128 Variable::Variable(Type* t, const string& n, int d)
129 :type(t),
140 Variable::GatherTypes(set<Type*>* types) cons
    [all...]
generate_java.cpp 3 #include "Type.h"
14 Variable* Get(Type* type);
29 VariableFactory::Get(Type* type)
34 Variable* v = new Variable(type, name);
49 StubClass(Type* type, Type* interfaceType);
58 void make_as_interface(Type* interfaceType)
    [all...]
  /external/webkit/WebCore/rendering/
SVGCharacterLayoutInfo.h 46 template<class Type>
47 class PositionedVector : public Vector<Type> {
49 PositionedVector<Type>()
62 ASSERT(m_position < Vector<Type>::size());
65 Type valueAtCurrentPosition() const
67 ASSERT(m_position < Vector<Type>::size());
68 return Vector<Type>::at(m_position);
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 24 import com.android.dx.rop.type.Type;
54 * exception type
70 * Adds new exception type and branch label to current "from-to" block
78 * exception type
83 CstType type; local
85 type = CstType.OBJECT;
87 type = CstType.intern(Type.internClassName(exception));
89 String s = type_branch.get(type);
195 CstType type = keys.nextElement(); local
    [all...]
  /frameworks/base/libs/rs/java/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 26 import android.renderscript.Type;
46 private Type mParamsType;
50 private Type mPixelType;
173 mParamsType = Type.createFromClass(mRS, Params.class, 1, "Parameters");
179 mPixelType = Type.createFromClass(mRS, Pixel.class, 1, "Pixel");
  /dalvik/dx/src/com/android/dx/cf/code/
LocalVariableList.java 20 import com.android.dx.rop.type.Type;
66 * given instances, where one instance should have only type
67 * descriptors and the other only type signatures. The merged
141 * @param descriptor {@code null-ok;} the variable's type descriptor
142 * @param signature {@code null-ok;} the variable's type signature
153 * in all respects but the type descriptor and signature, if any.
212 /** {@code null-ok;} the variable's type descriptor */
215 /** {@code null-ok;} the variable's type signature */
231 * @param descriptor {@code null-ok;} the variable's type descripto
    [all...]
  /external/chromium/third_party/icu/public/i18n/unicode/
fmtable.h 64 Formattable(); // Type kLong, value 0
184 * Selector for flavor of data type contained within a
186 * different types, and at any time contains exactly one type.
189 enum Type {
241 * Gets the data type of this Formattable object.
242 * @return the data type of this Formattable object.
245 Type getType(void) const;
248 * Returns TRUE if the data type of this Formattable object
256 * Gets the double value of this object. If this object is not of type
264 * Gets the double value of this object. If this object is of type
    [all...]
  /external/icu4c/i18n/unicode/
fmtable.h 69 Formattable(); // Type kLong, value 0
111 * Creates a Formattable object of an appropriate numeric type from a
204 * Selector for flavor of data type contained within a
206 * different types, and at any time contains exactly one type.
209 enum Type {
261 * Gets the data type of this Formattable object.
262 * @return the data type of this Formattable object.
265 Type getType(void) const;
268 * Returns TRUE if the data type of this Formattable object
276 * Gets the double value of this object. If this object is not of type
    [all...]
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.h 123 enum Type { EventBase, Syncbase, AccessKey };
124 Condition(Type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats = -1);
125 Type m_type;

Completed in 549 milliseconds

1 2 3 4 5 6 7 8 91011>>