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

12 3 4 5

  /external/tensorflow/tensorflow/compiler/xla/python/
xla_client.py     [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
GeneratedPluralSamples.java 351 private final DataSample integers = new DataSample(PluralRules.SampleType.INTEGER);
365 integers.add(ni);
372 String integersString = integers.toString();
381 return integers.equals(other.integers) && decimals.equals(other.decimals);
385 integers.freeze(keyword, rules);
400 // boolean decBounded = integer; // when gathering for integers, dec is bounded.
412 // // if f and t cannot be zero, then this rule is empty for integers (and thus bounded)
  /external/protobuf/js/binary/
decoder_test.js 177 * Tests reading 64-bit integers as hash strings.
255 * Tests encoding and decoding of unsigned integers.
281 * Tests encoding and decoding of signed integers.
decoder.js 33 * (signed and unsigned integers, varints, booleans, enums, hashes, strings,
37 * Major caveat - Javascript is unable to accurately represent integers larger
627 // 32-bit integers fit in JavaScript numbers without loss of precision, so
641 // 32-bit integers fit in JavaScript numbers without loss of precision, so
653 * storage overhead for small negative integers - for more details on the
723 * storage overhead for small negative integers - for more details on the
  /external/autotest/frontend/client/src/autotest/common/
Utils.java 47 * Converts a collection of Java <code>Integers</code>s into a <code>JSONArray
50 public static JSONArray integersToJSON(Collection<Integer> integers) {
52 for(Integer i : integers) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
SetGenerators.java 322 return ContiguousSet.create(Range.openClosed(0, 1), DiscreteDomain.integers()).subSet(0, 1);
345 return ContiguousSet.create(range, DiscreteDomain.integers());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SetGenerators.java 349 return ContiguousSet.create(Range.openClosed(0, 1), DiscreteDomain.integers()).subSet(0, 1);
385 return ContiguousSet.create(range, DiscreteDomain.integers());
  /external/mesa3d/docs/specs/
EXT_shader_integer_mix.spec 113 1) Should we allow linear interpolation of integers via a non-boolean
MESA_query_renderer.spec 118 integers specified by <value>. The values, data sizes, and descriptions
186 integers specified by <value>. The values, data sizes, and descriptions
  /external/python/cpython2/Lib/test/
test_tcl.py 128 integers = (0, 1, -1, 2**31-1, -2**31)
130 integers += (2**31, -2**31-1, 2**63-1, -2**63)
134 integers += (2**63, -2**63-1, 2**1000, -2**1000)
135 return integers
  /external/python/cpython3/Modules/_decimal/tests/
formathelper.py 95 integers = [ variable
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 1144 class integers(aetools.ComponentItem): class in inherits:aetools.ComponentItem
    [all...]
  /external/tensorflow/tensorflow/contrib/feature_column/python/feature_column/
sequence_feature_column.py 188 """Returns a feature column that represents sequences of integers.
  /external/python/cpython3/Lib/test/
test_tcl.py 132 integers = (0, 1, -1, 2**31-1, -2**31, 2**31, -2**31-1, 2**63-1, -2**63)
136 integers += (2**63, -2**63-1, 2**1000, -2**1000)
137 return integers
  /external/libevent/test/
regress.c 2360 ev_uint32_t integers[TEST_MAX_INT] = { local
2438 ev_uint32_t integers[TEST_MAX_INT] = { local
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
check_ops_test.py     [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ResourcesTest.java 597 int[]array2 = mResources.getIntArray(R.array.integers);
698 checkStringArray(R.array.integers, new String[] {
701 checkTextArray(R.array.integers, new String[] {
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
OrderingTest.java 272 Ordering<Integer> integers = Ordering.explicit(1);
282 Ordering<Integer> d = numbers.compound(integers);
283 Ordering<Integer> e = integers.compound(numbers);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
OrderingTest.java 274 Ordering<Integer> integers = Ordering.explicit(1);
284 Ordering<Integer> d = numbers.compound(integers);
285 Ordering<Integer> e = integers.compound(numbers);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
SimpleXMLRPCServer.py 305 above example, the add method takes two integers as arguments
315 """system.methodHelp('add') => "Adds two integers together"
  /external/python/cpython2/Lib/
SimpleXMLRPCServer.py 305 above example, the add method takes two integers as arguments
315 """system.methodHelp('add') => "Adds two integers together"
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
doc.go 23 - signed integers (int, int8, int16, int32 and int64),
251 to return. Start and End take cursors, Offset and Limit take integers. Start
  /external/tensorflow/tensorflow/lite/python/
convert.py 275 default_ranges_stats: Tuple of integers representing (min, max) range values
385 and list of integers representing input shapes
  /external/bcc/src/lua/bcc/vendor/
json.lua 18 consecutive sequence of positive integers starting at 1. Arrays are encoded like
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py 3 'assignment': u'\nAssignment statements\n*********************\n\nAssignment statements are used to (re)bind names to values and to\nmodify attributes or items of mutable objects:\n\n assignment_stmt ::= (target_list "=")+ (expression_list | yield_expression)\n target_list ::= target ("," target)* [","]\n target ::= identifier\n | "(" target_list ")"\n | "[" target_list "]"\n | attributeref\n | subscription\n | slicing\n\n(See section *Primaries* for the syntax definitions for the last three\nsymbols.)\n\nAn assignment statement evaluates the expression list (remember that\nthis can be a single expression or a comma-separated list, the latter\nyielding a tuple) and assigns the single resulting object to each of\nthe target lists, from left to right.\n\nAssignment is defined recursively depending on the form of the target\n(list). When a target is part of a mutable object (an attribute\nreference, subscription or slicing), the mutable object must\nultimately perform the assignment and decide about its validity, and\nmay raise an exception if the assignment is unacceptable. The rules\nobserved by various types and the exceptions raised are given with the\ndefinition of the object types (see section *The standard type\nhierarchy*).\n\nAssignment of an object to a target list is recursively defined as\nfollows.\n\n* If the target list is a single target: The object is assigned to\n that target.\n\n* If the target list is a comma-separated list of targets: The object\n must be an iterable with the same number of items as there are\n targets in the target list, and the items are assigned, from left to\n right, to the corresponding targets.\n\nAssignment of an object to a single target is recursively defined as\nfollows.\n\n* If the target is an identifier (name):\n\n * If the name does not occur in a ``global`` statement in the\n current code block: the name is bound to the object in the current\n local namespace.\n\n * Otherwise: the name is bound to the object in the current global\n namespace.\n\n The name is rebound if it was already bound. This may cause the\n reference count for the object previously bound to the name to reach\n zero, causing the object to be deallocated and its destructor (if it\n has one) to be called.\n\n* If the target is a target list enclosed in parentheses or in square\n brackets: The object must be an iterable with the same number of\n items as there are targets in the target list, and its items are\n assigned, from left to right, to the corresponding targets.\n\n* If the target is an attribute reference: The primary expression in\n the reference is evaluated. It should yield an object with\n assignable attributes; if this is not the case, ``TypeError`` is\n raised. That object is then asked to assign the assigned object to\n the given attribute; if it cannot perform the assignment, it raises\n an exception (usually but not necessarily ``AttributeError``).\n\n Note: If the object is a class instance and the attribute reference\n occurs on both sides of the assignment operator, the RHS expression,\n ``a.x`` can access either an instance attribute or (if no instance\n attribute exists) a class attribute. The LHS target ``a.x`` is\n always set as an instance attribute, creating it if necessary.\n Thus, the two occurrences of ``a.x`` do not necessarily refer to the\n same attribute: if the RHS expression refers to a class attribute,\n the LHS creates a new instance attribute as the target of the\n assignment:\n\n class Cls:\n x = 3 # class variable\n inst = Cls()\n inst.x = inst.x + 1 # writes inst.x as 4 leaving Cls.x as 3\n\n This description does not necessarily apply to descriptor\n attributes, such as properties created with ``property()``.\n\n* If the target is a subscription: The primary expression in the\n reference is evaluated. It should yield either a mutable sequence\n object (such as a list) or a mapping object (such as a dictionary).\n Next, the subscript expression is evaluated.\n\n If the primary is a mutable sequence object (such as a list), the\n subscript must yield a plain integer. If it is negative, the\n sequence\'s length is added to it. The resulting value must be a\n nonnegative integer less than the sequence\'s length, and the\n sequence is asked to assign the assigned object to its item with\n that index. If the index is out of range, ``IndexError`` is raised\n (assignment to a subscripted sequence cannot add new items to a\n list).\n\n If the primary is a mapping object (such as a dictionary), the\n subscript must have a type compatible with the mapping\'s key type,\n and the mapping is then asked to create a key/datum pair which maps\n the subscript to the assigned object. This can either replace an\n existing key/value pair with the same key value, or insert a new\n key/value pair (if no key with the same value existed).\n\n* If the target is a slicing: The primary expression in the reference\n is evaluated. It should yield a mutable sequence object (such as a\n list). The assigned object should be a sequence object of the same\n type. Next, the lower and upper bound expressions are evaluated,\n insofar they are present; defaults are zero and the sequence\'s\n length. The bounds should evaluate to (small) integers. If either\n bound is negative, the sequence\'s length is added to it. The\n resulting bounds are clipped to lie between zero and the sequence\'s\n length, inclusive. Finally, the sequence object is asked to replace\n the slice with the items of the assigned sequence. The length of\n the slice may be different from the length of the assigned sequence,\n thus changing the length of the target sequence, if the object\n allows it.\n\n**CPython implementation detail:** In the current implementation, the\nsyntax for targets is taken to be the same as for expressions, and\ninvalid syntax is rejected during the code generation phase, causing\nless detailed error messages.\n\nWARNING: Although the definition of assignment implies that overlaps\nbetween the left-hand side and the right-hand side are \'safe\' (for\nexample ``a, b = b, a`` swaps two variables), overlaps *within* the\ncollection of assigned-to variables are not safe! For instance, the\nfollowing program prints ``[0, 2]``:\n\n x = [0, 1]\n i = 0\n i, x[i] = 1, 2\n print x\n\n\nAugmented assignment statements\n===============================\n\nAugmented assignment is the combination, in a single statement, of a\nbinary operation and an assignment statement:\n\n augmented_assignment_stmt ::= augtarget augop (expression_list | yield_expression)\n augtarget ::= identifier | attributeref | subscription | slicing\n augop ::= "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "**="\n | ">>=" | "<<=" | "&=" | "^=" | "|="\n\n(See section *Primaries* for the syntax definitions for the last three\nsymbols.)\n\nAn augmented assignment evaluates the target (which, unlike normal\nassignment statements, cannot be an unpacking) and the expression\nlist, performs the binary operation specific to the type of assignment\non the two operands, and assigns the result to the original target.\nThe target is only evaluated once.\n\nAn augmented assignment expression like ``x += 1`` can be rewritten as\n``x = x + 1`` to achieve a similar, but not exactly equal effect. In\nthe augmented version, ``x`` is only evaluated once. Also, when\npossible, the actual operation is performed *in-place*, meaning that\nrather than creating a new object and assigning that to the target,\nthe old object is modified instead.\n\nWith the exception of assigning to tuples and multiple targets in a\nsingle statement, the assignment done by augmented assignment\nstatements is handled the same way as normal assignments. Similarly,\nwith the exception of the possible *in-place* behavior, the binary\noperation performed by augmented assignment is the same as the normal\nbinary operations.\n\nFor targets which are attribute references, the same *caveat about\nclass and instance attributes* applies as for regular assignments.\n',
10 'bitwise': u'\nBinary bitwise operations\n*************************\n\nEach of the three bitwise operations has a different priority level:\n\n and_expr ::= shift_expr | and_expr "&" shift_expr\n xor_expr ::= and_expr | xor_expr "^" and_expr\n or_expr ::= xor_expr | or_expr "|" xor_expr\n\nThe ``&`` operator yields the bitwise AND of its arguments, which must\nbe plain or long integers. The arguments are converted to a common\ntype.\n\nThe ``^`` operator yields the bitwise XOR (exclusive OR) of its\narguments, which must be plain or long integers. The arguments are\nconverted to a common type.\n\nThe ``|`` operator yields the bitwise (inclusive) OR of its arguments,\nwhich must be plain or long integers. The arguments are converted to\na common type.\n',
    [all...]

Completed in 868 milliseconds

12 3 4 5