HomeSort by relevance Sort by last modified time
    Searched refs:Should (Results 51 - 75 of 88) sorted by null

1 23 4

  /external/llvm/test/MC/ARM/
ldr-pseudo-darwin.s 4 @ between darwin and linux. Any tests added here should have a matching
37 @ TODO: the same constants should have the same constant pool location
59 @ a section defined in multiple pieces should be merged and use a single constant pool
288 @ Should not switch to section because it has no constant pool
ldr-pseudo.s 4 @ between darwin and linux. Any tests added here should have a matching
37 @ TODO: the same constants should have the same constant pool location
59 @ a section defined in multiple pieces should be merged and use a single constant pool
277 @ Should not switch to section because it has no constant pool
  /external/mesa3d/docs/specs/
MESA_texture_array.spec 675 should be ignored.
680 3.8.8 ("Manual Mipmap Generation"), 4.4.2.3, and 6.1.3 should be ignored.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
ldr-pseudo-darwin.s 4 @ between darwin and linux. Any tests added here should have a matching
37 @ TODO: the same constants should have the same constant pool location
59 @ a section defined in multiple pieces should be merged and use a single constant pool
285 @ Should not switch to section because it has no constant pool
ldr-pseudo.s 4 @ between darwin and linux. Any tests added here should have a matching
37 @ TODO: the same constants should have the same constant pool location
59 @ a section defined in multiple pieces should be merged and use a single constant pool
275 @ Should not switch to section because it has no constant pool
  /build/blueprint/microfactory/
