Home
last modified time | relevance | path

Searched refs:Keyword (Results 1 – 25 of 177) sorted by relevance

12345678

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DModifier.java42 return new Modifier(Keyword.PUBLIC); in publicModifier()
46 return new Modifier(Keyword.PROTECTED); in protectedModifier()
50 return new Modifier(Keyword.PRIVATE); in privateModifier()
54 return new Modifier(Keyword.ABSTRACT); in abstractModifier()
58 return new Modifier(Keyword.STATIC); in staticModifier()
62 return new Modifier(Keyword.FINAL); in finalModifier()
66 return new Modifier(Keyword.TRANSIENT); in transientModifier()
70 return new Modifier(Keyword.VOLATILE); in volatileModifier()
74 return new Modifier(Keyword.SYNCHRONIZED); in synchronizedModifier()
78 return new Modifier(Keyword.NATIVE); in nativeModifier()
[all …]
/external/clang/test/Index/
Dannotate-tokens.m159 // CHECK: Keyword: "interface" [1:2 - 1:11] ObjCInterfaceDecl=Foo:1:12
163 // CHECK: Keyword: "int" [2:4 - 2:7] ObjCInstanceMethodDecl=compare::2:8
174 // CHECK: Keyword: "end" [3:2 - 3:5] ObjCInterfaceDecl=Foo:1:12
176 // CHECK: Keyword: "implementation" [5:2 - 5:16] ObjCImplementationDecl=Foo:5:17 (Definition)
180 // CHECK: Keyword: "int" [6:4 - 6:7] ObjCInstanceMethodDecl=compare::6:8 (Definition)
190 // CHECK: Keyword: "return" [7:3 - 7:9] ReturnStmt=
194 // CHECK: Keyword: "void" [8:4 - 8:8] CStyleCastExpr=
197 // CHECK: Keyword: "encode" [8:10 - 8:16] ObjCEncodeExpr=
204 // CHECK: Keyword: "end" [10:2 - 10:5]
205 // CHECK: Keyword: "typedef" [14:1 - 14:8]
[all …]
Darc-annotate.m14 // CHECK: Keyword: "interface" [1:2 - 1:11] ObjCInterfaceDecl=A:1:12
17 // CHECK: Keyword: "property" [2:2 - 2:10] ObjCPropertyDecl=property:2:34
19 // CHECK: Keyword: "strong" [2:12 - 2:18] ObjCPropertyDecl=property:2:34
21 // CHECK: Keyword: "nonatomic" [2:20 - 2:29] ObjCPropertyDecl=property:2:34
27 // CHECK: Keyword: "property" [3:2 - 3:10] ObjCPropertyDecl=second_property:3:32
29 // CHECK: Keyword: "nonatomic" [3:12 - 3:21] ObjCPropertyDecl=second_property:3:32
31 // CHECK: Keyword: "weak" [3:23 - 3:27] ObjCPropertyDecl=second_property:3:32
36 // CHECK: Keyword: "property" [4:2 - 4:10] ObjCPropertyDecl=third_property:4:45
38 // CHECK: Keyword: "unsafe_unretained" [4:12 - 4:29] ObjCPropertyDecl=third_property:4:45
40 // CHECK: Keyword: "nonatomic" [4:31 - 4:40] ObjCPropertyDecl=third_property:4:45
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/
DModifierValidator.java18 import static com.github.javaparser.ast.Modifier.Keyword.*;
26 …private final Modifier.Keyword[] interfaceWithNothingSpecial = new Modifier.Keyword[]{PUBLIC, PROT…
27 …private final Modifier.Keyword[] interfaceWithStaticAndDefault = new Modifier.Keyword[]{PUBLIC, PR…
28 …private final Modifier.Keyword[] interfaceWithStaticAndDefaultAndPrivate = new Modifier.Keyword[]{…
107 … for (Modifier.Keyword m : asList(PRIVATE, STATIC, FINAL, NATIVE, STRICTFP, SYNCHRONIZED)) { in visit()
164 …Range<?>> void validateModifiers(T n, ProblemReporter reporter, Modifier.Keyword... allowedModifie… in validateModifiers()
179 …private Modifier.Keyword[] removeModifierFromArray(Modifier.Keyword m, Modifier.Keyword[] allowedM… in removeModifierFromArray()
180 final List<Modifier.Keyword> newModifiers = new ArrayList<>(asList(allowedModifiers)); in removeModifierFromArray()
182 allowedModifiers = newModifiers.toArray(new Modifier.Keyword[0]); in removeModifierFromArray()
195 …nRange<?>> void validateAtMostOneOf(T t, ProblemReporter reporter, Modifier.Keyword... modifiers) { in validateAtMostOneOf()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
DNodeWithModifiers.java55 default N addModifier(Modifier.Keyword... newModifiers) { in addModifier()
57 for (Modifier.Keyword newModifier : newModifiers) { in addModifier()
68 default N removeModifier(Modifier.Keyword... modifiersToRemove) { in removeModifier()
69 List<Modifier.Keyword> modifiersToRemoveAsList = Arrays.asList(modifiersToRemove); in removeModifier()
77 default N setModifier(Modifier.Keyword m, boolean set) { in setModifier()
85 default boolean hasModifier(Modifier.Keyword modifier) { in hasModifier()
97 default N setModifiers(final Modifier.Keyword... modifiers) { in setModifiers()
DNodeWithMembers.java36 import static com.github.javaparser.ast.Modifier.Keyword;
37 import static com.github.javaparser.ast.Modifier.Keyword.*;
83 …default FieldDeclaration addField(Class<?> typeClass, String name, Modifier.Keyword... modifiers) { in addField()
96 default FieldDeclaration addField(String type, String name, Modifier.Keyword... modifiers) { in addField()
108 default FieldDeclaration addField(Type type, String name, Modifier.Keyword... modifiers) { in addField()
126 …itializer(Class<?> typeClass, String name, Expression initializer, Modifier.Keyword... modifiers) { in addFieldWithInitializer()
140 …dWithInitializer(String type, String name, Expression initializer, Modifier.Keyword... modifiers) { in addFieldWithInitializer()
153 …eldWithInitializer(Type type, String name, Expression initializer, Modifier.Keyword... modifiers) { in addFieldWithInitializer()
268 default MethodDeclaration addMethod(String methodName, Keyword... modifiers) { in addMethod()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DPrettyTypedefDumper.cpp30 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in start()
46 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in dump()
52 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
54 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
68 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dump()
77 WithColor(Printer, PDB_ColorItem::Keyword).get() << "class "; in dump()
DPrettyFunctionDumper.cpp72 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start()
82 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start()
109 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start()
111 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start()
146 WithColor(Printer, PDB_ColorItem::Keyword).get() << "virtual "; in start()
169 WithColor(Printer, PDB_ColorItem::Keyword).get() in start()
197 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start()
199 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start()
250 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
252 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
[all …]
DPrettyVariableDumper.cpp55 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
169 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in dumpRight()
171 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in dumpRight()
174 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dumpRight()
186 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in dump()
192 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const "; in dump()
194 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile "; in dump()
197 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict "; in dump()
213 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
DPrettyClassDefinitionDumper.cpp54 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " "; in prettyPrintClassIntro()
69 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base.getAccess(); in prettyPrintClassIntro()
71 WithColor(Printer, PDB_ColorItem::Keyword).get() << " virtual"; in prettyPrintClassIntro()
/external/llvm/tools/llvm-pdbdump/
DFunctionDumper.cpp72 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start()
82 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start()
109 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start()
111 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start()
141 WithColor(Printer, PDB_ColorItem::Keyword).get() << "virtual "; in start()
164 WithColor(Printer, PDB_ColorItem::Keyword).get() in start()
190 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start()
192 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start()
247 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
249 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
DTypedefDumper.cpp31 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in start()
47 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in dump()
53 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
55 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
78 WithColor(Printer, PDB_ColorItem::Keyword).get() << "class "; in dump()
DClassDefinitionDumper.cpp38 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " "; in start()
49 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base->getAccess(); in start()
51 WithColor(Printer, PDB_ColorItem::Keyword).get() << " virtual"; in start()
124 WithColor(Printer, PDB_ColorItem::Keyword).get() << "private"; in dumpAccessGroup()
128 WithColor(Printer, PDB_ColorItem::Keyword).get() << "protected"; in dumpAccessGroup()
132 WithColor(Printer, PDB_ColorItem::Keyword).get() << "public"; in dumpAccessGroup()
DVariableDumper.cpp50 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start()
58 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in start()
112 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump()
114 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump()
121 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
/external/python/httplib2/doc/html/_static/
Dpygments.css4 .k { color: #007020; font-weight: bold } /* Keyword */
20 .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
21 .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
22 .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
23 .kp { color: #007020 } /* Keyword.Pseudo */
24 .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
25 .kt { color: #902000 } /* Keyword.Type */
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
DNodeWithModifiersTest.java35 import static com.github.javaparser.ast.Modifier.Keyword.PRIVATE;
36 import static com.github.javaparser.ast.Modifier.Keyword.PUBLIC;
37 import static com.github.javaparser.ast.Modifier.Keyword.STATIC;
38 import static com.github.javaparser.ast.Modifier.Keyword.SYNCHRONIZED;
91 private NodeWithModifiers anythingWithModifiers(Modifier.Keyword ... keywords) { in anythingWithModifiers()
/external/python/setuptools/docs/_theme/nature/static/
Dpygments.css2 .k { font-weight: bold } /* Keyword */
17 .kc { font-weight: bold } /* Keyword.Constant */
18 .kd { font-weight: bold } /* Keyword.Declaration */
19 .kp { font-weight: bold } /* Keyword.Pseudo */
20 .kr { font-weight: bold } /* Keyword.Reserved */
21 .kt { color: #445588; font-weight: bold } /* Keyword.Type */
/external/libnl/doc/stylesheets/
Dpygments.css8 .highlight .k { color: #AA22FF; font-weight: bold } /* Keyword */
24 .highlight .kc { color: #AA22FF; font-weight: bold } /* Keyword.Constant */
25 .highlight .kd { color: #AA22FF; font-weight: bold } /* Keyword.Declaration */
26 .highlight .kn { color: #AA22FF; font-weight: bold } /* Keyword.Namespace */
27 .highlight .kp { color: #AA22FF } /* Keyword.Pseudo */
28 .highlight .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */
29 .highlight .kt { color: #00BB00; font-weight: bold } /* Keyword.Type */
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
DFieldDeclaration.java184 … fieldNameUpper, Modifier.Keyword.PUBLIC)).orElseGet(() -> parentEnum.get().addMethod("get" + fiel… in createGetter()
211 … fieldNameUpper, Modifier.Keyword.PUBLIC)).orElseGet(() -> parentEnum.get().addMethod("set" + fiel… in createSetter()
221 return hasModifier(Modifier.Keyword.TRANSIENT); in isTransient()
225 return hasModifier(Modifier.Keyword.VOLATILE); in isVolatile()
229 return setModifier(Modifier.Keyword.TRANSIENT, set); in setTransient()
233 return setModifier(Modifier.Keyword.VOLATILE, set); in setVolatile()
DMethodDeclaration.java234 return hasModifier(Modifier.Keyword.NATIVE); in isNative()
238 return hasModifier(Modifier.Keyword.SYNCHRONIZED); in isSynchronized()
242 return hasModifier(Modifier.Keyword.DEFAULT); in isDefault()
246 return setModifier(Modifier.Keyword.NATIVE, set); in setNative()
250 return setModifier(Modifier.Keyword.SYNCHRONIZED, set); in setSynchronized()
254 return setModifier(Modifier.Keyword.DEFAULT, set); in setDefault()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
DLLLexer.cpp493 StringRef Keyword(StartChar, CurPtr - StartChar); in LexIdentifier() local
497 if (Keyword == #STR) \ in LexIdentifier()
794 if (Keyword == STR) { \ in LexIdentifier()
817 if (Keyword == #STR) { \ in LexIdentifier()
881 if (Keyword.startswith("DW_" #TYPE "_")) { \ in LexIdentifier()
882 StrVal.assign(Keyword.begin(), Keyword.end()); \ in LexIdentifier()
897 if (Keyword.startswith("DIFlag")) { in LexIdentifier()
898 StrVal.assign(Keyword.begin(), Keyword.end()); in LexIdentifier()
902 if (Keyword.startswith("CSK_")) { in LexIdentifier()
903 StrVal.assign(Keyword.begin(), Keyword.end()); in LexIdentifier()
[all …]
/external/skqp/docs/
Dmarkup.bmh12 #Keyword
17 #Keyword
18 #Keyword ## <- alternate labeled end of #Keyword
/external/clang/include/clang/Basic/
DAttr.td206 class Keyword<string name> : Spelling<name, "Keyword">;
388 let Spellings = [GCC<"aligned">, Declspec<"align">, Keyword<"alignas">,
389 Keyword<"_Alignas">];
393 Accessor<"isC11", [Keyword<"_Alignas">]>,
394 Accessor<"isAlignas", [Keyword<"alignas">,
395 Keyword<"_Alignas">]>,
426 let Spellings = [GCC<"always_inline">, Keyword<"__forceinline">];
479 let Spellings = [Keyword<"asm">, Keyword<"__asm__">];
529 let Spellings = [GCC<"cdecl">, Keyword<"__cdecl">, Keyword<"_cdecl">];
677 let Spellings = [Keyword<"_Noreturn">];
[all …]
/external/llvm/lib/AsmParser/
DLLLexer.cpp490 StringRef Keyword(StartChar, CurPtr - StartChar); in LexIdentifier() local
493 if (Keyword == #STR) \ in LexIdentifier()
705 if (Keyword == STR) { \ in LexIdentifier()
726 if (Keyword == #STR) { \ in LexIdentifier()
789 if (Keyword.startswith("DW_" #TYPE "_")) { \ in LexIdentifier()
790 StrVal.assign(Keyword.begin(), Keyword.end()); \ in LexIdentifier()
802 if (Keyword.startswith("DIFlag")) { in LexIdentifier()
803 StrVal.assign(Keyword.begin(), Keyword.end()); in LexIdentifier()
806 if (Keyword == "NoDebug" || Keyword == "FullDebug" || in LexIdentifier()
807 Keyword == "LineTablesOnly") { in LexIdentifier()
[all …]
/external/autotest/client/site_tests/policy_DefaultSearchProvider/
Dcontrol.Keyword6 NAME = 'policy_DefaultSearchProvider.Keyword'
21 case='Keyword')

12345678