Home
last modified time | relevance | path

Searched refs:tool_type (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/tools/gn/
Dfunction_toolchain.cc738 Toolchain::ToolType tool_type = Toolchain::ToolNameToType(tool_name); in RunTool() local
739 if (tool_type == Toolchain::TYPE_NONE) { in RunTool()
755 if (IsCompilerTool(tool_type)) { in RunTool()
758 } else if (IsLinkerTool(tool_type)) { in RunTool()
761 } else if (tool_type == Toolchain::TYPE_COPY) { in RunTool()
797 if (tool_type != Toolchain::TYPE_COPY && tool_type != Toolchain::TYPE_STAMP) { in RunTool()
808 if (tool_type != Toolchain::TYPE_SOLINK) { in RunTool()
820 if (tool_type != Toolchain::TYPE_SOLINK) { in RunTool()
842 toolchain->SetTool(tool_type, tool.Pass()); in RunTool()
Dninja_toolchain_writer.cc72 Toolchain::ToolType tool_type = static_cast<Toolchain::ToolType>(i); in WriteRules() local
73 const Tool* tool = toolchain_->GetTool(tool_type); in WriteRules()
75 WriteToolRule(tool_type, tool, rule_prefix); in WriteRules()
Dninja_binary_target_writer.cc146 Toolchain::ToolType tool_type = Toolchain::TYPE_NONE; in WriteSources() local
148 &tool_type, &tool_outputs)) in WriteSources()
151 if (tool_type != Toolchain::TYPE_NONE) { in WriteSources()
154 out_ << ": " << rule_prefix << Toolchain::ToolTypeToName(tool_type); in WriteSources()
427 Toolchain::ToolType tool_type = Toolchain::TYPE_NONE; in ClassifyDependency() local
428 if (GetOutputFilesForSource(dep, dep->sources()[i], &tool_type, in ClassifyDependency()
/external/chromium_org/ui/events/gesture_detection/
Dmotion_event_generic.cc13 tool_type(MotionEvent::TOOL_TYPE_UNKNOWN), in PointerProperties()
26 tool_type(MotionEvent::TOOL_TYPE_UNKNOWN), in PointerProperties()
134 return pointers_[pointer_index].tool_type; in GetToolType()
Dmotion_event_generic.h20 MotionEvent::ToolType tool_type; member
Dmotion_event_buffer.cc93 result.tool_type = event.GetToolType(pointer_index); in PointerFromMotionEvent()
/external/chromium_org/ui/events/test/
Dmock_motion_event.cc153 void MockMotionEvent::SetToolType(size_t pointer_index, ToolType tool_type) { in SetToolType() argument
155 pointer(pointer_index).tool_type = tool_type; in SetToolType()
Dmock_motion_event.h53 void SetToolType(size_t index, ToolType tool_type);