/external/chromium_org/chrome/common/extensions/docs/server2/test_data/rietveld_patcher/tarball/14096030/ |
22002.tar.bz2 | |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
file_system_test.py | 11 'templates': { 32 'templates/public/apps/404.html', 33 'templates/public/apps/a11y.html', 34 'templates/public/extensions/404.html', 35 'templates/public/extensions/cookies.html', 36 'templates/public/redirects.json', 37 'templates/json/manifest.json' 41 '/templates/', 42 'templates/public/', 43 'templates/public/apps/' [all...] |
extensions_paths.py | 22 TEMPLATES = join(DOCS, 'templates') 26 ARTICLES_TEMPLATES = join(TEMPLATES, 'articles') 27 INTROS_TEMPLATES = join(TEMPLATES, 'intros') 28 JSON_TEMPLATES = join(TEMPLATES, 'json') 29 PRIVATE_TEMPLATES = join(TEMPLATES, 'private') 30 PUBLIC_TEMPLATES = join(TEMPLATES, 'public')
|
/external/qemu/distrib/sdl-1.2.15/Xcode/ |
stationary.csh | 9 # project templates 10 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 12 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 14 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Custom Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 16 sudo /Developer/Tools/CpMac -r "Project Stationary/SDL OpenGL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" 19 # target templates 20 sudo mkdir -p "/Developer/ProjectBuilder Extras/Target Templates/SDL" 22 sudo /Developer/Tools/CpMac -r "Project Stationary/Application.trgttmpl" "/Developer/ProjectBuilder Extras/Target Templates/SDL"
|
uninstall.csh | 19 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Application" 20 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Cocoa Application" 21 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Custom Cocoa Application" 22 sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL OpenGL Application" 23 sudo rm -r "/Developer/ProjectBuilder Extras/Target Templates/SDL"
|
/external/chromium_org/tools/gn/ |
file_template_unittest.cc | 12 std::vector<std::string> templates; local 13 templates.push_back("something_static"); 14 FileTemplate t(templates); 28 std::vector<std::string> templates; local 29 templates.push_back("foo/{{source_name_part}}.cc"); 30 templates.push_back("foo/{{source_name_part}}.h"); 31 FileTemplate t(templates); 42 std::vector<std::string> templates; local 43 templates.push_back("{{{source}}{{source}}{{"); 44 FileTemplate t(templates); 54 std::vector<std::string> templates; local 72 std::vector<std::string> templates; local [all...] |
/external/eigen/doc/ |
I06_TopicEigenExpressionTemplates.dox | 3 /** \page TopicEigenExpressionTemplates Expression templates in Eigen
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/ |
InvalidPositionException.java | 2 * To change this template, choose Tools | Templates
|
/external/chromium_org/third_party/handlebar/ |
README.chromium | 1 Name: Handlebar, cross-platform data binding templates. 3 URL: https://github.com/kalman/templates
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
scripts.gypi | 15 'templates/macros.tmpl', 20 'templates/EventFactory.cpp.tmpl', 25 'templates/MakeNames.cpp.tmpl', 26 'templates/MakeNames.h.tmpl', 31 'templates/MakeQualifiedNames.cpp.tmpl', 32 'templates/MakeQualifiedNames.h.tmpl', 37 'templates/ElementFactory.cpp.tmpl', 38 'templates/ElementFactory.h.tmpl', 39 'templates/ElementWrapperFactory.cpp.tmpl', 40 'templates/ElementWrapperFactory.h.tmpl' [all...] |
/external/clang/test/CXX/temp/temp.decls/ |
p3.cpp | 4 template<typename T> using A<T*> = char; // expected-error {{partial specialization of alias templates is not permitted}} 5 template<> using A<char> = char; // expected-error {{explicit specialization of alias templates is not permitted}} 6 template using A<char> = char; // expected-error {{explicit instantiation of alias templates is not permitted}}
|
/external/clang/test/Index/ |
index-templates.cpp | 104 // CHECK-LOAD: index-templates.cpp:4:6: FunctionTemplate=f:4:6 Extent=[3:1 - 4:22] 105 // CHECK-LOAD: index-templates.cpp:3:19: TemplateTypeParameter=T:3:19 (Definition) Extent=[3:10 - 3:20] 106 // CHECK-LOAD: index-templates.cpp:3:24: NonTypeTemplateParameter=Value:3:24 (Definition) Extent=[3:22 - 3:29] 108 // CHECK-LOAD: index-templates.cpp:3:66: TemplateTemplateParameter=X:3:66 (Definition) Extent=[3:31 - 3:67] 109 // CHECK-LOAD: index-templates.cpp:4:20: ParmDecl=x:4:20 (Definition) Extent=[4:8 - 4:21] 110 // CHECK-LOAD: index-templates.cpp:4:8: TemplateRef=X:3:66 Extent=[4:8 - 4:9] 112 // CHECK-LOAD: index-templates.cpp:4:13: DeclRefExpr=Value:3:24 Extent=[4:13 - 4:18] 113 // CHECK-LOAD: index-templates.cpp:6:28: ClassTemplate=allocator:6:28 Extent=[6:1 - 6:37] 114 // CHECK-LOAD: index-templates.cpp:6:19: TemplateTypeParameter=T:6:19 (Definition) Extent=[6:10 - 6:20] 115 // CHECK-LOAD: index-templates.cpp:9:7: ClassTemplate=vector:9:7 (Definition) Extent=[8:1 - 11:2 [all...] |
/external/antlr/antlr-3.4/runtime/Python/ |
AUTHORS | 2 Clinton Roy <clinton.roy at gmail dot com>: AST templates and runtime.
|
/external/chromium_org/chrome/common/extensions/docs/ |
OWNERS | 7 # For server related things (Python, JavaScript, templates, etc).
|
/external/clang/test/CXX/temp/temp.decls/temp.mem/ |
p3.cpp | 4 template <class C> virtual void g(C); // expected-error{{'virtual' can not be specified on member function templates}}
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
SeekableStream.java | 2 * To change this template, choose Tools | Templates
|
/external/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_mlc.h | 4 #define _STLP_NO_MEMBER_TEMPLATES // Compiler does not support member templates
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/ |
build.properties | 7 templates/,\
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorExsltFunction.java | 23 import org.apache.xalan.templates.ElemApplyImport; 24 import org.apache.xalan.templates.ElemApplyTemplates; 25 import org.apache.xalan.templates.ElemAttribute; 26 import org.apache.xalan.templates.ElemCallTemplate; 27 import org.apache.xalan.templates.ElemComment; 28 import org.apache.xalan.templates.ElemCopy; 29 import org.apache.xalan.templates.ElemCopyOf; 30 import org.apache.xalan.templates.ElemElement; 31 import org.apache.xalan.templates.ElemExsltFuncResult; 32 import org.apache.xalan.templates.ElemExsltFunction [all...] |