Searched defs:kind (Results 26 - 50 of 230) sorted by relevance

12345678910

/external/clang/include/clang/Basic/
H A DObjCRuntime.h63 ObjCRuntime(Kind kind, const VersionTuple &version) argument
64 : TheKind(kind), Version(version) {}
66 void set(Kind kind, VersionTuple version) { argument
67 TheKind = kind;
85 llvm_unreachable("bad kind");
119 llvm_unreachable("bad kind");
139 llvm_unreachable("bad kind");
157 llvm_unreachable("bad kind");
189 llvm_unreachable("bad kind");
212 llvm_unreachable("bad kind");
[all...]
H A DDiagnosticIDs.h50 typedef unsigned kind; typedef in namespace:clang::diag
234 llvm::SmallVectorImpl<diag::kind> &Diags) const;
237 void getAllDiagnostics(llvm::SmallVectorImpl<diag::kind> &Diags) const;
248 llvm::SmallVectorImpl<diag::kind> &Diags) const;
/external/clang/lib/AST/
H A DExprClassification.cpp55 Cl::Kinds kind = ClassifyInternal(Ctx, this); local
61 kind = Cl::CL_Function;
66 kind = (kind == Cl::CL_LValue ? Cl::CL_AddressableVoid : Cl::CL_Void);
70 switch (kind) {
87 modifiable = IsModifiable(Ctx, this, kind, *Loc);
88 return Classification(kind, modifiable);
129 // FIXME: Is this wise? Should they get their own kind?
342 Cl::Kinds kind = ClassifyUnnamed(Ctx, Method->getResultType()); local
343 return (kind
[all...]
/external/doclava/src/com/google/doclava/
H A DAttrTagInfo.java44 AttrTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo position) { argument
45 super(name, kind, text, position);
H A DMemberInfo.java25 boolean isStatic, boolean isSynthetic, String kind, SourcePositionInfo position,
39 mKind = kind;
128 public String kind() { method in class:MemberInfo
22 MemberInfo(String rawCommentText, String name, String signature, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isSynthetic, String kind, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DSampleTagInfo.java67 SampleTagInfo(String name, String kind, String text, ContainerInfo base, argument
69 super(name, kind, text, position);
259 data.setValue(base + ".kind", kind());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DComponentResults.java241 private String lastBuildName(int kind) { argument
245 switch (kind) {
H A DBuildResults.java221 * Returns the kind of summary for the scenario of the current build.
329 * @return <code>true</code> if the summary kind is equals to 0 or 1
338 * @return <code>true</code> if the summary kind is equals to 1
385 byte kind = stream.readByte();
386 this.baseline = kind == 0;
391 switch (kind) {
443 void setSummary(int kind, String comment) { argument
445 this.summaryKind = kind;
553 byte kind = 0; // baseline
557 kind
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DComponentResultsElement.java204 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) { argument
209 StringBuffer childrenBuffer = super.writableStatus(new StringBuffer(), kind, excluded);
217 if ((kind & IPerformancesConstants.STATUS_VALUES) != 0) {
H A DScenarioResultsElement.java129 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) { argument
134 StringBuffer childrenBuffer = super.writableStatus(new StringBuffer(), kind, excluded);
143 if ((kind & IPerformancesConstants.STATUS_VALUES) != 0) {
/external/freetype/src/cff/
H A Dcffparse.h85 int kind; member in struct:CFF_Field_Handler_
/external/icu4c/common/
H A Dservlkf.cpp49 int32_t kind = lkey.kind(); local
53 return handleCreate(loc, kind, service, status);
108 int32_t /* kind */,
/external/icu4c/i18n/
H A DdecContext.c63 /* kind selects the required set of default values, one of: */
72 U_CAPI decContext * U_EXPORT2 uprv_decContextDefault(decContext *context, Int kind) { argument
84 switch (kind) {
/external/iproute2/tc/
H A Dm_ematch.h85 char kind[EMATCHKINDSIZ]; member in struct:ematch_util
/external/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp76 PostIncTransform(TransformKind kind, PostIncLoopSet &loops, argument
78 Kind(kind), Loops(loops), SE(se), DT(dt) {}
102 default: llvm_unreachable("Unexpected SCEVCastExpr kind!");
177 default: llvm_unreachable("Unexpected SCEVNAryExpr kind!");
192 llvm_unreachable("Unexpected SCEV kind!");
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h38 enum DbgValueKind kind; member in class:llvm::SDDbgValue
57 kind = SDNODE;
66 kind = CONST;
73 kind = FRAMEIX;
77 // Returns the kind.
78 DbgValueKind getKind() { return kind; }
84 SDNode *getSDNode() { assert (kind==SDNODE); return u.s.Node; }
87 unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
93 unsigned getFrameIx() { assert (kind
[all...]
/external/valgrind/main/helgrind/
H A Dhg_lock_n_thread.h138 LockKind kind; /* what kind of lock this is */ member in struct:_Lock
/external/valgrind/main/include/
H A Dpub_tool_aspacemgr.h62 kind == SkFree:
65 kind == SkAnon{C,V}:
71 kind == SkFile{C,V}:
77 kind == SkShmC:
83 kind == SkResvn
95 SegKind kind; member in struct:__anon13958
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dsymbols.c151 Symbol *NewSymbol(SourceLoc *loc, Scope *fScope, int name, symbolkind kind) argument
163 lSymb->kind = kind;
220 Symbol *AddSymbol(SourceLoc *loc, Scope *fScope, int atom, symbolkind kind) argument
226 lSymb = NewSymbol(loc, fScope, atom, kind);
/external/webkit/Source/WebCore/xml/
H A DXPathStep.h60 NodeTest(Kind kind) : m_kind(kind) {} argument
61 NodeTest(Kind kind, const String& data) : m_kind(kind), m_data(data) {} argument
62 NodeTest(Kind kind, const String& data, const String& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) {} argument
64 Kind kind() const { return m_kind; } function in class:WebCore::XPath::Step::NodeTest
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs586 protected virtual IList<RewriteOperation> GetKindOfOps(IList<RewriteOperation> rewrites, Type kind) { argument
587 return GetKindOfOps(rewrites, kind, rewrites.Count);
590 /** <summary>Get all operations before an index of a particular kind</summary> */
591 protected virtual IList<RewriteOperation> GetKindOfOps(IList<RewriteOperation> rewrites, Type kind, int before) { argument
597 if (op.GetType() == kind)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs694 protected virtual IList<RewriteOperation> GetKindOfOps( IList<RewriteOperation> rewrites, Type kind )
696 return GetKindOfOps( rewrites, kind, rewrites.Count );
699 /** <summary>Get all operations before an index of a particular kind</summary> */
700 protected virtual IList<RewriteOperation> GetKindOfOps( IList<RewriteOperation> rewrites, Type kind, int before ) argument
708 if ( op.GetType() == kind )
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java564 protected List getKindOfOps(List rewrites, Class kind) { argument
565 return getKindOfOps(rewrites, kind, rewrites.size());
568 /** Get all operations before an index of a particular kind */
569 protected List getKindOfOps(List rewrites, Class kind, int before) { argument
574 if ( op.getClass() == kind ) ops.add(op);
/external/chromium/chrome/browser/ui/views/
H A Dsad_tab_view.cc55 SadTabView::SadTabView(TabContents* tab_contents, Kind kind) argument
58 kind_(kind) {
61 InitClass(kind);
146 void SadTabView::InitClass(Kind kind) { argument
156 kind == CRASHED ? IDR_SAD_TAB : IDR_KILLED_TAB);
159 kind == CRASHED ? IDS_SAD_TAB_TITLE : IDS_KILLED_TAB_TITLE));
162 kind == CRASHED ? IDS_SAD_TAB_MESSAGE : IDS_KILLED_TAB_MESSAGE));
/external/chromium/third_party/libevent/
H A Devhttp.h211 enum evhttp_request_kind kind; member in struct:evhttp_request

Completed in 3234 milliseconds

12345678910