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

  /external/chromium_org/tools/gn/
visibility.h 21 class Visibility {
23 // Defaults to private visibility (only the current file).
24 Visibility();
25 ~Visibility();
27 // Set the visibility to the thing specified by the given value. On failure,
31 // Sets the visibility to be public.
34 // Sets the visibility to be private to the given directory.
38 // current visibility.
41 // Returns a string listing the visibility. |indent| number of spaces will
47 // Helper function to check visibility between the given two items. I
    [all...]
visibility.cc 5 #include "tools/gn/visibility.h"
17 Visibility::Visibility() {
20 Visibility::~Visibility() {
23 bool Visibility::Set(const SourceDir& current_dir,
42 void Visibility::SetPublic() {
49 void Visibility::SetPrivate(const SourceDir& current_dir) {
56 bool Visibility::CanSeeMe(const Label& label) const {
64 std::string Visibility::Describe(int indent, bool include_brackets) const
    [all...]
  /cts/tools/signature-tools/src/signature/converter/
Visibility.java 31 * The default visibility mode is <code>PROTECTED</code>.
34 public enum Visibility {
  /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),
  /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...]
ELFObjectWriter.cpp 602 // Other and Visibility share the same byte with Visibility using the lower
604 uint8_t Visibility = MCELF::GetVisibility(OrigData);
606 Other |= Visibility;
    [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 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...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page_test.cc 367 enum Visibility {
565 Visibility GetVisibility(const std::string& node_id) {
  /external/deqp/modules/egl/
teglResizeTests.cpp 79 typedef eglu::WindowParams::Visibility Visibility;
155 const Visibility visibility = eglu::parseWindowVisibility(cmdLine); local
162 visibility));
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 60 typedef RenderConfig::Visibility Visibility;
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 62 module Visibility = struct
570 external visibility : llvalue -> Visibility.t = "llvm_visibility"
571 external set_visibility : Visibility.t -> llvalue -> unit = "llvm_set_visibility"
    [all...]
llvm.mli 99 (** The linker visibility of a global value, accessed with {!visibility} and
101 module Visibility : sig
1231 val visibility : llvalue -> Visibility.t var
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 646 milliseconds