HomeSort by relevance Sort by last modified time
    Searched refs:formatting (Results 26 - 50 of 61) sorted by null

12 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 27 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlFormatPreferences;
  /external/chromium_org/v8/src/extensions/i18n/
number-format.js 266 * according to the effective locale and the formatting options of this
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java 42 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlFormatPreferences;
43 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlPrettyPrinter;
VisualRefactoring.java 35 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlFormatPreferences;
36 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlPrettyPrinter;
    [all...]
  /external/chromium_org/chrome_frame/
CFInstall.js 88 * Injects style rules into the document to handle formatting of Chrome Frame
  /external/chromium_org/v8/src/
messages.js 259 // When formatting internally created error messages, do not
    [all...]
  /external/chromium_org/v8/test/mjsunit/
stack-traces.js 313 // Check that throwing exception in a custom stack trace formatting function
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 40 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlFormatPreferences;
41 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlPrettyPrinter;
704 // Finally write out the merged file (formatting etc)
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
media_controls.js 732 * @param {function(number):string} formatFunction Value formatting function.
786 * @param {function(number):string} formatFunction Value formatting function.
840 * @param {function(number):string} func Value formatting function.
    [all...]
  /external/v8/src/
messages.js 79 // When formatting internally created error messages, do not
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-encoding-vmx.s 33 # Vector permute and formatting instructions
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 34 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlFormatPreferences;
35 import com.android.ide.eclipse.adt.internal.editors.formatting.EclipseXmlPrettyPrinter;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 16 package com.android.ide.eclipse.adt.internal.editors.formatting;
89 * default XML formatting strategy in WTP.
160 AdtPlugin.log(e, "Formatting error");
166 * Creates a {@link TextEdit} for formatting the given model's XML in the text range
167 * starting at offset start with the given length. Note that the exact formatting
312 // content we're formatting, as in the following scenario for example:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 9 'binary': '\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe ``*`` (multiplication) operator yields the product of its\narguments. The arguments must either both be numbers, or one argument\nmust be an integer (plain or long) and the other must be a sequence.\nIn the former case, the numbers are converted to a common type and\nthen multiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe ``/`` (division) and ``//`` (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the ``ZeroDivisionError`` exception.\n\nThe ``%`` (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n``ZeroDivisionError`` exception. The arguments may be floating point\nnumbers, e.g., ``3.14%0.7`` equals ``0.34`` (since ``3.14`` equals\n``4*0.7 + 0.34``.) The modulo operator always yields a result with\nthe same sign as its second operand (or zero); the absolute value of\nthe result is strictly smaller than the absolute value of the second\noperand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: ``x == (x/y)*y + (x%y)``. Integer division and\nmodulo are also connected with the built-in function ``divmod()``:\n``divmod(x, y) == (x/y, x%y)``. These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere ``x/y`` is replaced by ``floor(x/y)`` or ``floor(x/y) - 1`` [3].\n\nIn addition to performing the modulo operation on numbers, the ``%``\noperator is also overloaded by string and unicode objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\n*String Formatting Operations*.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the ``divmod()`` function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe ``abs()`` function if appropriate.\n\nThe ``+`` (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe ``-`` (subtraction) operator yields the difference of its\narguments. The numeric arguments are first converted to a common\ntype.\n',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 9 'binary': '\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe ``*`` (multiplication) operator yields the product of its\narguments. The arguments must either both be numbers, or one argument\nmust be an integer (plain or long) and the other must be a sequence.\nIn the former case, the numbers are converted to a common type and\nthen multiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe ``/`` (division) and ``//`` (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the ``ZeroDivisionError`` exception.\n\nThe ``%`` (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n``ZeroDivisionError`` exception. The arguments may be floating point\nnumbers, e.g., ``3.14%0.7`` equals ``0.34`` (since ``3.14`` equals\n``4*0.7 + 0.34``.) The modulo operator always yields a result with\nthe same sign as its second operand (or zero); the absolute value of\nthe result is strictly smaller than the absolute value of the second\noperand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: ``x == (x/y)*y + (x%y)``. Integer division and\nmodulo are also connected with the built-in function ``divmod()``:\n``divmod(x, y) == (x/y, x%y)``. These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere ``x/y`` is replaced by ``floor(x/y)`` or ``floor(x/y) - 1`` [3].\n\nIn addition to performing the modulo operation on numbers, the ``%``\noperator is also overloaded by string and unicode objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\n*String Formatting Operations*.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the ``divmod()`` function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe ``abs()`` function if appropriate.\n\nThe ``+`` (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe ``-`` (subtraction) operator yields the difference of its\narguments. The numeric arguments are first converted to a common\ntype.\n',
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
log_view_painter.js 356 // Otherwise just default to JSON formatting of the value.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies.js 652 // TODO(yangguo): issue 2398 - throwing an error causes formatting of
654 // We ignore keys that occur when formatting the message string.
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
slide_mode.js 21 * @param {function(string):string} displayStringFunction String formatting
    [all...]
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 296 // Preserve whitespace formatting.
  /external/mksh/src/
Build.sh     [all...]

Completed in 843 milliseconds

12 3