HomeSort by relevance Sort by last modified time
    Searched defs:Types (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/bison/doc/
refcard.tex 347 \key{Define the union of all data types used in the parser.}
457 \section {Variables and Types}
  /libcore/libart/src/main/java/java/lang/reflect/
Constructor.java 40 import libcore.reflect.Types;
100 * Returns the exception types as an array of {@code Class} instances. If
111 * parameter types of this constructor. If the constructor was declared with
151 * Returns the generic parameter types as an array of {@code Type}
155 * @return the parameter types
170 * Returns the exception types as an array of {@code Type} instances. If
174 * @return an array of generic exception types
233 result.append(Types.getSignature(parameterType));
303 * <li>parameter types, separated by ',' (if any)
305 * <li>'throws' plus exception types, separated by ',' (if any
    [all...]
AbstractMethod.java 41 import libcore.reflect.Types;
140 * Returns an array of {@code Class} objects associated with the parameter types of this
144 * @return the parameter types
167 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericParameterTypes, false);
171 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericExceptionTypes, false);
270 Types.appendGenericType(sb, info.formalTypeParameters[i]);
280 Types.appendTypeName(sb, declaringClass);
283 Types.appendGenericType(sb, Types.getType(info.genericReturnType));
286 Types.appendTypeName(sb, declaringClass)
    [all...]
Field.java 41 import libcore.reflect.Types;
191 Types.appendGenericType(sb, getGenericType());
230 return Types.getSignature(getType());
    [all...]
Method.java 40 import libcore.reflect.Types;
63 // This is necessary for methods that have covariant return types.
150 * Returns the exception types as an array of {@code Class} instances. If
168 * types of this method. If the method was declared with no parameters, an
171 * @return the parameter types
207 * one method's return types is assignable to the other.
232 * Returns the parameter types as an array of {@code Type} instances, in
236 * @return the parameter types
247 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericParameterTypes, false);
258 * Returns the exception types as an array of {@code Type} instances. I
    [all...]
  /dalvik/hit/src/com/android/hit/
Types.java 19 public class Types {
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Types.java 2 public class Types
15 protected Types() { throw new RuntimeException("Stub!"); }
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
Types.java 19 public class Types {
39 public Types() {
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 48 CodeGen::CodeGenTypes &Types = CGM.getTypes();
51 IntTy = Types.ConvertType(Ctx.IntTy);
52 SizeTy = Types.ConvertType(Ctx.getSizeType());
54 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
55 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
  /libcore/luni/src/main/java/libcore/reflect/
Types.java 27 public final class Types {
28 private Types() {
46 public static Type[] getTypeArray(ListOfTypes types, boolean clone) {
47 if (types.length() == 0) {
50 Type[] result = types.getResolvedTypes();
77 * Returns the names of {@code types} separated by commas.
79 public static String toString(Class<?>[] types) {
80 if (types.length == 0) {
84 appendTypeName(result, types[0]);
85 for (int i = 1; i < types.length; i++)
    [all...]
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 1 //===-- SITypeRewriter.cpp - Remove unwanted types ------------------------===//
20 /// - Having v1* types complicates the legalizer and we can easily replace
105 SmallVector <Type*, 8> Types;
113 Types.push_back(v4i32);
124 Types.push_back(ElementTy);
130 Types.push_back(Arg->getType());
139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 92 SmallVector<Type *, 10> Types;
93 Types.append(10, Ty);
94 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Types, false);
  /frameworks/av/media/libmedia/
Metadata.cpp 21 #include <sys/types.h>
39 // Types
40 enum Types {
  /libcore/luni/src/main/java/java/sql/
Types.java 21 * A class which defines constants used to identify generic SQL types, also
22 * called JDBC types. The type constant values are equivalent to those defined
25 public class Types {
30 private Types() {
  /external/deqp/modules/glshared/
glsLifetimeTests.hpp 259 class Types : public ContextWrapper
262 Types (const Context& ctx)
269 virtual ~Types (void) {}
353 class ES2Types : public Types
381 void addTestCases (TestCaseGroup& group, Types& types);
417 using details::Types;
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapterTest.java 14 import com.google.protos.ipc.invalidation.Types;
101 assertEquals(Types.ObjectSource.Type.CHROME_SYNC.getNumber(),
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
48 TypeList Types;
137 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 10 // This class gives values and types Unique ID's.
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 12 template<typename... Types>
14 typedef pair<Types..., int> expand_with_pacs; // okay
15 typedef pair<Types, int...> expand_no_packs; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
16 typedef pair<pair<Types..., int>..., int> expand_with_expanded_nested; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
21 template<typename ...Types>
25 typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains parameter packs 'Types' and 'OtherTypes' that have different lengths (3 vs. 2)}}
41 template<typename T, int N, typename ... Types>
43 : public Types, public T // expected-error{{base type contains unexpanded parameter pack 'Types'}}
378 typedef pair<OuterTypes, InnerTypes>* types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'OuterTypes' and 'InnerTypes'}} typedef in struct:MemberTemplatePPNames::Inner
382 typedef pair<pair<VeryInnerTypes, OuterTypes>, pair<InnerTypes, OuterTypes> > types; \/\/ expected-error{{declaration type contains unexpanded parameter packs 'VeryInnerTypes', 'OuterTypes', ...}} typedef in struct:MemberTemplatePPNames::Inner::VeryInner
    [all...]
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 7 * $Id: Types.java,v 1.1.1.1 2004/05/09 16:57:50 vlad_r Exp $
24 public abstract class Types
34 // TODO: handle array and other types
141 * Converts a method signature (parameter types + return type) to its VM descriptor
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusTypes.h 11 * Basic types used by GDI+
58 // Primitive data types
61 // Types already defined in standard header files:
71 // Avoid using the following types:
766 Types = NULL;
776 if (Types != NULL)
778 delete Types;
793 BYTE* Types;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 432 BYTE *Types;
437 PathData(): Count(0), Points(NULL), Types(NULL) {}
448 /* Callback function types */
449 /* FIXME: need a correct definition for these function pointer types */
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
NavigatorView.js 72 if (type === WebInspector.NavigatorTreeOutline.Types.Domain)
74 if (type === WebInspector.NavigatorTreeOutline.Types.FileSystem)
159 var type = project.type() === WebInspector.projectTypes.FileSystem ? WebInspector.NavigatorTreeOutline.Types.FileSystem : WebInspector.NavigatorTreeOutline.Types.Domain;
192 folderNode = new WebInspector.NavigatorFolderTreeNode(this, null, name, WebInspector.NavigatorTreeOutline.Types.Folder, folderPath, name);
588 WebInspector.NavigatorTreeOutline.Types = {
607 if (type === WebInspector.NavigatorTreeOutline.Types.Domain) {
612 if (type === WebInspector.NavigatorTreeOutline.Types.FileSystem)
614 if (type === WebInspector.NavigatorTreeOutline.Types.Folder)
809 WebInspector.BaseNavigatorTreeElement.call(this, WebInspector.NavigatorTreeOutline.Types.UISourceCode, title, this._calculateIconClasses(), false)
    [all...]

Completed in 783 milliseconds

1 2 3 4