HomeSort by relevance Sort by last modified time
    Searched refs:Names (Results 1 - 25 of 385) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 58 /// InitLibcallNames - Set default libcall names.
60 static void InitLibcallNames(const char **Names, const Triple &TT) {
61 Names[RTLIB::SHL_I16] = "__ashlhi3";
62 Names[RTLIB::SHL_I32] = "__ashlsi3";
63 Names[RTLIB::SHL_I64] = "__ashldi3";
64 Names[RTLIB::SHL_I128] = "__ashlti3";
65 Names[RTLIB::SRL_I16] = "__lshrhi3";
66 Names[RTLIB::SRL_I32] = "__lshrsi3";
67 Names[RTLIB::SRL_I64] = "__lshrdi3";
68 Names[RTLIB::SRL_I128] = "__lshrti3"
    [all...]
  /external/guice/core/test/com/google/inject/name/
NamesTest.java 49 Named actual = Names.named("foo");
55 assertEqualWhenReserialized(Names.named("foo"));
65 Names.bindProperties(binder(), teams);
69 assertEquals("Sharks", injector.getInstance(Key.get(String.class, Names.named("SanJose"))));
70 assertEquals("Oilers", injector.getInstance(Key.get(String.class, Names.named("Edmonton"))));
79 Names.bindProperties(binder(), properties);
83 assertEquals("Sharks", injector.getInstance(Key.get(String.class, Names.named("SanJose"))));
84 assertEquals("Oilers", injector.getInstance(Key.get(String.class, Names.named("Edmonton"))));
98 Names.bindProperties(binder(), teams);
102 assertEquals("Pats", injector.getInstance(Key.get(String.class, Names.named("Regina"))))
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ExtensionSpiTest.java 28 import com.google.inject.name.Names;
83 new Params("/key", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), SERVLET),
84 new Params("/key/2", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), SERVLET),
89 new Params("/key/keyvalues", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of("key", "value"), SERVLET),
90 new Params("/key/keyvalues/2", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of("key", "value"), SERVLET),
96 new Params("/key[0-9]", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), REGEX),
97 new Params("/key[0-9]/2", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), REGEX),
102 new Params("/key[0-9]/keyvalues", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of("key", "value"), REGEX),
103 new Params("/key[0-9]/keyvalues/2", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of("key", "value"), REGEX),
109 new Params("/key", Key.get(DummyServlet.class, Names.named("foo")), ImmutableMap.of(), SERVLET)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 64 /// InitLibcallNames - Set default libcall names.
66 static void InitLibcallNames(const char **Names) {
67 Names[RTLIB::SHL_I16] = "__ashlhi3";
68 Names[RTLIB::SHL_I32] = "__ashlsi3";
69 Names[RTLIB::SHL_I64] = "__ashldi3";
70 Names[RTLIB::SHL_I128] = "__ashlti3";
71 Names[RTLIB::SRL_I16] = "__lshrhi3";
72 Names[RTLIB::SRL_I32] = "__lshrsi3";
73 Names[RTLIB::SRL_I64] = "__lshrdi3";
74 Names[RTLIB::SRL_I128] = "__lshrti3"
    [all...]
  /external/guice/core/src/com/google/inject/name/
Names.java 31 public class Names {
33 private Names() {}
47 binder = binder.skipSources(Names.class);
61 binder = binder.skipSources(Names.class);
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
BackToTheFutureModule.java 21 import com.google.inject.name.Names;
45 bindConstant().annotatedWith(Names.named("year")).to("1955");
  /external/testng/src/test/java/test/dataprovider/
StaticDataProviderSampleTest.java 4 import com.google.inject.name.Names;
37 bind(String.class).annotatedWith(Names.named("test")).toInstance("Cedric");
  /external/guice/core/test/com/google/inject/
LoggerInjectionTest.java 5 import com.google.inject.name.Names;
52 .annotatedWith(Names.named("anonymous"))
57 assertNull(injector.getInstance(Key.get(Logger.class, Names.named("anonymous"))).getName());
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.cpp 11 /// \brief Implements a class for specifying sets of names and number ranges to
21 /// regular expressions are not used for the names.
91 D->Names.insert(Token);
123 if (!Includes.Names.empty() || !Excludes.Names.empty())
135 if (Excludes.Names.find(Name) != Excludes.Names.end())
143 if (Includes.Names.find(Name) != Includes.Names.end())
IceRangeSpec.h 39 // Set of names explicitly provided.
40 std::unordered_set<std::string> Names;
58 // construct explicit names for functions even in a non-DUMP build so that
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16037_run.go 25 {{range .Names}}
30 {{range .Names}}
46 var t struct{ Names []Name }
48 t.Names = append(t.Names, Name{Name: fmt.Sprintf("H%06X", i)})
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16037_run.go 25 {{range .Names}}
30 {{range .Names}}
46 var t struct{ Names []Name }
48 t.Names = append(t.Names, Name{Name: fmt.Sprintf("H%06X", i)})
  /external/guice/core/test/com/google/inject/spi/
ModuleRewriterTest.java 29 import com.google.inject.name.Names;
88 bind(String.class).annotatedWith(Names.named("2")).toProvider(new Provider<String>() {
106 assertEquals("A", injector.getInstance(Key.get(String.class, Names.named("2"))));
112 assertEquals("A", replayedInjector.getInstance(Key.get(String.class, Names.named("2"))));
SpiBindingsTest.java 37 import com.google.inject.name.Names;
59 bindConstant().annotatedWith(Names.named("one")).to(1);
66 assertEquals(Key.get(Integer.class, Names.named("one")), binding.getKey());
157 final Key<String> aKey = Key.get(String.class, Names.named("a"));
158 final Key<String> bKey = Key.get(String.class, Names.named("b"));
223 bindConstant().annotatedWith(Names.named("one")).to(1);
231 assertEquals(Key.get(Integer.class, Names.named("one")), binding.getKey());
247 bindConstant().annotatedWith(Names.named("one")).to("1");
251 Binding<Integer> binding = injector.getBinding(Key.get(Integer.class, Names.named("one")));
252 assertEquals(Key.get(Integer.class, Names.named("one")), binding.getKey())
    [all...]
ElementsTest.java 48 import com.google.inject.name.Names;
161 bindConstant().annotatedWith(Names.named("Bee")).to("B");
177 assertEquals(Key.get(String.class, Names.named("Bee")), command.getKey());
189 bindConstant().annotatedWith(Names.named("String")).to("A");
190 bindConstant().annotatedWith(Names.named("int")).to(2);
191 bindConstant().annotatedWith(Names.named("long")).to(3L);
192 bindConstant().annotatedWith(Names.named("boolean")).to(false);
193 bindConstant().annotatedWith(Names.named("double")).to(5.0d);
194 bindConstant().annotatedWith(Names.named("float")).to(6.0f);
195 bindConstant().annotatedWith(Names.named("short")).to((short) 7)
    [all...]
  /external/guice/extensions/jmx/test/com/google/inject/tools/jmx/
JmxTest.java 25 import com.google.inject.name.Names;
58 bindConstant().annotatedWith(Names.named("port")).to(8080);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SubtargetEmitter.h 38 void FormItineraryStageString(const std::string &Names,
43 void FormItineraryBypassString(const std::string &Names,
  /external/clang/lib/Basic/
TargetInfo.cpp 366 ArrayRef<const char *> Names = getGCCRegNames();
372 return n < Names.size();
375 // Check register names.
376 if (std::find(Names.begin(), Names.end(), Name) != Names.end())
379 // Check any additional names that we have.
381 for (const char *AN : ARN.Names) {
385 // the bounds of the register names from above.
386 if (AN == Name && ARN.RegNum < Names.size()
    [all...]
  /external/guice/extensions/spring/test/com/google/inject/spring/
SpringIntegrationTest.java 26 import com.google.inject.name.Names;
89 = Key.get(Singleton.class, Names.named("singleton"));
91 = Key.get(Prototype.class, Names.named("prototype"));
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContext.cpp 142 void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const {
143 Names.resize(pImpl->CustomMDKindNames.size());
146 Names[I->second] = I->first();
  /external/llvm/unittests/Support/
TypeNameTest.cpp 23 TEST(TypeNameTest, Names) {
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 298 std::vector<std::string> Names;
300 Names.emplace_back(*Name);
302 new internal::HasNameMatcher(std::move(Names)));
309 Names(std::move(N)) {
311 for (StringRef Name : Names)
364 PatternSet(ArrayRef<std::string> Names) {
365 for (StringRef Name : Names)
408 return std::any_of(Names.begin(), Names.end(), [&](StringRef Name) {
414 PatternSet Patterns(Names);
    [all...]
  /libcore/json/src/main/java/org/json/
JSONTokener.java 364 throw syntaxError("Names cannot be null");
366 throw syntaxError("Names must be strings, but " + name
  /prebuilts/go/darwin-x86/src/cmd/vet/
structtag.go 57 if key == "xml" && len(field.Names) > 0 && field.Names[0].Name == "XMLName" {
60 // names defined on other fields of the struct. Vet does not have a
82 if len(field.Names) > 0 {
83 name = field.Names[0].Name
97 if len(field.Names) == 0 {
101 if field.Names[0].IsExported() {
107 f.Badf(field.Pos(), "struct field %s has %s tag but is not exported", field.Names[0].Name, enc)
  /prebuilts/go/linux-x86/src/cmd/vet/
structtag.go 57 if key == "xml" && len(field.Names) > 0 && field.Names[0].Name == "XMLName" {
60 // names defined on other fields of the struct. Vet does not have a
82 if len(field.Names) > 0 {
83 name = field.Names[0].Name
97 if len(field.Names) == 0 {
101 if field.Names[0].IsExported() {
107 f.Badf(field.Pos(), "struct field %s has %s tag but is not exported", field.Names[0].Name, enc)

Completed in 558 milliseconds

1 2 3 4 5 6 7 8 91011>>