/external/clang/include/clang/Driver/ |
Makefile | 10 $(Verb) $(LLVMTableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $< 14 $(Verb) $(LLVMTableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
|
/external/clang/include/clang/Parse/ |
Makefile | 12 $(Verb) $(ClangTableGen) -gen-clang-attr-expr-args-list -o $(call SYSPATH, $@) \ 18 $(Verb) $(ClangTableGen) -gen-clang-attr-late-parsed-list -o $(call SYSPATH, $@) \
|
/external/clang/include/clang/Serialization/ |
Makefile | 12 $(Verb) $(ClangTableGen) -gen-clang-attr-pch-read -o $(call SYSPATH, $@) \ 18 $(Verb) $(ClangTableGen) -gen-clang-attr-pch-write -o $(call SYSPATH, $@) \
|
/external/chromium_org/third_party/skia/src/core/ |
SkQuadClipper.h | 34 The segments will be either lines or quads (based on SkPath::Verb), and 42 SkPath::Verb next(SkPoint pts[]); 46 SkPath::Verb* fCurrVerb; 53 SkPath::Verb fVerbs[kMaxVerbs];
|
SkEdgeClipper.h | 23 SkPath::Verb next(SkPoint pts[]); 27 SkPath::Verb* fCurrVerb; 34 SkPath::Verb fVerbs[kMaxVerbs];
|
SkPathRef.h | 25 * and verbs both grow into the middle of the allocation until the meet. To access verb i in the 26 * verb array use ref.verbs()[~i] (because verbs() returns a pointer just beyond the first 27 * logical verb or the last verb in memory). 70 * Adds the verb and allocates space for the number of points indicated by the verb. The 71 * return value is a pointer to where the points for the verb should be written. 73 SkPoint* growForVerb(SkPath::Verb verb) { 75 return fPathRef->growForVerb(verb); [all...] |
/external/clang/include/clang/Sema/ |
Makefile | 13 $(Verb) $(ClangTableGen) -gen-clang-attr-template-instantiate -o \ 19 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-list -o \ 25 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-kinds -o \ 31 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-index -o \
|
/external/skia/src/core/ |
SkQuadClipper.h | 34 The segments will be either lines or quads (based on SkPath::Verb), and 42 SkPath::Verb next(SkPoint pts[]); 46 SkPath::Verb* fCurrVerb; 53 SkPath::Verb fVerbs[kMaxVerbs];
|
SkEdgeClipper.h | 23 SkPath::Verb next(SkPoint pts[]); 27 SkPath::Verb* fCurrVerb; 34 SkPath::Verb fVerbs[kMaxVerbs];
|
SkPathRef.h | 25 * and verbs both grow into the middle of the allocation until the meet. To access verb i in the 26 * verb array use ref.verbs()[~i] (because verbs() returns a pointer just beyond the first 27 * logical verb or the last verb in memory). 70 * Adds the verb and allocates space for the number of points indicated by the verb. The 71 * return value is a pointer to where the points for the verb should be written. 73 SkPoint* growForVerb(SkPath::Verb verb) { 75 return fPathRef->growForVerb(verb); [all...] |
/external/clang/include/clang-c/ |
Makefile | 10 $(Verb) $(MKDIR) $(IntIncludeDir) 11 $(Verb) if test -d "$(PROJ_SRC_DIR)" ; then \ 26 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang-c" ; then \
|
/external/skia/tools/lua/ |
scrape.lua | 31 t.verb is a string holding the name of the draw-op (e.g. "drawRect") 51 local n = total[t.verb] or 0 52 total[t.verb] = n + 1 54 if false and t.verb == "drawRect" and t.paint:isAntiAlias() then 61 if false and t.verb == "drawPath" then
|
bbh_filter.lua | 32 output = {} -- Stores {fileName, {verb, count}} tables. 63 -- dump the params in t, specifically showing the verb first, which we 66 verbCounts[t.verb] = (verbCounts[t.verb] or 0) + 1 67 currentInfo.verbs[t.verb] = (currentInfo.verbs[t.verb] or 0) + 1 70 t.verb = nil 74 verbWeights = {} -- {verb, weight}, where 0 < weight <= 1 124 for verb,count in pairs(globalInfo[t.fileName].verbs) do 125 io.write(' ', verb, " = ", count, ",\n" [all...] |
/external/clang/lib/Headers/ |
Makefile | 28 $(Verb) cp $< $@ 32 $(Verb) cp $< $@ 36 $(Verb) cp $< $@ 49 $(Verb) $(MKDIR) $@ 52 $(Verb) $(DataInstall) $< $(PROJ_headers) 56 $(Verb) $(DataInstall) $< $(PROJ_headers) 64 $(Verb) $(ClangTableGen) -gen-arm-neon -o $(call SYSPATH, $@) $<
|
/external/iproute2/doc/ |
arpd.sgml | 19 <tscreen><verb> 21 </verb></tscreen> 97 <tscreen><verb> 99 </verb></tscreen> 103 <tscreen><verb> 106 </verb></tscreen> 110 <tscreen><verb> 112 </verb></tscreen> 119 <tscreen><verb> 121 </verb></tscreen [all...] |
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsTypes.h | 222 inline SkPath::Verb SkPathOpsPointsToVerb(int points) { 223 int verb = (1 << points) >> 1; local 226 case 0: SkASSERT(SkPath::kMove_Verb == verb); break; 227 case 1: SkASSERT(SkPath::kLine_Verb == verb); break; 228 case 2: SkASSERT(SkPath::kQuad_Verb == verb); break; 229 case 3: SkASSERT(SkPath::kCubic_Verb == verb); break; 233 return (SkPath::Verb)verb; 236 inline int SkPathOpsVerbToPoints(SkPath::Verb verb) { [all...] |
/external/skia/src/pathops/ |
SkPathOpsTypes.h | 222 inline SkPath::Verb SkPathOpsPointsToVerb(int points) { 223 int verb = (1 << points) >> 1; local 226 case 0: SkASSERT(SkPath::kMove_Verb == verb); break; 227 case 1: SkASSERT(SkPath::kLine_Verb == verb); break; 228 case 2: SkASSERT(SkPath::kQuad_Verb == verb); break; 229 case 3: SkASSERT(SkPath::kCubic_Verb == verb); break; 233 return (SkPath::Verb)verb; 236 inline int SkPathOpsVerbToPoints(SkPath::Verb verb) { [all...] |
/external/clang/include/clang/Basic/ |
Makefile | 36 $(Verb) $(ClangTableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $< 40 $(Verb) $(ClangTableGen) -gen-clang-diags-index-name -o $(call SYSPATH, $@) $< 44 $(Verb) $(ClangTableGen) -gen-clang-diag-groups -o $(call SYSPATH, $@) $< 48 $(Verb) $(ClangTableGen) -gen-clang-attr-list -o $(call SYSPATH, $@) \ 53 $(Verb) $(ClangTableGen) -gen-arm-neon-sema -o $(call SYSPATH, $@) $< 57 $(Verb)sed -e "s#@CLANG_VERSION@#$(CLANG_VERSION)#g" \
|
/external/clang/include/clang/ |
Makefile | 8 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir) 9 $(Verb) if test -d "$(PROJ_SRC_DIR)" ; then \ 27 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang" ; then \
|
/packages/apps/MusicFX/res/values-fr/ |
strings.xml | 26 <string name="pr_title" msgid="873875523196045130">"Réverbération :"</string> 27 <string name="pr_summary" msgid="7457279522425453515">"Autres effets de réverbération de la pièce"</string> 28 <string name="pr_dialog_title" msgid="8080282254796293452">"Préréglage de la réverbération"</string>
|
/packages/apps/MusicFX/res/values-fr-rCA/ |
strings.xml | 26 <string name="pr_title" msgid="873875523196045130">"Réverbération :"</string> 27 <string name="pr_summary" msgid="7457279522425453515">"Autres effets de réverbération de la pièce"</string> 28 <string name="pr_dialog_title" msgid="8080282254796293452">"Préréglage de la réverbération"</string>
|
/external/clang/docs/tools/ |
Makefile | 86 $(Verb) $(RM) -f pod2htm*.*~~ $(HTML) $(MAN) $(PS) 94 $(Verb) $(MKDIR) $(HTML_DIR) 95 $(Verb) $(DataInstall) $(HTML) $(HTML_DIR) 96 $(Verb) $(DataInstall) $(PROJ_SRC_DIR)/manpage.css $(HTML_DIR) 100 $(Verb) $(MKDIR) $(MAN_DIR) 101 $(Verb) $(DataInstall) $(MAN) $(MAN_DIR) 105 $(Verb) $(MKDIR) $(PS_DIR) 106 $(Verb) $(DataInstall) $(PS) $(PS_DIR) 112 $(Verb) $(RM) -rf $(HTML_DIR) $(MAN_DIR) $(PS_DIR)
|
/external/clang/include/clang/Lex/ |
Makefile | 12 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-list -o $(call SYSPATH, $@) \
|
/external/llvm/ |
Makefile | 107 $(Verb) rm -rf BuildTools 110 $(Verb) if [ ! -f BuildTools/Makefile ]; then \ 150 $(Verb) $(MAKE) 154 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 158 $(Verb) $(MAKE) ENABLE_PROFILING=1 162 $(Verb) $(RM) -f \ 175 $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags 204 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* 218 $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \ 227 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP= [all...] |
/external/llvm/bindings/ocaml/llvm/ |
Makefile | 31 $(Verb) $(CP) -f $< $@ 35 $(Verb) $(MKDIR) $(PROJ_libocamldir) 36 $(Verb) $(DataInstall) $< "$(DestMETA)" 40 -$(Verb) $(RM) -f "$(DestMETA)"
|