Searched refs:tool_type (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/tools/gn/ |
D | function_toolchain.cc | 738 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()
|
D | ninja_toolchain_writer.cc | 72 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()
|
D | ninja_binary_target_writer.cc | 146 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/ |
D | motion_event_generic.cc | 13 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()
|
D | motion_event_generic.h | 20 MotionEvent::ToolType tool_type; member
|
D | motion_event_buffer.cc | 93 result.tool_type = event.GetToolType(pointer_index); in PointerFromMotionEvent()
|
/external/chromium_org/ui/events/test/ |
D | mock_motion_event.cc | 153 void MockMotionEvent::SetToolType(size_t pointer_index, ToolType tool_type) { in SetToolType() argument 155 pointer(pointer_index).tool_type = tool_type; in SetToolType()
|
D | mock_motion_event.h | 53 void SetToolType(size_t index, ToolType tool_type);
|