HomeSort by relevance Sort by last modified time
    Searched refs:template (Results 1 - 25 of 1282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
Mixin.java 17 package com.android.setupwizardlib.template;
  /external/mesa3d/src/compiler/nir/
nir_builder_opcodes_h.py 3 template = """\
48 from mako.template import Template
50 print Template(template).render(opcodes=opcodes)
nir_opcodes_h.py 3 template = """\
45 from mako.template import Template
47 print Template(template).render(opcodes=opcodes)
nir_opcodes_c.py 28 from mako.template import Template
30 template = Template("""
55 print template.render(opcodes=opcodes)
  /external/deqp/external/vulkancts/framework/vulkan/
vkGetStructureTypeImpl.inl 4 template<> VkStructureType getStructureType<VkApplicationInfo> (void)
9 template<> VkStructureType getStructureType<VkInstanceCreateInfo> (void)
14 template<> VkStructureType getStructureType<VkDeviceQueueCreateInfo> (void)
19 template<> VkStructureType getStructureType<VkDeviceCreateInfo> (void)
24 template<> VkStructureType getStructureType<VkSubmitInfo> (void)
29 template<> VkStructureType getStructureType<VkMemoryAllocateInfo> (void)
34 template<> VkStructureType getStructureType<VkMappedMemoryRange> (void)
39 template<> VkStructureType getStructureType<VkBindSparseInfo> (void)
44 template<> VkStructureType getStructureType<VkFenceCreateInfo> (void)
49 template<> VkStructureType getStructureType<VkSemaphoreCreateInfo> (void
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DelegatingTemplateLoader.java 17 package com.google.clearsilver.jsilver.template;
Macro.java 17 package com.google.clearsilver.jsilver.template;
22 * An executable macro. This exhibits all the same characteristics of a Template.
24 public interface Macro extends Template {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmSlashedPackageNameMethod.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateMethodModel;
20 import freemarker.template.TemplateModel;
21 import freemarker.template.TemplateModelException;
FmCamelCaseToUnderscoreMethod.java 20 import freemarker.template.SimpleScalar;
21 import freemarker.template.TemplateMethodModel;
22 import freemarker.template.TemplateModel;
23 import freemarker.template.TemplateModelException;
FmEscapeXmlAttributeMethod.java 20 import freemarker.template.SimpleScalar;
21 import freemarker.template.TemplateMethodModel;
22 import freemarker.template.TemplateModel;
23 import freemarker.template.TemplateModelException;
FmEscapeXmlStringMethod.java 20 import freemarker.template.SimpleScalar;
21 import freemarker.template.TemplateMethodModel;
22 import freemarker.template.TemplateModel;
23 import freemarker.template.TemplateModelException;
FmEscapeXmlTextMethod.java 20 import freemarker.template.SimpleScalar;
21 import freemarker.template.TemplateMethodModel;
22 import freemarker.template.TemplateModel;
23 import freemarker.template.TemplateModelException;
FmUnderscoreToCamelCaseMethod.java 20 import freemarker.template.SimpleScalar;
21 import freemarker.template.TemplateMethodModel;
22 import freemarker.template.TemplateModel;
23 import freemarker.template.TemplateModelException;
FmExtractLettersMethod.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateMethodModel;
20 import freemarker.template.TemplateModel;
21 import freemarker.template.TemplateModelException;
  /frameworks/base/core/java/android/net/
INetworkStatsSession.aidl 26 /** Return device aggregated network layer usage summary for traffic that matches template. */
27 NetworkStats getDeviceSummaryForNetwork(in NetworkTemplate template, long start, long end);
29 /** Return network layer usage summary for traffic that matches template. */
30 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
31 /** Return historical network layer stats for traffic that matches template. */
32 NetworkStatsHistory getHistoryForNetwork(in NetworkTemplate template, int fields);
34 /** Return network layer usage summary per UID for traffic that matches template. */
35 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
36 /** Return historical network layer stats for specific UID traffic that matches template. */
37 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields)
    [all...]
DataUsageRequest.java 47 public final NetworkTemplate template; field in class:DataUsageRequest
54 public DataUsageRequest(int requestId, NetworkTemplate template, long thresholdInBytes) {
56 this.template = template;
68 dest.writeParcelable(template, flags);
77 NetworkTemplate template = in.readParcelable(null);
79 DataUsageRequest result = new DataUsageRequest(requestId, template,
93 + ", networkTemplate=" + template
102 && Objects.equals(that.template, this.template)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
NetworkPolicyEditor.java 99 public boolean hasLimitedPolicy(NetworkTemplate template) {
100 final NetworkPolicy policy = getPolicy(template);
104 public NetworkPolicy getOrCreatePolicy(NetworkTemplate template) {
105 NetworkPolicy policy = getPolicy(template);
107 policy = buildDefaultPolicy(template);
113 public NetworkPolicy getPolicy(NetworkTemplate template) {
115 if (policy.template.equals(template)) {
122 public NetworkPolicy getPolicyMaybeUnquoted(NetworkTemplate template) {
123 NetworkPolicy policy = getPolicy(template);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
Platform.java 30 * Format the template with args, only supports the placeholder
33 static String format(String template, Object... args) {
34 return String.format(template, args);
  /external/testng/src/main/java/org/testng/mustache/
Mustache.java 11 public String run(String template, Map<String, Object> m) throws IOException {
12 return run(template, new Model(m));
15 String run(String template, Model model) throws IOException {
20 while (ti < template.length()) {
23 if (template.charAt(ti) == '\n') lineNumber++;
25 if (template.charAt(ti) == '{' && ti + 1 < template.length()
26 && template.charAt(ti + 1) == '{') {
30 while (index < template.length() && ! foundEnd) {
32 foundEnd = template.charAt(index) == '}' && index + 1 < template.length(
    [all...]
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/
GlifPreferenceLayout.java 27 import com.android.setupwizardlib.template.RecyclerMixin;
72 public GlifPreferenceLayout(Context context, int template, int containerId) {
73 super(context, template, containerId);
101 protected View onInflateTemplate(LayoutInflater inflater, int template) {
102 if (template == 0) {
103 template = R.layout.suw_glif_preference_template;
105 return super.onInflateTemplate(inflater, template);
SetupWizardPreferenceLayout.java 27 import com.android.setupwizardlib.template.RecyclerMixin;
70 public SetupWizardPreferenceLayout(Context context, int template, int containerId) {
71 super(context, template, containerId);
99 protected View onInflateTemplate(LayoutInflater inflater, int template) {
100 if (template == 0) {
101 template = R.layout.suw_preference_template;
103 return super.onInflateTemplate(inflater, template);
  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
awk_process_syn 37 template = " %s interval: %.6f (%s)\n";
38 printf(template, mark, interval, $0);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
GlifListLayout.java 30 import com.android.setupwizardlib.template.ListMixin;
31 import com.android.setupwizardlib.template.ListViewScrollHandlingDelegate;
32 import com.android.setupwizardlib.template.RequireScrollMixin;
52 public GlifListLayout(Context context, int template) {
53 this(context, template, 0);
56 public GlifListLayout(Context context, int template, int containerId) {
57 super(context, template, containerId);
88 protected View onInflateTemplate(LayoutInflater inflater, int template) {
89 if (template == 0) {
90 template = R.layout.suw_glif_list_template
    [all...]
SetupWizardListLayout.java 30 import com.android.setupwizardlib.template.ListMixin;
31 import com.android.setupwizardlib.template.ListViewScrollHandlingDelegate;
32 import com.android.setupwizardlib.template.RequireScrollMixin;
44 public SetupWizardListLayout(Context context, int template) {
45 this(context, template, 0);
48 public SetupWizardListLayout(Context context, int template, int containerId) {
49 super(context, template, containerId);
74 protected View onInflateTemplate(LayoutInflater inflater, int template) {
75 if (template == 0) {
76 template = R.layout.suw_list_template
    [all...]
  /platform_testing/tests/perf/PerformanceLaunch/
gen_locales.py 11 template = """<?xml version="1.0" encoding="utf-8"?>
33 f.write(template.format(locale))

Completed in 357 milliseconds

1 2 3 4 5 6 7 8 91011>>