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

1 2 3

  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/hidden/
Hidden.java 20 public class Hidden {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenChannels.cs 40 * so that whitespace etc... can go to the parser on a "hidden" channel.
50 public const int Hidden = 99;
BaseRecognizer.cs 65 public const int Hidden = TokenChannels.Hidden;
    [all...]
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
PrivateTestModule.java 28 static class Hidden implements Exposed {}
31 bind(Exposed.class).to(Hidden.class);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 40 * so that whitespace etc... can go to the parser on a "hidden" channel.
50 public const int Hidden = 99;
BaseRecognizer.cs 63 public const int Hidden = TokenChannels.Hidden;
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue116/
NoFieldsTest.java 35 Hidden hidden = new Hidden(); local
38 yaml.dump(hidden);
42 "No JavaBean properties found in org.yaml.snakeyaml.issues.issue116.Hidden");
44 Object hiddenParsed = yaml.load("!!org.yaml.snakeyaml.issues.issue116.Hidden {}\n");
45 assertTrue(hiddenParsed instanceof Hidden);
49 HiddenSpecial hidden = new HiddenSpecial("qwerty"); local
52 yaml.dump(hidden);
67 class Hidden {
    [all...]
  /external/clang/utils/TableGen/
ClangSACheckersEmitter.cpp 26 /// \brief True if it is specified hidden or a parent package is specified
27 /// as hidden, otherwise false.
29 if (R.getValueAsBit("Hidden"))
31 // Not declared as hidden, check the parent package if it is hidden.
76 bool Hidden;
79 GroupInfo() : Hidden(false) { }
114 info.Hidden = isHidden(*R);
144 info.Hidden = R->getValueAsBit("Hidden");
    [all...]
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 45 cl::init(true), cl::Hidden);
54 IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
68 cl::init(false), cl::Hidden);
  /external/guice/core/test/com/googlecode/guice/
BytecodeGenTest.java 293 static class Hidden {
297 public Hidden method() {
298 return new Hidden();
303 public void method(Hidden h) {
315 Class hiddenClass = testClassLoader.loadClass(Hidden.class.getName());
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
link.go 119 func (a Attribute) Hidden() bool { return a&AttrHidden != 0 }
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
link.go 119 func (a Attribute) Hidden() bool { return a&AttrHidden != 0 }
  /external/llvm/lib/CodeGen/GlobalISel/
RegBankSelect.cpp 30 cl::desc("Mode of the RegBankSelect pass"), cl::Hidden, cl::Optional,
    [all...]
  /external/clang/include/clang/Basic/
Module.h 207 /// \brief All of the names in this module are hidden.
208 Hidden,
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryModuleBuilderTest.java 491 .implement(Hidden.class, HiddenImpl.class)
497 + Hidden.class.getName() + ". Due to limitations with java.lang.reflect.Proxy, this is not allowed. "
503 interface Hidden {}
504 public static class HiddenImpl implements Hidden {}
506 Hidden create();
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 72 enum Visibility { Default = 0, Internal = 1, Hidden = 2, Protected = 3 };
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
Module.h 221 /// \brief All of the names in this module are hidden.
222 Hidden,
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CommandLine.h 111 NotHidden = 0x20, // Option included in -help & -help-hidden
112 Hidden = 0x40, // -help doesn't, but -help-hidden does
113 ReallyHidden = 0x60, // Neither -help nor -help-hidden show this arg
    [all...]

Completed in 2834 milliseconds

1 2 3