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

1 2 3 4 5 6 7 8

  /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;
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/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/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)
597 (Visibility, enumerations.Visibility),
  /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...]
  /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
  /frameworks/support/transition/src/android/support/transition/
Visibility.java 26 * This transition tracks changes to the visibility of target views in the
27 * start and end scenes. Visibility is determined not just by the
30 * utility for subclasses such as {@link Fade}, which use this visibility
31 * information to determine the specific animations to run when visibility
36 public abstract class Visibility extends Transition implements VisibilityInterface {
38 public Visibility() {
42 Visibility(boolean deferred) {
71 * to know whether the object is visible in the same way that Visibility
75 * which visibility is determined.
87 * The method should only be called by the Visibility class; it i
    [all...]
  /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 22 #include "clang/Basic/Visibility.h"
50 typedef clang::Visibility Visibility;
  /external/llvm/lib/MC/
MCSymbolELF.cpp 147 void MCSymbolELF::setVisibility(unsigned Visibility) {
148 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
149 Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
152 setFlags(OtherFlags | (Visibility << ELF_STV_Shift));
156 unsigned Visibility = (getFlags() & (0x3 << ELF_STV_Shift)) >> ELF_STV_Shift;
157 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
158 Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED)
    [all...]
  /external/llvm/lib/Object/
ELFYAML.cpp 617 : Visibility(ELFYAML::ELF_STV(0)), Other(ELFYAML::ELF_STO(0)) {}
619 : Visibility(Original & 0x3), Other(Original & ~0x3) {}
621 uint8_t denormalize(IO &) { return Visibility | Other; }
623 ELFYAML::ELF_STV Visibility;
636 IO.mapOptional("Visibility", Keys->Visibility, ELFYAML::ELF_STV(0));
  /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/guice/core/src/com/google/inject/internal/
BytecodeGen.java 44 * <li><strong>Visibility.</strong> Containers like <code>OSGi</code> use class loader boundaries
52 * package visibility.
181 if (Visibility.forType(type) == Visibility.PUBLIC) {
195 public static net.sf.cglib.reflect.FastClass newFastClass(Class<?> type, Visibility visibility) {
199 if (visibility == Visibility.PUBLIC) {
207 public static net.sf.cglib.proxy.Enhancer newEnhancer(Class<?> type, Visibility visibility) {
    [all...]
  /external/guice/core/test/com/googlecode/guice/bundle/
OSGiTestActivator.java 409 enum Visibility {
427 for (Visibility visibility : Visibility.values()) {
431 String suffix = TEST_CLAZZES[visibility.ordinal()].getSimpleName();
433 bind(api).annotatedWith(named(visibility.name())).to(imp);
444 // applies method-interception to classes with enough visibility
494 for (Visibility vis : Visibility.values()) {
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 100 public void testConstructors(Class<?> c, Visibility minimalVisibility) {
113 testConstructors(c, Visibility.PUBLIC);
121 public void testStaticMethods(Class<?> c, Visibility minimalVisibility) {
134 testStaticMethods(c, Visibility.PUBLIC);
142 public void testInstanceMethods(Object instance, Visibility minimalVisibility) {
148 ImmutableList<Method> getInstanceMethodsToTest(Class<?> c, Visibility minimalVisibility) {
164 testInstanceMethods(instance, Visibility.PUBLIC);
224 /** Visibility of any method or constructor. */
225 public enum Visibility {
249 * visibility
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 253 unsigned Linkage, Visibility, DLLStorageClass;
258 ParseOptionalVisibility(Visibility) ||
262 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
454 unsigned Linkage, Visibility, DLLStorageClass;
458 ParseOptionalVisibility(Visibility) ||
465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
482 unsigned Linkage, Visibility, DLLStorageClass;
487 ParseOptionalVisibility(Visibility) ||
494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 591 GlobalValue::VisibilityTypes Visibility =
593 DGV->setVisibility(Visibility);
594 GV.setVisibility(Visibility);
  /prebuilts/devtools/tools/lib/
annotations.jar 
  /prebuilts/gradle-plugin/com/android/tools/annotations/24.1.0/
annotations-24.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/annotations/24.1.3/
annotations-24.1.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/annotations/24.2.0/
annotations-24.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/annotations/24.2.0-alpha1/
annotations-24.2.0-alpha1.jar 

Completed in 1565 milliseconds

1 2 3 4 5 6 7 8