HomeSort by relevance Sort by last modified time
    Searched defs:Class (Results 126 - 150 of 251) sorted by null

1 2 3 4 56 7 8 91011

  /libcore/luni/src/test/java/libcore/xml/
XmlPullParserFactoryTest.java 32 public class XmlPullParserFactoryTest extends TestCase {
98 * A class that makes use of inherited XmlPullParserFactory fields to check they are
101 static final class TestXmlPullParserFactory extends XmlPullParserFactory {
110 parserClasses.add(Class.forName(parserClass));
116 serializerClasses.add(Class.forName(serializerClass));
125 public static final class XmlParserThatHatesAllFeatures extends XmlPullParserStub {
132 static final class InaccessibleXmlSerializer extends XmlSerializerStub {
135 static final class InaccessibleXmlParser extends XmlPullParserStub {
138 public static class XmlSerializerStub implements XmlSerializer {
228 public static class XmlPullParserStub implements XmlPullParser
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 23 class Node:
24 """Abstract base class for ast nodes."""
35 class EmptyNode(Node):
38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
53 class Add(Node):
68 class And(Node):
84 class AssAttr(Node):
100 class AssList(Node):
116 class AssName(Node):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
schema.py 114 Class = Table('Class')
115 Class.add_field(1,'CLSID',11558)
116 Class.add_field(2,'Context',11552)
117 Class.add_field(3,'Component_',0x2DFF)
118 Class.add_field(4,'ProgId_Default',7679)
119 Class.add_field(5,'Description',8191)
120 Class.add_field(6,'AppId_',7462)
121 Class.add_field(7,'FileTypeMask',7679)
122 Class.add_field(8,'Icon_',7496)
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/Library/DuetBdsLib/
BdsPlatform.c 288 UINT8 Class[3];
316 Status = PciIo->Pci.Read (PciIo, EfiPciIoWidthUint8, 0x09, 3, &Class);
318 if ((PCI_CLASS_SERIAL == Class[2]) &&
319 (PCI_CLASS_SERIAL_USB == Class[1])) {
320 if (PCI_IF_UHCI == Class[0]) {
326 } else if (PCI_IF_EHCI == Class[0]) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrParser.h 284 UINT16 Class;
  /external/ImageMagick/coders/
wpg.c 880 unsigned char Class;
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 10 // This file implements the subclesses of Expr class declared in ExprCXX.h
34 // polymorphic class type, [...] the expression is an unevaluated operand.
    [all...]
DeclObjC.cpp 66 // Get the local instance/class method declared in this interface.
78 // Since instance & class methods can have the same name, the loop below
97 /// found in the class, its protocols, its super classes or categories.
113 // Also look into categories, including class extensions, looking
138 // And in its super class.
165 // If context is class, then lookup property in its extensions.
166 // This comes before property is looked up in primary class.
181 // exists; otherwise we return the class property.
195 // We can't find the instance property, return the class property.
223 // Search the extensions of a class first; they override what's i
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 51 class DeclToIndex {
107 class CFGBlockValues {
207 class DataflowWorklist {
267 class FindVarResult {
305 class ClassifyRefs : public StmtVisitor<ClassifyRefs> {
307 enum Class {
316 llvm::DenseMap<const DeclRefExpr*, Class> Classification;
322 void classify(const Expr *E, Class C);
335 Class get(const DeclRefExpr *DRE) const {
336 llvm::DenseMap<const DeclRefExpr*, Class>::const_iterator
    [all...]
  /external/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 146 StringValue Class;
154 YamlIO.mapRequired("class", Reg.Class);
178 /// Serializable representation of stack object from the MachineFrameInfo class.
236 /// MachineFrameInfo class.
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 85 // operand class, a mask for all operand positions for that same
86 // class/mnemonic and target features to be checked while trying to match.
94 // 3. For a match success, each operand class that has a 'ParserMethod'
128 class AsmMatcherInfo;
138 class AsmMatcherEmitter {
146 /// ClassInfo - Helper class for storing the information about a particular
147 /// class of operands which can be matched.
153 /// The class for a particular token.
156 /// The (first) register class, subsequent register classes are
160 /// The (first) user defined class, subsequent user defined classes ar
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 97 enum rc_reg_class Class;
101 /** This is 1 if this class is being used by the register allocator
105 /** This is the ID number assigned to this class by ra. */
108 /** List of writemasks that belong to this class */
383 return classes[class_index].Class;
387 "Could not find class for index=%u mask=%u\n",
568 /* If we haven't used this register class yet, mark it
581 struct rc_class class = rc_class_list[i]; local
582 if (!class.Used) {
587 for (j = 0; j < class.WritemaskCount; j++)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Constructor.java 50 public class Constructor extends SafeConstructor {
51 private final Map<Tag, Class<? extends Object>> typeTags;
52 protected final Map<Class<? extends Object>, TypeDescription> typeDefinitions;
55 this(Object.class);
59 * Create Constructor for the specified class as the root.
62 * - the class (usually JavaBean) to be constructed
64 public Constructor(Class<? extends Object> theRoot) {
71 private static Class<? extends Object> checkRoot(Class<? extends Object> theRoot) {
73 throw new NullPointerException("Root class must be provided.")
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10shader.h 149 D3D10_SHADER_VARIABLE_CLASS Class;
d3d11shader.h 93 D3D_SHADER_VARIABLE_CLASS Class;
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 23 class Node:
24 """Abstract base class for ast nodes."""
35 class EmptyNode(Node):
38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
53 class Add(Node):
68 class And(Node):
84 class AssAttr(Node):
100 class AssList(Node):
116 class AssName(Node)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 23 class Node:
24 """Abstract base class for ast nodes."""
35 class EmptyNode(Node):
38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
53 class Add(Node):
68 class And(Node):
84 class AssAttr(Node):
100 class AssList(Node):
116 class AssName(Node)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 23 class Node:
24 """Abstract base class for ast nodes."""
35 class EmptyNode(Node):
38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
53 class Add(Node):
68 class And(Node):
84 class AssAttr(Node):
100 class AssList(Node):
116 class AssName(Node)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 23 class Node:
24 """Abstract base class for ast nodes."""
35 class EmptyNode(Node):
38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
53 class Add(Node):
68 class And(Node):
84 class AssAttr(Node):
100 class AssList(Node):
116 class AssName(Node)
    [all...]
  /system/tools/aidl/
ast_java.h 44 class CodeWriter;
52 class Type;
351 struct Class : public ClassElement {
352 enum { CLASS, INTERFACE };
356 int what = CLASS; // CLASS or INTERFACE
362 Class() = default;
363 virtual ~Class() = default;
368 class Document {
373 std::unique_ptr<Class> clazz)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyPci.c 962 // 2. PCI device Sub Class Code is not IDE
994 // 2. PCI device Sub Class Code is not IDE
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Framework/
FrameworkInternalFormRepresentation.h 121 UINT16 Class;
  /external/clang/lib/Sema/
Sema.cpp 10 // This file implements the actions class which performs semantic analysis and
186 // Create the built-in typedef for 'Class'.
187 DeclarationName Class = &Context.Idents.get("Class");
188 if (IdResolver.begin(Class) == IdResolver.end())
779 // scope without an initializer, and without a storage-class
780 // specifier or with the storage-class specifier static,
    [all...]
SemaLookup.cpp 59 class UnqualUsingEntry {
95 class UnqualUsingDirectiveSet {
114 // A using-directive shall not appear in class scope, but may
244 // 3) Tag because it includes class templates, which can't
456 // exactly one declaration shall declare a class name or enumeration name
459 // templates; in this case the class name or enumeration name is hidden.
461 // A class name or enumeration name can be hidden by the name of a
588 // A class name or enumeration name can be hidden by the name of
590 // scope. If a class or enumeration name and an object, function,
592 // with the same name, the class or enumeration name is hidde
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 442 // Get the record decl for the class of 'This'. D->getParent() may return a
443 // base class decl, rather than the class of the instance which needs to be
492 // Is the type a C++ class? (This is mostly a defensive check.)
500 // Find the decl for this method in that class.
505 // However, we should at least be able to search up and down our own class
550 const CXXRecordDecl *Class = MD->getParent();
551 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(Class));
572 // id-expression in the class member access expression is a qualified-id,
713 // FIXME: Is this the best way to handle class receivers
    [all...]

Completed in 986 milliseconds

1 2 3 4 56 7 8 91011