HomeSort by relevance Sort by last modified time
    Searched defs:Type (Results 101 - 125 of 1872) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/pdfium/xfa/fwl/
cfwl_message.h 20 enum class Type { Key, KillFocus, Mouse, MouseWheel, SetFocus };
22 explicit CFWL_Message(Type type);
23 CFWL_Message(Type type, CFWL_Widget* pSrcTarget);
24 CFWL_Message(Type type, CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget);
28 Type GetType() const { return m_type; }
34 Type m_type;
  /external/skia/include/core/
SkDrawFilter.h 28 enum Type {
45 * Called with the paint that will be used to draw the specified type.
49 virtual bool filter(SkPaint*, Type) = 0;
  /external/skia/src/xml/
SkDOM.h 41 enum Type {
45 Type getType(const Node*) const;
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Macro.h 29 enum Type
37 Macro() : predefined(false), disabled(false), type(kTypeObj) { }
43 Type type; member in struct:pp::Macro
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAtom.h 28 // NOTE: This may change to a more complex type in the future.
37 AtomType Type;
46 : Type(T), Parent(P), Begin(B), End(E) { }
49 bool isTextAtom() { return Type == TextAtom; }
50 bool isDataAtom() { return Type == DataAtom; }
MCSectionELF.h 31 /// Type - This is the sh_type field of a section, drawn from the enums below.
32 unsigned Type;
47 MCSectionELF(StringRef Section, unsigned type, unsigned flags,
49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
59 unsigned getType() const { return Type; }
  /external/swiftshader/third_party/LLVM/lib/MC/
MCELF.cpp 36 void MCELF::SetType(MCSymbolData &SD, unsigned Type) {
37 assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
38 Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
39 Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
40 Type == ELF::STT_TLS);
43 SD.setFlags(OtherFlags | (Type << ELF_STT_Shift));
47 uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift
    [all...]
  /external/syslinux/efi32/include/efi/
efi_nii.h 62 UINT8 Type;
66 // This is the network interface type and version number that will
  /external/syslinux/efi64/include/efi/
efi_nii.h 62 UINT8 Type;
66 // This is the network interface type and version number that will
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efi_nii.h 62 UINT8 Type;
66 // This is the network interface type and version number that will
  /external/v8/tools/clang/blink_gc_plugin/tests/
trace_after_dispatch.h 17 enum Type { TB, TC, TD };
18 A(Type type) : m_type(type) { }
20 Type m_type;
42 Abstract(Type type) : A(type) { }
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
SessionDescription.java 37 /** Java-land enum version of SessionDescriptionInterface's type() string. */
38 public static enum Type {
45 public static Type fromCanonicalForm(String canonical) {
46 return Type.valueOf(Type.class, canonical.toUpperCase());
50 public final Type type; field in class:SessionDescription
53 public SessionDescription(Type type, String description) {
54 this.type = type
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
sort.h 21 enum Type {
36 // data [in/out] A pointer to an array of intrinsic type.
39 // data_type Enum corresponding to the type of the array.
42 int32_t Sort(void* data, uint32_t num_of_elements, Type data_type);
50 // data [in/out] A pointer to an array of arbitrary type.
56 // key_type Enum corresponding to the type of the key array.
61 uint32_t size_of_element, Type key_type);
  /frameworks/av/media/libmedia/include/media/
MediaResource.h 28 enum Type {
42 MediaResource(Type type, uint64_t value);
43 MediaResource(Type type, SubType subType, uint64_t value);
53 Type mType;
58 inline static const char *asString(MediaResource::Type i, const char *def = "??") {
  /frameworks/av/media/libstagefright/codec2/include/
C2Component.h 483 * \return the content type supported by this info parser.
521 enum Type {
522 LINEAR, ///< basic linear allocator type
523 GRALLOC, ///< basic gralloc allocator type
529 * \param type the type of allocator to create
540 virtual status_t createAllocator(Type type, std::shared_ptr<C2Allocator>* const allocator) = 0;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
TypeConverter.h 28 typedef device_category Type;
29 typedef Vector<Type> Collection;
33 typedef int32_t Type;
34 typedef Vector<Type> Collection;
38 typedef uint32_t Type;
39 typedef Vector<Type> Collection;
43 typedef uint32_t Type;
44 typedef Vector<Type> Collection;
  /frameworks/compile/mclinker/include/mcld/Script/
InputToken.h 22 enum Type { Unknown, File, NameSpec };
26 InputToken(Type pType, const std::string& pName, bool pAsNeeded);
31 Type type() const { return m_Type; } function in class:mcld::InputToken
40 Type m_Type;
  /libcore/ojluni/src/main/java/java/net/
Proxy.java 29 * This class represents a proxy setting, typically a type (http, socks) and
41 * Represents the proxy type.
45 public enum Type {
60 private Type type; field in class:Proxy
76 type = Type.DIRECT;
88 * @param type the {@code Type} of the proxy
90 * @throws IllegalArgumentException when the type and the address ar
105 public Type type() { method in class:Proxy
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/fix/
typecheck.go 16 // Partial type checker.
19 // an AST and a description of some type information to
24 // a full type check, but the type checker is expected to
26 // declarations, function and method returns, and type switches
35 // (Go source code), but for now we use data structures (TypeConfig, Type).
39 // A Field or FieldList has as its type a comma-separated list
42 // has type "int, int, int".
44 // The prefix "type " is the type of a type
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
selection.go 16 type SelectionKind int
27 // type T struct{ x int; E }
28 // type E struct{}
34 // Selector Kind Recv Obj Type Index Indirect
40 type Selection struct {
42 recv Type // type of x
51 // Recv returns the type of x in x.f.
52 func (s *Selection) Recv() Type { return s.recv }
58 // Type returns the type of x.f, which may be different from the type of f
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
typecheck.go 16 // Partial type checker.
19 // an AST and a description of some type information to
24 // a full type check, but the type checker is expected to
26 // declarations, function and method returns, and type switches
35 // (Go source code), but for now we use data structures (TypeConfig, Type).
39 // A Field or FieldList has as its type a comma-separated list
42 // has type "int, int, int".
44 // The prefix "type " is the type of a type
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
selection.go 16 type SelectionKind int
27 // type T struct{ x int; E }
28 // type E struct{}
34 // Selector Kind Recv Obj Type Index Indirect
40 type Selection struct {
42 recv Type // type of x
51 // Recv returns the type of x in x.f.
52 func (s *Selection) Recv() Type { return s.recv }
58 // Type returns the type of x.f, which may be different from the type of f
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
typeattr.py 32 raise exception.InvalidType("{0} is not a valid type/attribute".format(name))
45 raise TypeError("{0} is a type".format(qpol_symbol.name(qpol_policy)))
51 """Factory function for creating type objects."""
53 if isinstance(name, Type):
64 return Type(qpol_policy, qpol_symbol)
68 """Factory function for creating type or attribute objects."""
70 if isinstance(name, (Type, TypeAttribute)):
82 return Type(qpol_policy, qpol_symbol)
87 """Type/attribute base class."""
98 """Generator that yields all attributes for this type.""
    [all...]
  /system/netd/server/
Network.h 31 enum Type {
43 virtual Type getType() const = 0;
  /system/tools/hidl/
Type.h 34 struct Type {
35 Type();
36 virtual ~Type();
82 * (the hypothetical type pair)
96 // For an array type, dimensionality information will be accumulated at the
192 // Emit any declarations pertaining to this type that have to be
196 // Emit any declarations pertaining to this type that have to be
210 // Generates type declaration for vts proto file.
213 // Generates type declaration as attribute of method (return value or method
214 // argument) or attribute of compound type for vts proto file
    [all...]

Completed in 496 milliseconds

1 2 3 45 6 7 8 91011>>