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

1 2

  /external/guice/core/src/com/google/inject/
Stage.java 27 * We're running in a tool (an IDE plugin for example). We need binding meta data but not a
32 TOOL,
  /hardware/qcom/bt/msm8909/libbt-vendor/
vnd_buildcfg.mk 25 TOOL := $(TOP_DIR)external/bluetooth/bluedroid/tools/gen-buildcfg.sh
28 $(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
29 $(GEN): $(SRC) $(TOOL)
  /hardware/qcom/bt/msm8960/libbt-vendor/
vnd_buildcfg.mk 24 TOOL := $(TOP_DIR)hardware/broadcom/libbt/gen-buildcfg.sh
27 $(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
28 $(GEN): $(SRC) $(TOOL)
  /hardware/qcom/bt/msm8992/libbt-vendor/
vnd_buildcfg.mk 25 TOOL := $(LOCAL_PATH)/gen-buildcfg.sh
28 $(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
29 $(GEN): $(SRC) $(TOOL)
  /hardware/qcom/bt/msm8996/libbt-vendor/
vnd_buildcfg.mk 25 TOOL := $(LOCAL_PATH)/gen-buildcfg.sh
28 $(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
29 $(GEN): $(SRC) $(TOOL)
  /hardware/qcom/bt/msm8998/libbt-vendor/
vnd_buildcfg.mk 25 TOOL := $(TOP_DIR)external/bluetooth/bluedroid/tools/gen-buildcfg.sh
28 $(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
29 $(GEN): $(SRC) $(TOOL)
  /system/core/toolbox/
toolbox.c 7 #define TOOL(name) int name##_main(int, char**);
9 #undef TOOL
15 #define TOOL(name) { #name, name##_main },
17 #undef TOOL
44 printf("%s: no such tool\n", argv[0]);
Android.mk 64 $(TOOLS_H): PRIVATE_CUSTOM_TOOL = echo "/* file generated automatically */" > $@ ; for t in $(PRIVATE_TOOLS) ; do echo "TOOL($$t)" >> $@ ; done
  /hardware/broadcom/libbt/
vnd_buildcfg.mk 14 TOOL := $(call my-dir)/gen-buildcfg.sh
17 $(GEN): PRIVATE_CUSTOM_TOOL = $(TOOL) $< $@
18 $(GEN): $(SRC) $(TOOL)
  /external/icu/icu4c/source/tools/gencolusb/
Makefile 22 TOOL=extract_unsafe_backwards
38 $(CXX) -o $(BUILD_HERE)/$(TOOL) $(srcdir)/$(TOOL).cpp $(BUILD_OPTS)
39 $(RUN_OPTS) $(BUILD_HERE)/$(TOOL) > $(GEN_FILE) || exit 1
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_constant.h 98 // These are vendor and tool.
106 // Evaluates to a well-formed generator magic word from a tool value and
108 #define SPV_GENERATOR_WORD(TOOL, MISC) \
109 ((uint32_t(uint16_t(TOOL)) << 16) | uint16_t(MISC))
110 // Returns the tool component of the generator word.
  /external/guice/core/test/com/google/inject/spi/
ToolStageInjectorTest.java 30 Injector injector = Guice.createInjector(Stage.TOOL);
33 fail("Non-SPI Injector methods must throw an exception in the TOOL stage.");
39 fail("Non-SPI Injector methods must throw an exception in the TOOL stage.");
45 fail("Non-SPI Injector methods must throw an exception in the TOOL stage.");
51 fail("Non-SPI Injector methods must throw an exception in the TOOL stage.");
57 fail("Non-SPI Injector methods must throw an exception in the TOOL stage.");
64 Guice.createInjector(Stage.TOOL, new AbstractModule() {
79 Guice.createInjector(Stage.TOOL, new AbstractModule() {
95 Guice.createInjector(Stage.TOOL, new AbstractModule() {
113 Guice.createInjector(Stage.TOOL, new AbstractModule()
    [all...]
  /external/guice/core/src/com/google/inject/internal/
InjectionRequestProcessor.java 120 // Run injections if we're not in tool stage (ie, PRODUCTION or DEV),
121 // or if we are in tool stage and the injection point is toolable.
122 if(injector.options.stage != Stage.TOOL || memberInjector.getInjectionPoint().isToolable()) {
InternalInjectorCreator.java 53 * is not executed for injectors created using {@link Stage#TOOL the tool stage}</li>
112 if (shellBuilder.getStage() == Stage.TOOL) {
114 // to prevent non-tool-friendy methods from being called.
178 if(shellBuilder.getStage() != Stage.TOOL) {
238 /** {@link Injector} exposed to users in {@link Stage#TOOL}. */
247 "Injector.injectMembers(Object) is not supported in Stage.TOOL");
284 "Injector.getProvider(Key<T>) is not supported in Stage.TOOL");
288 "Injector.getProvider(Class<T>) is not supported in Stage.TOOL");
292 "Injector.getMembersInjector(TypeLiteral<T>) is not supported in Stage.TOOL");
    [all...]
Initializer.java 172 // if in Stage.TOOL, we only want to inject & notify toolable injection points.
179 injector.options.stage == Stage.TOOL);
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
EdslTest.java 106 Guice.createInjector(Stage.TOOL, webModule);
  /external/libxml2/VxWorks/
Makefile 14 include $(WIND_USR)/tool/gnu/make.$(VXCPU)
19 FLAGS += $(DEFINE_CC) $(CC_ARCH_SPEC) -MD -MP -D_VX_CPU=_VX_$(CPU) -D_VX_TOOL_FAMILY=gnu -D_VX_TOOL=$(TOOL)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltip.java 41 super(canvas.getDisplay(), SWT.ON_TOP | SWT.NO_FOCUS | SWT.TOOL);
GestureToolTip.java 95 mShell = new Shell(parent.getShell(), SWT.ON_TOP | SWT.TOOL | SWT.NO_FOCUS);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 145 m_tooltip = new Shell(m_table.getShell(), SWT.NO_FOCUS | SWT.ON_TOP | SWT.TOOL | SWT.SINGLE);
  /external/guice/core/test/com/google/inject/
InjectorTest.java 51 Injector injector = Guice.createInjector(Stage.TOOL);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
dumpICUrules.bat 183 my $TOOL = $0;
334 print $out "// Tool: $TOOL\n// Source: $in\n";
indic.pl 44 # $TOOL - name of generating tool
51 # Name of this tool in generated RBT files
619 # $TOOL - name of generating tool
634 if ($tag eq 'TOOL') {
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryModuleBuilderTest.java 436 injector = Guice.createInjector(Stage.TOOL, module);
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 3662 float tool = float(rawToolMajor) * GEOMETRIC_SCALE; local
5117 float tool = float(rawToolMajor) \/ 2 * 10.0f + 160.0f; local
5163 float tool = sqrtf(rawToolMajor) * 43.0f + 3.0f; local
    [all...]

Completed in 835 milliseconds

1 2