HomeSort by relevance Sort by last modified time
    Searched defs:Visibility (Results 1 - 25 of 70) sorted by null

1 2 3

  /cts/tools/signature-tools/src/signature/converter/
Visibility.java 31 * The default visibility mode is <code>PROTECTED</code>.
34 public enum Visibility {
  /frameworks/base/opengl/java/android/opengl/
Visibility.java 20 * A collection of utility methods for computing the visibility of triangle
24 public class Visibility {
  /frameworks/base/core/java/com/android/internal/annotations/
VisibleForTesting.java 23 * Denotes that the class, method or field has its visibility relaxed so
26 * The <code>visibility</code> argument can be used to specific what the original
27 * visibility should have been if it had not been made public or package-private for testing.
33 * Intended visibility if the element had not been made public or package-private for
36 enum Visibility {
46 * Intended visibility if the element had not been made public or package-private for testing.
49 Visibility visibility() default Visibility.PRIVATE;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/annotations/
VisibleForTesting.java 23 * Denotes that the class, method or field has its visibility relaxed so
26 * The <code>visibility</code> argument can be used to specific what the original
27 * visibility should have been if it had not been made public or package-private for testing.
33 * Intended visibility if the element had not been made public or package-private for
36 enum Visibility {
46 * Intended visibility if the element had not been made public or package-private for testing.
49 Visibility visibility() default Visibility.PRIVATE;
  /external/chromium_org/ui/message_center/
message_center_types.h 10 enum Visibility {
  /external/llvm/bindings/python/llvm/
enumerations.py 26 'Visibility',
162 Visibility = [
core.py 106 class Visibility(LLVMEnumeration):
107 """Represents an individual visibility enumeration."""
112 super(Visibility, self).__init__(name, value)
600 (Visibility, enumerations.Visibility),
  /external/chromium_org/tools/gn/
visibility.cc 5 #include "tools/gn/visibility.h"
17 Visibility::VisPattern::VisPattern() : type_(MATCH) {
20 Visibility::VisPattern::VisPattern(Type type,
28 Visibility::VisPattern::~VisPattern() {
31 bool Visibility::VisPattern::Matches(const Label& label) const {
36 // The directories must match exactly for private visibility.
40 // private visibility.
49 Visibility::Visibility() {
52 Visibility::~Visibility()
    [all...]
visibility.h 20 class Visibility {
53 // Defaults to private visibility (only the current file).
54 Visibility();
55 ~Visibility();
57 // Set the visibility to the thing specified by the given value. On failure,
61 // Sets the visibility to be public.
64 // Sets the visibility to be private to the given directory.
68 // current visibility.
71 // Returns a string listing the visibility. |indent| number of spaces will
83 // Helper function to check visibility between the given two items. I
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexAnnotation.java 27 * {@code Visibility} indicates the retention of a {@code DexAnnotation}.
29 enum Visibility {
48 private Visibility(byte value) {
53 * Returns the {@code Visibility} identified by the given {@code byte}.
58 * Visibility}
59 * @return the {@code Visibility} for the given {@code byte}
61 public static Visibility get(byte value) {
71 throw new IllegalArgumentException("Visibility doesn't exist!");
77 * Returns the {@code Visibility} of this {@code DexAnnotation}.
79 * @return the {@code Visibility} of this {@code DexAnnotation
    [all...]
  /external/llvm/lib/MC/
MCELF.cpp 54 // Visibility is stored in the first two bits of st_other
56 void MCELF::SetVisibility(MCSymbolData &SD, unsigned Visibility) {
57 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
58 Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
61 SD.setFlags(OtherFlags | (Visibility << ELF_STV_Shift));
65 unsigned Visibility =
67 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL |
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
Visibility.java 27 * Exercise View's ability to change their visibility: GONE, INVISIBLE and
30 public class Visibility extends Activity {
34 setContentView(R.layout.visibility);
36 // Find the view whose visibility will change
  /external/clang/include/clang/Basic/
Visibility.h 1 //===--- Visibility.h - Visibility enumeration and utilities ----*- C++ -*-===//
11 /// \brief Defines the clang::Visibility enumeration and various utility
22 /// \brief Describes the different kinds of visibility that a declaration
25 /// Visibility determines how a declaration interacts with the dynamic
29 /// Visibility is not described in any language standard and
31 /// support all visibility kinds.
32 enum Visibility {
33 /// Objects with "hidden" visibility are not seen by the dynamic
37 /// Objects with "protected" visibility are seen by the dynami
    [all...]
LangOptions.h 21 #include "clang/Basic/Visibility.h"
57 typedef clang::Visibility Visibility;
  /external/lldb/include/lldb/Symbol/
Symtab.h 36 typedef enum Visibility {
40 } Visibility;
59 Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx);
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
64 uint32_t AppendSymbolIndexesWithName (const ConstString& symbol_name, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
66 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
68 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes);
70 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes);
71 size_t FindAllSymbolsMatchingRexExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes);
72 Symbol * FindFirstSymbolWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility)
    [all...]
  /external/deqp/framework/egl/
egluNativeWindow.hpp 44 enum Visibility
61 Visibility visibility; //!< Visibility for window member in struct:eglu::WindowParams
63 WindowParams (void) : width(SIZE_DONT_CARE), height(SIZE_DONT_CARE), visibility(VISIBILITY_DONT_CARE) {}
64 WindowParams (int width_, int height_, Visibility visibility_) : width(width_), height(height_), visibility(visibility_) {}
110 // Change window visibility. Default throws tcu::NotSupportedError().
111 virtual void setVisibility (WindowParams::Visibility visibility);
    [all...]
  /external/deqp/framework/opengl/
gluRenderConfig.hpp 52 enum Visibility
71 Visibility windowVisibility;
104 RenderConfig::Visibility parseWindowVisibility (const tcu::CommandLine& cmdLine);
  /external/llvm/include/llvm/Object/
ELFYAML.h 66 ELF_STV Visibility;
  /external/llvm/lib/AsmParser/
LLParser.cpp 276 unsigned Linkage, Visibility, DLLStorageClass;
281 ParseOptionalVisibility(Visibility) ||
285 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
476 unsigned Linkage, Visibility, DLLStorageClass;
480 ParseOptionalVisibility(Visibility) ||
487 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
489 return ParseAlias(Name, NameLoc, Visibility, DLLStorageClass, TLM,
504 unsigned Linkage, Visibility, DLLStorageClass;
509 ParseOptionalVisibility(Visibility) ||
516 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
    [all...]
  /frameworks/base/core/java/android/transition/
Visibility.java 32 * This transition tracks changes to the visibility of target views in the
33 * start and end scenes. Visibility is determined not just by the
36 * utility for subclasses such as {@link Fade}, which use this visibility
37 * information to determine the specific animations to run when visibility
44 public abstract class Visibility extends Transition {
46 static final String PROPNAME_VISIBILITY = "android:visibility:visibility";
47 private static final String PROPNAME_PARENT = "android:visibility:parent";
48 private static final String PROPNAME_SCREEN_LOCATION = "android:visibility:screenLocation";
53 * {@link #MODE_OUT} to target Visibility changes both in and out
126 int visibility; local
178 int visibility = (Integer) values.values.get(PROPNAME_VISIBILITY); local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page_test.cc 433 enum Visibility {
644 Visibility GetVisibility(const std::string& node_id) {
    [all...]
  /external/deqp/modules/egl/
teglResizeTests.cpp 79 typedef eglu::WindowParams::Visibility Visibility;
155 const Visibility visibility = eglu::parseWindowVisibility(cmdLine); local
162 visibility));
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 83 enum Visibility {
120 void setVisibility(Visibility pVisibility);
183 { return (uint8_t)visibility(); }
185 Visibility visibility() const;
290 * |length of m_Name|InDyn|reserved|Symbol|Type |ELF visibility|Local|Com|Def|Dyn|Weak|
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 60 typedef RenderConfig::Visibility Visibility;

Completed in 1094 milliseconds

1 2 3