microfactory_test.go 167 t.Fatal("Package should have recompiled, but was not recompiled.")
171 t.Fatal("Package should not have needed to be recompiled, but was recompiled.")
180 t.Error("Package should have relinked, but was not relinked.")
184 t.Error("Package should not have needed to be relinked, but was relinked.")
191 t.Error("Output timestamp should be different, but both were", firstTime)
195 t.Error("Output timestamp should be the same.")
215 // timestamps of important files have changed. We should only rebuild if the
240 t.Fatal("android/soong/a should have rebuilt")
243 t.Fatal("android/soong/b should have rebuilt")
257 t.Fatal("android/soong/a should not have rebuilt"
    [all...]
  /external/flatbuffers/tests/
JavaScriptTest.js 276 // Should correspond to what EndTable() below builds up.
  /external/protobuf/js/binary/
utils.js 539 * @param {boolean} signed True if we should treat the hash string as encoding
557 * @param {boolean} signed True if we should treat the hash string as encoding
668 * @param {boolean} signed True if the has should be interpreted as a signed
892 * String-ify bytes for text format. Should be optimized away in non-debug.
913 * String-ify a scalar for text format. Should be optimized away in non-debug.
  /external/v8/tools/
profile.js 46 * Should be overriden by subclasses.
82 * containing the specified address. Should be overriden by subclasses.
930 // TODO(jarin) This does not look correct, we should really
1021 // The subsequent deoptimizations should be lazy deopts for
  /external/golang-protobuf/proto/
text.go 486 // Should only be a []byte; repeated fields are handled in writeStruct.
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 467 input.SkipLastField(); // Should consume the whole group, including the nested one.
479 // End group 4 (should give an error)
505 // code will just call SkipLastField... so that should fail.
  /external/scapy/scapy/contrib/
bgp.uts 55 = BGP - Instantiation (Should be a KEEPALIVE)
91 = BGPKeepAlive - Instantiation (by default, should be a "generic" capability)
105 = BGPCapability - Instantiation (by default, should be a "generic" capability)
    [all...]
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
text.go 486 // Should only be a []byte; repeated fields are handled in writeStruct.
  /external/syzkaller/vendor/google.golang.org/appengine/internal/
api.go 104 // Should not normally reach here, but pick a sensible default anyway.
157 buf := make([]byte, 16<<10) // 16 KB should be plenty
321 // It should only be used by aetest package.
578 // It should not be called concurrently.
api_pre17.go 108 // Should not normally reach here, but pick a sensible default anyway.
161 buf := make([]byte, 16<<10) // 16 KB should be plenty
327 // It should only be used by aetest package.
600 // It should not be called concurrently.
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_graph_dumper.cc 68 // Used to indicate how we should treat a given HLOInstruction in the graph.
69 // should we treat it like normal, hide it, and so on?
332 // Generates graph header/footer. These should be called *after* dumping all
370 // In general when you want to draw an edge from A to B, you should actually
790 // Override the node's styling if it should be (de-)emphasized.
    [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]
  /build/soong/androidmk/cmd/androidmk/
android.go 283 // classifyLocalOrGlobalPath tells whether a file path should be interpreted relative to the current module (local)
293 // TODO: Should we split variables?
629 return fmt.Errorf("LOCAL_MODULE_PATH value should start with $(<some-varaible>)/ or $(PRODUCT_OUT)/$(TARGET_COPY_VENDOR)/")
  /external/curl/packages/vms/
config_h.com 241 $! Now calculate what should be in the file from reading
1129 $! Should really verify that the structure
    [all...]
  /external/flatbuffers/js/
flatbuffers.js 523 * Should not be creating any other object, string or vector
  /external/doclava/res/assets/templates-sdk/assets/js/
docs.js     [all...]
  /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',
6 'attribute-access': u'\nCustomizing attribute access\n****************************\n\nThe following methods can be defined to customize the meaning of\nattribute access (use of, assignment to, or deletion of ``x.name``)\nfor class instances.\n\nobject.__getattr__(self, name)\n\n Called when an attribute lookup has not found the attribute in the\n usual places (i.e. it is not an instance attribute nor is it found\n in the class tree for ``self``). ``name`` is the attribute name.\n This method should return the (computed) attribute value or raise\n an ``AttributeError`` exception.\n\n Note that if the attribute is found through the normal mechanism,\n ``__getattr__()`` is not called. (This is an intentional asymmetry\n between ``__getattr__()`` and ``__setattr__()``.) This is done both\n for efficiency reasons and because otherwise ``__getattr__()``\n would have no way to access other attributes of the instance. Note\n that at least for instance variables, you can fake total control by\n not inserting any values in the instance attribute dictionary (but\n instead inserting them in another object). See the\n ``__getattribute__()`` method below for a way to actually get total\n control in new-style classes.\n\nobject.__setattr__(self, name, value)\n\n Called when an attribute assignment is attempted. This is called\n instead of the normal mechanism (i.e. store the value in the\n instance dictionary). *name* is the attribute name, *value* is the\n value to be assigned to it.\n\n If ``__setattr__()`` wants to assign to an instance attribute, it\n should not simply execute ``self.name = value`` --- this would\n cause a recursive call to itself. Instead, it should insert the\n value in the dictionary of instance attributes, e.g.,\n ``self.__dict__[name] = value``. For new-style classes, rather\n than accessing the instance dictionary, it should call the base\n class method with the same name, for example,\n ``object.__setattr__(self, name, value)``.\n\nobject.__delattr__(self, name)\n\n Like ``__setattr__()`` but for attribute deletion instead of\n assignment. This should only be implemented if ``del obj.name`` is\n meaningful for the object.\n\n\nMore attribute acce (…)
    [all...]
  /external/autotest/client/common_lib/cros/
dev_server.py 46 # Artifacts that should be staged when client calls devserver RPC to stage an
49 # Artifacts that should be staged when client calls devserver RPC to stage an
54 # Artifacts that should be staged when client calls devserver RPC to stage an
99 # People who see this should know that they shouldn't change these
425 A caller should instantiate a sub-class of DevServer with:
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs     [all...]
  /external/boringssl/src/ssl/test/runner/
conn.go 199 // This should be locked, but I've removed it for the renegotiation
1049 // TODO(rsc): Should at least pick off connection close.
    [all...]

Completed in 1393 milliseconds

1 23 4