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

1 2 3 4 5 6 7 8 9

  /external/dbus-binding-generator/
Android.mk 31 chromeos-dbus-bindings/adaptor_generator.cc \
32 chromeos-dbus-bindings/dbus_signature.cc \
33 chromeos-dbus-bindings/header_generator.cc \
34 chromeos-dbus-bindings/indented_text.cc \
35 chromeos-dbus-bindings/method_name_generator.cc \
36 chromeos-dbus-bindings/name_parser.cc \
37 chromeos-dbus-bindings/proxy_generator.cc \
38 chromeos-dbus-bindings/xml_interface_parser.cc
48 LOCAL_SRC_FILES := chromeos-dbus-bindings/generate_chromeos_dbus_bindings.cc
63 chromeos-dbus-bindings/adaptor_generator_unittest.cc
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
BindingCollector.java 29 * Utility class for collecting factory bindings. Used for configuring {@link FactoryProvider2}.
35 private final Map<Key<?>, TypeLiteral<?>> bindings = Maps.newHashMap(); field in class:BindingCollector
38 if (bindings.containsKey(key)) {
43 bindings.put(key, target);
49 return Collections.unmodifiableMap(bindings);
54 return bindings.hashCode();
59 return (obj instanceof BindingCollector) && bindings.equals(((BindingCollector) obj).bindings);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MissingBindingSuggestions.java 23 * Utility code that looks for bindings matching a key in all subcomponents in a binding graph so
40 ResolvedBindings bindings = graph.resolvedBindings().get(key); local
41 if ((bindings == null) || bindings.bindings().isEmpty()) {
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
AliasCreator.java 34 * @param bindings bindings that make up the dependency graph
37 Iterable<Alias> createAliases(Iterable<Binding<?>> bindings);
EdgeCreator.java 31 Iterable<Edge> getEdges(Iterable<Binding<?>> bindings);
NodeCreator.java 30 Iterable<Node> getNodes(Iterable<Binding<?>> bindings);
ProviderAliasCreator.java 33 @Override public Iterable<Alias> createAliases(Iterable<Binding<?>> bindings) {
35 for (Binding<?> binding : bindings) {
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
Makefile 22 include $(LEVEL)/bindings/ocaml/Makefile.ocaml
  /external/chromium-libpac/test/js-unittest/
binding_from_global.js 1 // Calls a bindings outside of FindProxyForURL(). This causes the code to
international_domain_names.js 9 // the C++ end the bindings were passed the punycode equivalent of this
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
Makefile 24 include $(LEVEL)/bindings/ocaml/Makefile.ocaml
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Makefile 25 include $(LEVEL)/bindings/ocaml/Makefile.ocaml
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Makefile 25 include $(LEVEL)/bindings/ocaml/Makefile.ocaml
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
  /external/chromium-libpac/test/
proxy_resolver_v8_unittest.cc 20 // Javascript bindings for ProxyResolverV8, which returns mock values.
21 // Each time one of the bindings is called into, we push the input into a
85 // This is the same as ProxyResolverV8, but it uses mock bindings in place of
86 // the default bindings, and has a helper function to load PAC scripts from
243 MockJSBindings* bindings = resolver.mock_js_bindings(); local
244 EXPECT_EQ(0U, bindings->alerts.size());
245 ASSERT_EQ(1U, bindings->errors.size());
247 bindings->errors[0]);
272 MockJSBindings* bindings = resolver.mock_js_bindings(); local
273 EXPECT_EQ(0U, bindings->alerts.size())
322 MockJSBindings* bindings = resolver.mock_js_bindings(); local
398 MockJSBindings* bindings = resolver.mock_js_bindings(); local
446 MockJSBindings* bindings = resolver.mock_js_bindings(); local
538 MockJSBindings* bindings = resolver.mock_js_bindings(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Messages.java 68 * @param bindings An array of objects to be inserted into the message
71 public static String bind(String message, Object[] bindings) {
72 return MessageFormat.format(message, bindings);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
Makefile 34 include $(LEVEL)/bindings/ocaml/Makefile.ocaml
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
Makefile 34 include $(LEVEL)/bindings/ocaml/Makefile.ocaml
  /external/v8/test/mjsunit/es6/
block-conflicts-sloppy.js 5 // Test for conflicting variable bindings.
97 // Test conflicting let/var bindings.
114 // Test conflicting let/let bindings.
131 // Test conflicting function/let bindings.
145 // Test conflicting parameter/let bindings.
149 // Test conflicting function/var bindings.
163 // Test conflicting catch/var bindings.
168 // Test conflicting parameter/var bindings.
173 // Test conflicting catch/function bindings.
176 // Test conflicting parameter/function bindings
    [all...]
block-conflicts.js 5 // Test for conflicting variable bindings.
97 // Test conflicting let/var bindings.
114 // Test conflicting let/let bindings.
131 // Test conflicting function/let bindings.
145 // Test conflicting parameter/let bindings.
149 // Test conflicting function/var bindings.
163 // Test conflicting catch/var bindings.
168 // Test conflicting parameter/var bindings.
173 // Test conflicting catch/function bindings.
176 // Test conflicting parameter/function bindings
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
MergedBinding.java 39 BindingTarget target, Iterable<Binding> bindings) {
40 super(target, createMergedName(bindings), createArgListExpr(model, bindings));
55 private static Expr createArgListExpr(ExprModel model, final Iterable<Binding> bindings) {
57 for (Binding binding : bindings) {
65 private static String createMergedName(Iterable<Binding> bindings) {
67 for (Binding binding : bindings) {
  /external/deqp/modules/glshared/
glsAttributeLocationTests.cpp 66 deInt32 getBoundLocation (const map<string, deUint32>& bindings, const string& attrib)
68 std::map<string, deUint32>::const_iterator iter = bindings.find(attrib);
70 return (iter == bindings.end() ? (deInt32)Attribute::LOC_UNDEF : iter->second);
73 bool hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindings)
79 const deInt32 location = getBoundLocation(bindings, attributes[attribNdx].getName());
602 bool checkAttribLocationQuery (TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings)
609 const deInt32 expectedLocation = (attrib.getLayoutLocation() != Attribute::LOC_UNDEF ? attrib.getLayoutLocation() : getBoundLocation(bindings, attrib.getName()));
631 bool checkQuery (TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings)
635 if (!checkAttribLocationQuery(log, gl, program, attributes, bindings))
820 vector<Bind> bindings; local
847 vector<Bind> bindings; local
882 vector<Bind> bindings; local
911 vector<Bind> bindings; local
949 vector<Bind> bindings; local
989 vector<Bind> bindings; local
1020 vector<Bind> bindings; local
1041 vector<Bind> bindings; local
1062 vector<Bind> bindings; local
1177 vector<Bind> bindings; local
1204 vector<Bind> bindings; local
1245 vector<Bind> bindings; local
1404 vector<Bind> bindings; local
1430 vector<Bind> bindings; local
1451 vector<Bind> bindings; local
1472 vector<Bind> bindings; local
1494 vector<Bind> bindings; local
    [all...]

Completed in 378 milliseconds

1 2 3 4 5 6 7 8 9