/external/llvm/lib/DebugInfo/DWARF/ |
SyntaxHighlighting.cpp | 25 case Address: OS.changeColor(llvm::raw_ostream::YELLOW); break; 26 case String: OS.changeColor(llvm::raw_ostream::GREEN); break; 27 case Tag: OS.changeColor(llvm::raw_ostream::BLUE); break; 28 case Attribute: OS.changeColor(llvm::raw_ostream::CYAN); break; 29 case Enumerator: OS.changeColor(llvm::raw_ostream::MAGENTA); break; 30 case Macro: OS.changeColor(llvm::raw_ostream::RED); break;
|
/external/javassist/sample/duplicate/ |
Ball.java | 14 changeColor(Color.orange);
41 public void changeColor(Color color) {
|
Viewer.java | 27 ball.changeColor(colorList[0]);
48 ball.changeColor(colorList[++colorNo % colorList.length]);
|
/external/llvm/tools/llvm-pdbdump/ |
LinePrinter.cpp | 95 OS.changeColor(raw_ostream::YELLOW, /*bold=*/true); 98 OS.changeColor(raw_ostream::MAGENTA, true); 102 OS.changeColor(raw_ostream::YELLOW, false); 105 OS.changeColor(raw_ostream::CYAN, true); 108 OS.changeColor(raw_ostream::CYAN, false); 111 OS.changeColor(raw_ostream::CYAN, false); 114 OS.changeColor(raw_ostream::RED, true); 117 OS.changeColor(raw_ostream::GREEN, true);
|
/frameworks/compile/mclinker/lib/LD/ |
TextDiagnosticPrinter.cpp | 55 m_OStream.changeColor(UnreachableColor, true); 62 m_OStream.changeColor(FatalColor, true); 69 m_OStream.changeColor(ErrorColor, true); 76 m_OStream.changeColor(WarningColor, true); 85 m_OStream.changeColor(DebugColor, true); 95 m_OStream.changeColor(NoteColor, true); 105 m_OStream.changeColor(IgnoreColor, true); 119 m_OStream.changeColor(llvm::raw_ostream::YELLOW); 140 m_OStream.changeColor(llvm::raw_ostream::YELLOW); 153 m_OStream.changeColor(llvm::raw_ostream::YELLOW) [all...] |
/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/ |
CustomUsage.java | 28 * This demonstrates usage of a custom Transition. See {@link ChangeColor} for the actual 38 mTransition = new ChangeColor();
|
ChangeColor.java | 34 public class ChangeColor extends Transition {
|
/external/llvm/tools/llvm-cov/ |
RenderingSupport.h | 55 OS.changeColor(Color, Bold, BG);
|
llvm-cov.cpp | 79 errs().changeColor(raw_ostream::RED);
|
/external/llvm/tools/llvm-mcmarkup/ |
llvm-mcmarkup.cpp | 105 outs().changeColor(raw_ostream::RED); 107 outs().changeColor(raw_ostream::CYAN); 119 outs().changeColor(raw_ostream::WHITE, false);
|
/developers/build/prebuilts/gradle/CustomTransition/Application/src/main/java/com/example/android/customtransition/ |
CustomTransitionFragment.java | 71 mTransition = new ChangeColor();
|
ChangeColor.java | 34 public class ChangeColor extends Transition {
|
/developers/samples/android/ui/transition/CustomTransition/Application/src/main/java/com/example/android/customtransition/ |
CustomTransitionFragment.java | 71 mTransition = new ChangeColor();
|
ChangeColor.java | 34 public class ChangeColor extends Transition {
|
/development/samples/browseable/CustomTransition/src/com.example.android.customtransition/ |
CustomTransitionFragment.java | 71 mTransition = new ChangeColor();
|
ChangeColor.java | 34 public class ChangeColor extends Transition {
|
/external/llvm/include/llvm/Support/ |
FormattedStream.h | 125 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override { 126 TheStream->changeColor(Color, Bold, BG);
|
raw_ostream.h | 235 virtual raw_ostream &changeColor(enum Colors Color, 401 raw_ostream &changeColor(enum Colors colors, bool bold=false,
|
/frameworks/compile/mclinker/lib/Support/ |
raw_ostream.cpp | 61 llvm::raw_ostream& raw_fd_ostream::changeColor( 67 return llvm::raw_fd_ostream::changeColor(pColor, pBold, pBackground);
|
/frameworks/compile/mclinker/include/mcld/Support/ |
raw_ostream.h | 42 llvm::raw_ostream& changeColor(enum llvm::raw_ostream::Colors pColors,
|
/external/clang/lib/Frontend/ |
TextDiagnostic.cpp | 56 OS.changeColor(templateColor, true); 60 OS.changeColor(savedColor, true); 709 case DiagnosticsEngine::Note: OS.changeColor(noteColor, true); break; 710 case DiagnosticsEngine::Remark: OS.changeColor(remarkColor, true); break; 711 case DiagnosticsEngine::Warning: OS.changeColor(warningColor, true); break; 712 case DiagnosticsEngine::Error: OS.changeColor(errorColor, true); break; 713 case DiagnosticsEngine::Fatal: OS.changeColor(fatalColor, true); break; 750 OS.changeColor(savedColor, true); 797 OS.changeColor(savedColor, true); [all...] |
ASTConsumers.cpp | 58 Out.changeColor(raw_ostream::BLUE);
|
/external/llvm/lib/Support/ |
SourceMgr.cpp | 341 S.changeColor(raw_ostream::SAVEDCOLOR, true); 364 S.changeColor(raw_ostream::RED, true); 369 S.changeColor(raw_ostream::MAGENTA, true); 374 S.changeColor(raw_ostream::BLACK, true); 381 S.changeColor(raw_ostream::SAVEDCOLOR, true); 437 S.changeColor(raw_ostream::GREEN, true);
|
/frameworks/base/docs/html/training/transitions/ |
custom-transitions.jd | 178 href="{@docRoot}samples/CustomTransition/src/com.example.android.customtransition/ChangeColor.html"> 179 <code>ChangeColor</code></a> class in the <a href="{@docRoot}samples/CustomTransition/index.html">
|
/packages/apps/Calendar/src/com/android/calendar/ |
EventInfoFragment.java | [all...] |