Searched refs:DK (Results 1 - 18 of 18) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclOpenMP.h41 OMPThreadPrivateDecl(Kind DK, DeclContext *DC, SourceLocation L) : argument
42 Decl(DK, DC, L), NumVars(0) { }
H A DDeclBase.h305 Decl(Kind DK, DeclContext *DC, SourceLocation L) argument
307 Loc(L), DeclKind(DK), InvalidDecl(0),
310 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
313 if (StatisticsEnabled) add(DK);
316 Decl(Kind DK, EmptyShell Empty) argument
317 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
320 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
323 if (StatisticsEnabled) add(DK);
636 static unsigned getIdentifierNamespaceForKind(Kind DK);
H A DDecl.h116 NamedDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N) argument
117 : Decl(DK, DC, L), Name(N) { }
467 ValueDecl(Kind DK, DeclContext *DC, SourceLocation L, argument
469 : NamedDecl(DK, DC, L, N), DeclType(T) {}
536 DeclaratorDecl(Kind DK, DeclContext *DC, SourceLocation L, argument
539 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
752 VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
1202 ParmVarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
1206 : VarDecl(DK, DC, StartLoc, IdLoc, Id, T, TInfo, S) {
1505 FunctionDecl(Kind DK, DeclContex
[all...]
H A DDeclTemplate.h233 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
235 : NamedDecl(DK, DC, L, Name), TemplatedDecl(0), TemplateParams(0) { }
239 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
241 : NamedDecl(DK, DC, L, Name), TemplatedDecl(0), TemplateParams(Params) { }
244 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
247 : NamedDecl(DK, DC, L, Name), TemplatedDecl(Decl),
625 RedeclarableTemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, argument
628 : TemplateDecl(DK, DC, L, Name, Params, Decl), Common() { }
1425 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1433 explicit ClassTemplateSpecializationDecl(Kind DK);
[all...]
H A DDeclObjC.h496 ObjCContainerDecl(Kind DK, DeclContext *DC, argument
499 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {}
1668 ObjCImplDecl(Kind DK, DeclContext *DC, argument
1671 : ObjCContainerDecl(DK, DC,
H A DDeclCXX.h1615 CXXMethodDecl(Kind DK, CXXRecordDecl *RD, SourceLocation StartLoc, argument
1620 : FunctionDecl(DK, RD, StartLoc, NameInfo, T, TInfo,
/external/clang/lib/AST/
H A DDeclBase.cpp602 Decl::Kind DK = D->getDeclKind(); local
603 switch(DK) {
613 if (DK >= first##NAME && DK <= last##NAME) \
621 Decl::Kind DK = D->getKind(); local
622 switch(DK) {
632 if (DK >= first##NAME && DK <= last##NAME) \
H A DDeclTemplate.cpp707 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, argument
714 : CXXRecordDecl(DK, TK, DC, StartLoc, IdLoc,
723 ClassTemplateSpecializationDecl::ClassTemplateSpecializationDecl(Kind DK) argument
724 : CXXRecordDecl(DK, TTK_Struct, 0, SourceLocation(), SourceLocation(), 0, 0),
1094 ASTContext &Context, Kind DK, DeclContext *DC, SourceLocation StartLoc,
1098 : VarDecl(DK, DC, StartLoc, IdLoc, SpecializedTemplate->getIdentifier(), T,
1104 VarTemplateSpecializationDecl::VarTemplateSpecializationDecl(Kind DK) argument
1105 : VarDecl(DK, 0, SourceLocation(), SourceLocation(), 0, QualType(), 0,
1093 VarTemplateSpecializationDecl( ASTContext &Context, Kind DK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, const TemplateArgument *Args, unsigned NumArgs) argument
H A DDecl.cpp1560 VarDecl::VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc, argument
1563 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), Init() {
3210 RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC, argument
3213 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
/external/clang/lib/Frontend/
H A DASTConsumers.cpp377 Decl::Kind DK = I->getKind(); local
378 switch (DK) {
475 Out << "DeclKind: " << DK << '"' << *I << "\"\n";
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodings.properties57 Cp277 EBCDIC-CP-DK,EBCDIC-CP-NO,IBM277,csIBM277 0x0019
/external/clang/lib/Parse/
H A DParser.cpp130 /// \param DK The kind of diagnostic to emit.
132 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK, argument
138 Diag(Loc, DK);
142 Diag(Loc, DK)
/external/clang/lib/Sema/
H A DSemaInit.cpp710 unsigned DK = diag::warn_excess_initializers_in_char_array_initializer; local
712 DK = diag::err_excess_initializers_in_char_array_initializer;
716 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
729 unsigned DK = diag::warn_excess_initializers; local
731 DK = diag::err_excess_initializers;
735 DK = diag::err_excess_initializers;
739 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
H A DSemaDeclCXX.cpp10747 unsigned DK = diag::err_catch_incomplete; local
10751 DK = diag::err_catch_incomplete_ptr;
10756 DK = diag::err_catch_incomplete_ref;
10759 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
H A DSemaDecl.cpp3568 unsigned DK = diag::err_anonymous_record_bad_member; local
3570 DK = diag::err_anonymous_record_with_type;
3572 DK = diag::err_anonymous_record_with_function;
3574 DK = diag::err_anonymous_record_with_static;
3578 DK == diag::err_anonymous_record_with_type)
3582 Diag((*Mem)->getLocation(), DK)
/external/clang/include/clang/Parse/
H A DParser.h732 void SuggestParentheses(SourceLocation Loc, unsigned DK,
/external/chromium_org/third_party/libjingle/source/talk/media/testdata/
H A Dh264-svc-99-640x360.rtpdump4244 ��� 6��5�g�4��-��bt*�m|�{��:,���`���<�2A���=�#�� 3G�=���^���y�i�;Z�/� ���DK/��~q����%��۸#(�ׯ��v?���_�4:��U��
13192 ��\�Fc3�ɀ=����v�}�+QN .���(�:xfQ���OoH��EQ���U��,v�q<pxN;��=���ymڝ �|�l!�V|χ�Q?!K)A��s���=�ZH`�/���2�ؿ|Mt'�C�� �'�x���|O��j������Z`.���>�<O�b|3�<�������{U4� ��V�r�O���'�9~�O�<����1��gA2V�!�^Xy���؟�xf�����8��'�vT$K���?�R���R�W�!�i���1<����?��<3���k���o�'־���|0X���P��{��0��[����|3��7b�Å\��낝�7�b��L�IG��_v����� ��偯1��~|�����r�B�ԝw}�+?���%��C�~�"X���K��'�����(�e������ .�t9������z� �v`��z�݉��U�������z�Sp �;13m�C����e��������z�� �8�#�`��nx�Rf��e=�ߦ] � ���WwzԐ'�,�?����6�]�[]7)jt��"���w��5�H�T���"گw�q�e÷EɈ�[[̺�>|���?��V(i��3��a�ب�dN/t@��5�c)��I��f��f�V5r~8>��G�V�.��G s!�or0�yq��lB���yb��O/�>^��q�[S`��(G��Y���翽��_����w�S(D�< r�A3�*@�?�a\;�\DK��6��| c|��ڞ�L�U���fp4y���w�� c���O+�n��~�*ͭ����g�_�7�:Hl��\��E�>��z�m�����k���>�=�����6�A�B.��.�w��z�PH��,��c�3� {~�8����~�}�-Ң'r�es̭�\T1���ܪ(w��T��rnX->#�;���`�V#�e���������w�o��N�?�W��w��3s�,�#�]ߗ�@~�`?��?�y~l":�����x�ױy���a�.��G !U��<`��E� \SQ�\������v���W��i�'����w/�pN�2�+|����gv���z�?&?j+�bs����36Gre���Ä!X��x����\�_~x{��wu��*&/�����cwp�0b��������x����@����{�����Y�q�̰ۀh�������;,=�?��0����� �Z;~;rV�|����B�F+A@����sX�@ ���8g�� U�fj�C��3{ala=\+��<P� ��f,�#�=}��=55�c)��I��f��f�uNr8>�G�V� 4�G��[܁�^XxhO � �^���Pu��}���~���x��xy�}��>���%��\� ���]V���ܱ01|����[�8
14092 � ;>X�����~���DK �MN�����~�-CRڶޙ �B��e��J���n��U��O�������q�9���ѣ�jL�Ϯ�{|61��#ކ A��6�?`֣ LVCV�q�1�7�5�D�ʚ��Q��ݤIJ��2��%���I�K�]}� v}*��6c-�˭駁~�桯j��wY��㞛=���.����i���6M��c�����W[���������pf�^xYT[�P^�o{��W4���ֽ����o�w�������Ⱦ
15019 @��kT��SG��� Ł�fԟ�zi���މ-�����0�G%�l��{�@�Z� �����s� �������� �}A c����J����j�m�,Δn-W��#�3 w� E�3_��v�Z�L���lO�<a�x��;x���,�8�EO�-x�G��`4������M�� ��cb eK~ ��DK�����︾|{�@@\#6g�M�U��-�d�����YE燰�ֿ��q�qM��A9@
15094 Nx2z��q�ڃ�I�/�f�#���d7@s/@ &J����Ԅ(���-w��6Y�l)Wx�1Y{�q|���9��`a��ȉx_5E �%��,�|~�޽;~�,K3by9�ZjO�9�Q�P`����E礝�w��w����{�BB�Ѓ�:��,ư+6�9t�s�| �PN���~��y�Wے�.������&��[S' ��*���c������~��i��-��AEf���SC$�������)CDjU��Fr�K��լ��>�}̗�T,��j��y8�v��Pz�0�L]v�hi6yF�</s4�S�y�C�<[������q�%�5Z���M�DZ�^��s����m���E�sJ����7U� ����ʒ@�v8.5sr���� ��B����ﻨ�|DK�2�� @�~��U�n�I�Pe��2�҆
/external/chromium_org/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js[all...]

Completed in 426 milliseconds