OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textAttributesKey
(Results
1 - 2
of
2
) sorted by null
/external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliLexicalElementType.java
34
import com.intellij.openapi.editor.colors.
TextAttributesKey
;
39
public final
TextAttributesKey
[] textAttributesKeys;
41
protected SmaliLexicalElementType(int tokenId, String tokenName,
TextAttributesKey
textAttributesKey
) {
44
this.textAttributesKeys = new
TextAttributesKey
[] {
textAttributesKey
};
SmaliTokens.java
35
import com.intellij.openapi.editor.colors.
TextAttributesKey
;
166
Map<String,
TextAttributesKey
> tokenColors = Maps.newHashMap();
294
TextAttributesKey
textAttributesKey
= tokenColors.get(tokenName);
296
if (
textAttributesKey
== null) {
300
SmaliLexicalElementType elementType = new SmaliLexicalElementType(tokenId, tokenName,
textAttributesKey
);
Completed in 341 milliseconds