Searched defs:rule (Results 1 - 8 of 8) sorted by relevance

/build/kati/testcase/
H A Dnot_command_with_tab.mk11 rule:=bar: macro
12 $(rule)
/build/core/
H A Dsdk_font.mk47 # Define a macro to create rule for addititional fonts that we want to include
51 define sdk-extra-font-rule
63 $(eval $(call sdk-extra-font-rule,NanumGothic.ttf,external/naver-fonts/NanumGothic.ttf))
64 $(eval $(call sdk-extra-font-rule,DroidSansFallback.ttf,frameworks/base/data/fonts/DroidSansFallbackFull.ttf))
66 sdk-extra-font-rule :=
H A Ddefinitions.mk129 define gcno-touch-rule
695 # Get the dependency files (you can put on the right side of "|" of a build rule)
846 ## Use echo-(warning|error) in a build rule
1095 ## Given a .aidl file path, generate the rule to compile it a .java file
1101 define define-aidl-java-rule
1102 define-aidl-java-rule-src := $(patsubst %.aidl,%.java,$(subst ../,dotdot/,$(addprefix $(2)/,$(1))))
1103 $$(define-aidl-java-rule-src) : $(LOCAL_PATH)/$(1) $(AIDL)
1105 $(3) += $$(define-aidl-java-rule-src)
1108 ## Given a .aidl file path generate the rule to compile it a .cpp file.
1114 define define-aidl-cpp-rule
[all...]
/build/make/core/
H A Dsdk_font.mk47 # Define a macro to create rule for addititional fonts that we want to include
51 define sdk-extra-font-rule
63 $(eval $(call sdk-extra-font-rule,NanumGothic.ttf,external/naver-fonts/NanumGothic.ttf))
64 $(eval $(call sdk-extra-font-rule,DroidSansFallback.ttf,frameworks/base/data/fonts/DroidSansFallbackFull.ttf))
66 sdk-extra-font-rule :=
H A Ddefinitions.mk129 define gcno-touch-rule
695 # Get the dependency files (you can put on the right side of "|" of a build rule)
846 ## Use echo-(warning|error) in a build rule
1095 ## Given a .aidl file path, generate the rule to compile it a .java file
1101 define define-aidl-java-rule
1102 define-aidl-java-rule-src := $(patsubst %.aidl,%.java,$(subst ../,dotdot/,$(addprefix $(2)/,$(1))))
1103 $$(define-aidl-java-rule-src) : $(LOCAL_PATH)/$(1) $(AIDL)
1105 $(3) += $$(define-aidl-java-rule-src)
1108 ## Given a .aidl file path generate the rule to compile it a .cpp file.
1114 define define-aidl-cpp-rule
[all...]
/build/kati/
H A Drule.cc17 #include "rule.h"
92 // "test: =foo" is questionable but a valid rule definition (not a
114 Rule* rule = new Rule(); local
115 *out_rule = rule;
116 rule->loc = loc;
117 rule->is_double_colon = is_double_colon;
119 rule->output_patterns.swap(outputs);
121 rule->outputs.swap(outputs);
126 rule->cmds.push_back(
133 ParseInputs(rule, res
[all...]
H A Deval.cc27 #include "rule.h"
142 Error("*** missing rule before commands.");
146 Rule* rule; local
151 ParseRule(loc_, expr, stmt->term, after_term_fn, &rule, &rule_var);
153 if (rule) {
155 rule->cmds.push_back(stmt->after_term);
158 for (Symbol o : rule->outputs) {
163 LOG("Rule: %s", rule->DebugString().c_str());
164 rules_.push_back(rule);
165 last_rule_ = rule;
[all...]
H A Ddep.cc30 #include "rule.h"
77 : rule(r), suffix(s) {
79 const Rule* rule; member in struct:__anon2::RuleTrie::Entry
90 void Add(StringPiece name, const Rule* rule) { argument
92 rules_.push_back(Entry(rule, name));
100 p.first->second->Add(name.substr(1), rule);
107 rules->push_back(ent.rule);
137 // suffix rule.
373 for (const Rule* rule : rules) {
374 if (rule
385 PopulateSuffixRule(const Rule* rule, Symbol output) argument
402 PopulateExplicitRule(const Rule* rule) argument
412 IsIgnorableImplicitRule(const Rule* rule) argument
426 PopulateImplicitRule(const Rule* rule) argument
448 CanPickImplicitRule(const Rule* rule, Symbol output, DepNode* n, shared_ptr<Rule>* out_rule) argument
[all...]

Completed in 975 milliseconds