Searched refs:Type (Results 76 - 100 of 3758) sorted by relevance

1234567891011>>

/external/clang/include/clang/AST/
H A DTypeVisitor.h1 //===--- TypeVisitor.h - Visitor for Type subclasses ------------*- C++ -*-===//
17 #include "clang/AST/Type.h"
29 /// \tparam RetTy %Type of result produced by the operation.
32 /// from Type. The operation is performed by calling method Visit. It then
43 /// Type *atype = ...
59 /// \li <tt>ImplClass::VisitType(const Type*)</tt>
60 /// \li <tt>TypeVisitor::VisitType(const Type*)</tt>
69 RetTy Visit(const Type *T) {
73 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type);
88 VisitType(const Type*) argument
[all...]
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dvirtual_and_trace_after_dispatch.h17 enum Type { TB }; enum in class:blink::A
18 A(Type type) : m_type(type) { }
20 Type m_type;
/external/clang/test/Parser/
H A Dcxx-stmt.cpp46 struct Type { }; struct
48 enum { Type } Kind; enumerator in enum:__anon19017
52 case Type: i = 7; break; // no error.
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiArrayType.java26 public class MultiArrayType extends Type {
62 public Type getComponent() {
63 return dims == 1 ? (Type)component : new MultiArrayType(component, dims - 1);
74 public boolean isAssignableFrom(Type type) {
82 public boolean isAssignableTo(Type type) {
83 if (eq(type.getCtClass(), Type.OBJECT.getCtClass()))
86 if (eq(type.getCtClass(), Type.CLONEABLE.getCtClass()))
89 if (eq(type.getCtClass(), Type.SERIALIZABLE.getCtClass()))
95 Type typeRoot = getRootComponent(type);
102 if (eq(typeRoot.getCtClass(), Type
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIToken.cs42 int Type { property in interface:Antlr.Runtime.IToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIToken.cs45 int Type property in interface:Antlr.Runtime.IToken
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dselect_file_dialog_util.h16 base::string16 GetSelectFileDialogTitle(ui::SelectFileDialog::Type type);
/external/chromium_org/chrome/browser/extensions/
H A Dcrx_installer_error.h16 enum Type { enum in class:extensions::CrxInstallerError
30 CrxInstallerError(Type type, const base::string16& message)
34 Type type() const { return type_; }
38 Type type_;
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_error_details.h22 TranslateErrors::Type error;
/external/chromium_org/extensions/common/
H A Ddom_action_types.h13 enum Type { enum in struct:extensions::DomActionType
/external/chromium_org/extensions/common/permissions/
H A Dpermission_message_provider.h32 Manifest::Type extension_type) const = 0;
38 Manifest::Type extension_type) const = 0;
45 Manifest::Type extension_type) const = 0;
53 Manifest::Type extension_type) const = 0;
/external/chromium_org/extensions/test/
H A Dtest_permission_message_provider.cc17 Manifest::Type extension_type) const {
23 Manifest::Type extension_type) const {
30 Manifest::Type extension_type) const {
37 Manifest::Type extension_type) const {
/external/chromium_org/ipc/
H A Dipc_param_traits.h18 typedef P Type; typedef in struct:IPC::SimilarTypeTraits
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventListener.h34 enum Type { enum in class:blink::EventListener
49 Type type() const { return m_type; }
52 explicit EventListener(Type type)
60 Type m_type;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DBarProp.h46 enum Type { Locationbar, Menubar, Personalbar, Scrollbars, Statusbar, Toolbar }; enum in class:blink::FINAL
48 static PassRefPtrWillBeRawPtr<BarProp> create(LocalFrame* frame, Type type)
58 BarProp(LocalFrame*, Type);
59 Type m_type;
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DDeprecatedStorageQuota.h48 enum Type { enum in class:blink::FINAL
53 static DeprecatedStorageQuota* create(Type type)
65 explicit DeprecatedStorageQuota(Type);
66 Type m_type;
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DVisitor.cpp51 #define DEFINE_VISITOR_CHECK_MARKER(Type) \
52 void Visitor::checkGCInfo(const Type* payload, const GCInfo* gcInfo) \
55 Type* object = const_cast<Type*>(payload); \
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dvideo_codec_information.h23 virtual RtpVideoCodecTypes Type() = 0;
/external/chromium_org/tools/android/forwarder2/
H A Dcommand.h16 enum Type { enum in namespace:forwarder2::command
38 command::Type* command_type_out);
42 bool ReceivedCommand(command::Type command, Socket* socket);
44 bool SendCommand(command::Type command, int port, Socket* socket);
/external/chromium_org/ui/views/widget/
H A Dwidget_aura_utils.h16 Widget::InitParams::Type type);
/external/dexmaker/src/dx/java/com/android/dx/cf/code/
H A DMerger.java19 import com.android.dx.rop.type.Type;
39 Type type1 = ft1.getType();
40 Type type2 = ft2.getType();
45 if (type1 == Type.KNOWN_NULL) {
51 } else if (type2 == Type.KNOWN_NULL) {
66 return Type.OBJECT;
68 return ((Type) componentUnion).getArrayType();
75 return Type.OBJECT;
82 return Type.INT;
/external/llvm/include/llvm/Analysis/
H A DFindUsedTypes.h22 class Type;
26 SetVector<Type *> UsedTypes;
36 const SetVector<Type *> &getTypes() const { return UsedTypes; }
48 void IncorporateType(Type *Ty);
/external/smack/src/org/jivesoftware/smack/packet/
H A DSession.java39 setType(IQ.Type.SET);
/external/chromium_org/ui/gfx/geometry/
H A Drect_base_impl.h19 template<typename Type>
20 void AdjustAlongAxis(Type dst_origin, Type dst_size, Type* origin, Type* size) {
37 typename Type>
38 void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>::
39 SetRect(Type x, Type y, Type widt
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Djavascripttokenizer.py30 Type = javascripttokens.JavaScriptTokenType variable
193 Matcher(END_BLOCK_COMMENT, Type.END_DOC_COMMENT,
197 Matcher(DOC_INLINE_FLAG, Type.DOC_INLINE_FLAG),
198 Matcher(DOC_FLAG_LEX_SPACES, Type.DOC_FLAG,
202 Matcher(DOC_FLAG, Type.DOC_FLAG, JavaScriptModes.DOC_COMMENT_MODE),
205 Matcher(START_BLOCK, Type.DOC_START_BRACE),
206 Matcher(END_BLOCK, Type.DOC_END_BRACE),
207 Matcher(DOC_PREFIX, Type.DOC_PREFIX, None, True)]
210 # If unspecified in this map, the default default is Type.NORMAL.
212 JavaScriptModes.DOC_COMMENT_MODE: Type
[all...]

Completed in 573 milliseconds

1234567891011>>