HomeSort by relevance Sort by last modified time
    Searched refs:template (Results 126 - 150 of 605) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/lldb/test/
dosep.ty 10 # Command template of the invocation of the test driver.
11 template = '%s/dotest.py %s -p %s %s' variable
29 command = template % (test_root, dotest_options if dotest_options else "", name, root)
  /frameworks/base/core/java/android/net/
INetworkStatsService.aidl 38 /** Return network layer usage total for traffic that matches template. */
39 long getNetworkTotalBytes(in NetworkTemplate template, long start, long end);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractHtmlTemplates.java 87 throw new Resources.NotFoundException("Unable to open template id="
92 protected void append(String template, Object... args) {
93 mFormatter.format(template, args);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectWizardState.java 37 template = TemplateHandler.createFromName(CATEGORY_PROJECTS,
41 /** The template handler instantiating the project */
42 public final TemplateHandler template; field in class:NewProjectWizardState
102 /** State for the template wizard, used to embed an activity template */
NewTemplateWizard.java 45 * Template wizard which creates parameterized templates
48 /** Template name and location under $sdk/templates for the default activity */
50 /** Template name and location under $sdk/templates for the custom view template */
67 File template = TemplateManager.getTemplateLocation(mTemplateName); local
68 if (template != null) {
69 mValues.setTemplateLocation(template);
87 * Hide those parameters that the template requires but that we don't want
89 * the template is written into.
108 TemplateMetadata template = mValues.getTemplateHandler().getTemplate() local
    [all...]
NewProjectWizard.java 169 // Hide those parameters that the template requires but that we don't want to
193 TemplateMetadata template = mValues.activityValues.getTemplateHandler().getTemplate(); local
194 if (template != null
195 && !InstallDependencyPage.isInstalled(template.getDependencies())) {
196 return getDependencyPage(template, true);
220 // to special case the template and icon pages since we want to skip them if
246 return mValues.template.getFilesToOpen();
261 final TemplateHandler template = mValues.template; local
262 // We'll be merging in an activity template, but don't create *~ backup file
296 final TemplateHandler template = mValues.template; local
    [all...]
NewActivityWizard.java 47 * Wizard and a New Template Wizard: it has the "Activity selector" page from
49 * second page, but beyond that it runs the normal template wizard when it comes
50 * time to create the template.
112 TemplateMetadata template = mActivityValues.getTemplateHandler().getTemplate(); local
113 if (template != null) {
114 if (InstallDependencyPage.isInstalled(template.getDependencies())) {
117 return getDependencyPage(template, true);
121 TemplateMetadata template = mActivityValues.getTemplateHandler().getTemplate(); local
122 if (template != null && page == getDependencyPage(template, false))
    [all...]
NewTemplateWizardState.java 57 /** Template handler responsible for instantiating templates and reading resources */
76 /** The minimum API level to use for this template */
79 /** Location of the template being created */
111 /** Sets the current template */
119 /** Returns the current template */
192 TemplateMetadata template = handler.getTemplate(); local
193 if (template != null) {
194 mIconState = template.getIconState(project);
207 TemplateMetadata template = getTemplateHandler().getTemplate(); local
208 if (template != null)
    [all...]
ActivityPage.java 86 setDescription("Select which template to use");
118 TemplateManager manager = mValues.template.getManager();
129 File template = templates.get(i); local
130 TemplateMetadata metadata = manager.getTemplate(template);
140 mTemplates.add(template);
142 if (template.equals(current)) {
188 TemplateMetadata template = handler.getTemplate(); local
189 if (template != null) {
190 String thumb = template.getThumbnailPath();
210 title = template.getTitle()
314 File template = mTemplates.get(index); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Preconditions.java 90 * @param errorMessageTemplate a template for the exception message should the
92 * placeholder in the template with an argument. These are matched by
97 * template. Arguments are converted to strings using
145 * @param errorMessageTemplate a template for the exception message should the
147 * placeholder in the template with an argument. These are matched by
152 * template. Arguments are converted to strings using
204 * @param errorMessageTemplate a template for the exception message should the
206 * placeholder in the template with an argument. These are matched by
211 * template. Arguments are converted to strings using
388 * Substitutes each {@code %s} in {@code template} with an argument. Thes
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CompactDecimalDataCache.java 292 String template = pluralVariantData.getString(); local
297 pluralVariant, thisIndex, template, locale, style, result);
301 "Plural variant '" + pluralVariant + "' template '" +
302 template + "' for 10^" + thisIndex +
334 * @param template e.g "00K"
338 * @return number of zeros found before any decimal point in template.
341 String pluralVariant, int idx, String template, ULocale locale, String style,
343 int firstIdx = template.indexOf("0");
344 int lastIdx = template.lastIndexOf("0");
347 "Expect at least one zero in template '" + template
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilver.java 46 import com.google.clearsilver.jsilver.template.DelegatingTemplateLoader;
47 import com.google.clearsilver.jsilver.template.HtmlWhiteSpaceStripper;
48 import com.google.clearsilver.jsilver.template.Template;
49 import com.google.clearsilver.jsilver.template.TemplateLoader;
73 * // Render template to System.out. Writer output = ...;
136 // Loads the template from the resource loader, manipulating the AST as
164 // Do we want to load precompiled Template class objects?
166 // Load precompiled template classes.
239 * Renders a given template and provided data, writing to an arbitrary output
    [all...]
  /packages/apps/Settings/src/com/android/settings/net/
DataUsageMeteredSettings.java 109 final NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll( local
111 final MeteredPreference pref = new MeteredPreference(context, template);
118 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(networkId); local
119 final MeteredPreference pref = new MeteredPreference(context, template);
128 public MeteredPreference(Context context, NetworkTemplate template) {
130 mTemplate = template;
135 final NetworkPolicy policy = mPolicyEditor.getPolicyMaybeUnquoted(template);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
MobileDataControllerImpl.java 116 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriberId); local
117 template = NetworkTemplate.normalize(template, mTelephonyManager.getMergedSubscriberIds());
119 final NetworkPolicy policy = findNetworkPolicy(template);
121 final NetworkStatsHistory history = mSession.getHistoryForNetwork(template, FIELDS);
173 private NetworkPolicy findNetworkPolicy(NetworkTemplate template) {
174 if (mPolicyManager == null || template == null) return null;
180 if (policy != null && template.equals(policy.template)) {
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
httpexceptions.py 84 TEMPLATE = """\
110 2. The template may want to have string-substitutions taken from
131 it is accessible in the template via %(explanation)s
136 the template via %(detail)s
138 ``template``
140 header substitution; the default template includes both
160 To override the template (which is HTML content) or the plain-text
163 into explanation, detail and template allows both the creation of
173 template = "%(explanation)s\r\n<br/>%(detail)s\r\n<!-- %(comment)s -->" variable in class:HTTPException
198 def make_body(self, environ, template, escfunc, comment_escfunc=None)
317 template = ( variable in class:_HTTPMove
459 template = ('The method %(REQUEST_METHOD)s is not allowed for ' variable in class:HTTPMethodNotAllowed
466 template = ('The resource could not be generated that was ' variable in class:HTTPNotAcceptable
517 template = ('The request media type %(CONTENT_TYPE)s is not ' variable in class:HTTPUnsupportedMediaType
569 template = ('The request method %(REQUEST_METHOD)s is not implemented ' variable in class:HTTPNotImplemented
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
InterpretedMacro.java 24 import com.google.clearsilver.jsilver.template.Macro;
25 import com.google.clearsilver.jsilver.template.RenderingContext;
26 import com.google.clearsilver.jsilver.template.Template;
39 private final Template owningTemplate;
45 public InterpretedMacro(PCommand command, Template owningTemplate, String macroName,
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardLayout.java 54 * The container of the actual content. This will be a view in the template, which child views
56 * in the template that has the ID of {@link #getContainerId()}. For the default implementation
66 public SetupWizardLayout(Context context, int template) {
68 init(template, null, R.attr.suwLayoutTheme);
83 public SetupWizardLayout(Context context, int template, AttributeSet attrs, int defStyleAttr) {
85 init(template, attrs, defStyleAttr);
90 private void init(int template, AttributeSet attrs, int defStyleAttr) {
93 if (template == 0) {
94 template = a.getResourceId(R.styleable.SuwSetupWizardLayout_android_layout, 0);
96 inflateTemplate(template);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 47 ('template=', 't',
48 "name of manifest template file [default: MANIFEST.in]"),
103 # 'template' and 'manifest' are, respectively, the names of
104 # the manifest template and manifest file.
105 self.template = None
128 if self.template is None:
129 self.template = "MANIFEST.in"
158 # (process the manifest template, read an existing manifest,
181 reading the manifest template (and writing the manifest), or just
185 # new behavior when using a template
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 47 ('template=', 't',
48 "name of manifest template file [default: MANIFEST.in]"),
103 # 'template' and 'manifest' are, respectively, the names of
104 # the manifest template and manifest file.
105 self.template = None
128 if self.template is None:
129 self.template = "MANIFEST.in"
158 # (process the manifest template, read an existing manifest,
181 reading the manifest template (and writing the manifest), or just
185 # new behavior when using a template
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkPolicyManagerService.java 682 final NetworkTemplate template = intent.getParcelableExtra(EXTRA_NETWORK_TEMPLATE);
683 performSnooze(template, TYPE_WARNING);
701 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(config.SSID);
703 if (mNetworkPolicy.containsKey(template)) {
704 mNetworkPolicy.remove(template);
730 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(info.getSSID());
732 NetworkPolicy policy = mNetworkPolicy.get(template);
736 policy = new NetworkPolicy(template, CYCLE_NONE, Time.TIMEZONE_UTC,
1294 final NetworkTemplate template = mNetworkPolicy.keyAt(i); local
1317 final NetworkTemplate template = buildTemplateMobileAll(subscriberId); local
1403 final NetworkTemplate template = new NetworkTemplate(networkTemplate, local
1479 final NetworkTemplate template = policy.template; local
2590 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriber); local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octcontainer.swg 37 template <> struct traits<octave_value > {
42 template <> struct traits_from<octave_value> {
49 template <>
56 template <> struct traits_asval<octave_value > {
71 template <>
111 template <class Sequence, class Difference>
119 template <class Sequence, class Difference>
127 template <class Sequence, class Difference>
145 template <class Sequence, class Difference, class InputSeq>
169 template <class Sequence, class Difference
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
Makefile 37 include ../../Makefile.template
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
Makefile 27 include ../../../Makefile.template
  /external/mesa3d/src/gallium/state_trackers/xorg/
Makefile 23 include ../../Makefile.template
  /external/srtp/doc/
Makefile 27 sed 's/LIBSRTPVERSION/$(version)/' header.template > header.tex

Completed in 1393 milliseconds

1 2 3 4 56 7 8 91011>>