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

1 23 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CheckedInt.h 2 /* This Source Code Form is subject to the terms of the Mozilla Public
58 * What's nontrivial here is that there are different families of integer
59 * types: basic integer types and stdint types. It is merrily undefined which
63 * type that isn't just a typedef for some of them, is int8_t.
229 // In C++, left bit shifts on signed values is undefined by the standard
230 // unless the shifted value is representable.
233 // unsigned-to-signed is only well-defined if the value is representable.
259 // In C++, right bit shifts on negative values is undefined by the standard.
262 // unsigned-to-signed is only well-defined if the value is representable
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_texture_array.spec 30 OpenGL 1.2 or GL_EXT_texture3D is required.
32 Support for ARB_fragment_program is assumed, but not required.
34 Support for ARB_fragment_program_shadow is assumed, but not required.
36 Support for EXT_framebuffer_object is assumed, but not required.
54 texture applied to it. If the transition is from beach sand to
59 3. Storing short video clips in textures. Each depth slice is a
68 TEXTURE_2D_ARRAY, is added that functions identically to TEXTURE_3D in
70 traditional 3D texturing, the size of the N+1 LOD is half the size
72 the height and width of the N+1 LOD is halved, but the depth is th
    [all...]
  /external/chromium_org/v8/src/
lithium.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
64 bool Is##name() const { return kind() == type; }
112 // USED_AT_START operand is guaranteed to be live only at
113 // instruction start. Register allocator is free to assign the same register
118 // USED_AT_END operand is treated as live until the end of
163 // The encoding used for LUnallocated operands depends on the policy that is
177 // The slot index is a signed value which requires us to decode it manually
297 // A move is redundant if it's been eliminated, if its source and
298 // destination are the same, or if its destination is unneeded
    [all...]
ast.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
78 // The global identifier "undefined" is immutable. Everything
121 // Ideally CONST-ness should match. However, this is very hard to achieve
274 // If the key of a computed property is in the table, do not emit
299 // TODO(olivf) If this Operation is used in a test context, then the
309 // TODO(olivf) If this Operation is used in a test context, then the right
538 // If there is an interceptor, we can't compute the target for a direct call.
542 // For primitive checks the holder is set up to point to the corresponding
550 // If a dictionary map is found in the prototype chain before the actua
    [all...]
ast.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 // The abstract syntax tree is an intermediate, light-weight
221 bool Is##type() { return node_type() == AstNode::k##type; } \
222 type* As##type() { return Is##type() ? reinterpret_cast<type*>(this) : NULL; }
306 // The list stores pointers to Map*, that is Map**, so it's GC safe.
340 // names because [] for string objects is handled only by keyed ICs.
347 // True iff the expression is a literal represented as a smi.
350 // True iff the expression is a string literal.
353 // True iff the expression is the null literal
    [all...]
  /external/libffi/src/mips/
n32.S 6 Permission is hereby granted, free of charge, to any person obtaining
11 permit persons to whom the Software is furnished to do so, subject to
17 THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
75 ADDU t4, v0, 2 * FFI_SIZEOF_ARG -1 # make sure it is aligned
97 # Is it bigger than 8 * FFI_SIZEOF_ARG?
214 # If the return value pointer is NULL, assume no return value.
  /external/mesa3d/docs/
MESA_texture_array.spec 30 OpenGL 1.2 or GL_EXT_texture3D is required.
32 Support for ARB_fragment_program is assumed, but not required.
34 Support for ARB_fragment_program_shadow is assumed, but not required.
36 Support for EXT_framebuffer_object is assumed, but not required.
54 texture applied to it. If the transition is from beach sand to
59 3. Storing short video clips in textures. Each depth slice is a
68 TEXTURE_2D_ARRAY, is added that functions identically to TEXTURE_3D in
70 traditional 3D texturing, the size of the N+1 LOD is half the size
72 the height and width of the N+1 LOD is halved, but the depth is th
    [all...]
  /external/v8/src/
accessors.cc 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
48 while (!Is<C>(obj)) {
107 // This means one of the object's prototypes is a JSArray and the
155 // If object is not a string we return 0 to be compatible with WebKit.
395 // If this is not a script compiled through eval there is no eval position.
517 // If the function isn't compiled yet, the length is not computed
616 // If there is an arguments variable in the stack, we return that.
626 // If there is no arguments variable in the stack or we have a
    [all...]
hydrogen-instructions.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
207 virtual bool Is##type() const { return true; } \
209 ASSERT(value->Is##type()); \
217 ASSERT(value->Is##type()); \
479 // This class is the safe way to iterate uses while deleting them.
564 bool Is##type() const { return opcode() == k##type; }
571 virtual bool Is##type() const { return false; }
595 // Representation was already set and is allowed to be changed.
649 // Returns true if the flag specified is set for all uses, false otherwise
    [all...]
ast.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
50 // The abstract syntax tree is an intermediate, light-weight
217 bool Is##type() { return node_type() == AstNode::k##type; } \
218 type* As##type() { return Is##type() ? reinterpret_cast<type*>(this) : NULL; }
289 // The list stores pointers to Map*, that is Map**, so it's GC safe.
325 // names because [] for string objects is handled only by keyed ICs.
332 // True iff the expression is a literal represented as a smi.
335 // True iff the expression is a string literal.
338 // True iff the expression is the null literal
    [all...]
  /external/chromium_org/v8/test/mjsunit/
math-floor-of-div-nosudiv.js 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 // Use this function as reference. Make sure it is not inlined.
220 assertTrue(x == 0); // Is 0 or -0.
math-floor-of-div.js 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 // Use this function as reference. Make sure it is not inlined.
220 assertTrue(x == 0); // Is 0 or -0.
  /external/chromium_org/v8/test/webkit/fast/js/
parser-syntax-check.js 13 // THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
69 // it seems the End-Of-File terminator is converted to semicolon
70 // "a:[EOF]" is not parse error, while "{ a: }" is parse error
71 // "if (a)[EOF]" is not parse error, while "{ if (a) }" is parse error
215 valid ("do ; while(0) i++"); // Is this REALLY valid? (Firefox also accepts this)
  /external/chromium_org/third_party/icu/source/data/
makedata.mak 21 # Is the directory containing this file (makedata.mak)
22 # Is the directory into which most data is built (prior to packaging)
23 # Is icu\source\data\
28 !MESSAGE ICU data make path is $(ICUMAKE)
52 !MESSAGE ICU root path is $(ICUP)
117 # This is the same place that all of the other ICU DLLs go (the code-containing DLLs)
140 # only the data is put in place.)
180 !MESSAGE ICU data source archive is $(ICUDATA_SOURCE_ARCHIVE)
187 # the following logic is much easier if UCM_SOURCE is never empty
    [all...]
  /external/icu4c/data/
makedata.mak 21 # Is the directory containing this file (makedata.mak)
22 # Is the directory into which most data is built (prior to packaging)
23 # Is icu\source\data\
28 !MESSAGE ICU data make path is $(ICUMAKE)
52 !MESSAGE ICU root path is $(ICUP)
117 # This is the same place that all of the other ICU DLLs go (the code-containing DLLs)
140 # only the data is put in place.)
180 !MESSAGE ICU data source archive is $(ICUDATA_SOURCE_ARCHIVE)
187 # the following logic is much easier if UCM_SOURCE is never empty
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 10 // distributed under the License is distributed on an "AS IS" BASIS,
90 * @param {Object} defaultValue The default if the value is not set.
91 * @return {Object} The value, if it is
104 * Note that instanceof Array is not robust; for example an Array
107 * @return {boolean} Is the object an array?
131 // if opt_end is not provided.
163 * I.e. var_args are all the arguments that method is invoked with when
323 * returns window.document if node is null or the browser does not
324 * support ownerDocument. If the node is a document itself, returns
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 10 // distributed under the License is distributed on an "AS IS" BASIS,
90 * @param {Object} defaultValue The default if the value is not set.
91 * @return {Object} The value, if it is
104 * Note that instanceof Array is not robust; for example an Array
107 * @return {boolean} Is the object an array?
131 // if opt_end is not provided.
163 * I.e. var_args are all the arguments that method is invoked with when
323 * returns window.document if node is null or the browser does not
324 * support ownerDocument. If the node is a document itself, return
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
background.js 2 // Use of this source code is governed by a BSD-style license that can be
67 benchmarkIndex--; // Note: it is okay to drop to -1 here.
139 // Check if a run is already in progress.
177 // Is the benchmark currently in progress.
182 // The url which this benchmark is running.
242 // After the previous page is closed, this function will apply
293 // Make sure the content can be fetched via spdy if it is enabled.
312 alert("Error: viaSpdy for current fetch is different from last fetch!\n" +
314 // Current data set is invalid: remove from the result array.
345 // If the user navigates away from the test while it is running
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 10 // distributed under the License is distributed on an "AS IS" BASIS,
90 * @param {Object} defaultValue The default if the value is not set.
91 * @return {Object} The value, if it is
104 * Note that instanceof Array is not robust; for example an Array
107 * @return {boolean} Is the object an array?
131 // if opt_end is not provided.
163 * I.e. var_args are all the arguments that method is invoked with when
323 * returns window.document if node is null or the browser does not
324 * support ownerDocument. If the node is a document itself, returns
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 10 // distributed under the License is distributed on an "AS IS" BASIS,
90 * @param {Object} defaultValue The default if the value is not set.
91 * @return {Object} The value, if it is
104 * Note that instanceof Array is not robust; for example an Array
107 * @return {boolean} Is the object an array?
131 // if opt_end is not provided.
163 * I.e. var_args are all the arguments that method is invoked with when
323 * returns window.document if node is null or the browser does not
324 * support ownerDocument. If the node is a document itself, return
    [all...]
  /external/chromium_org/third_party/jstemplate/
util.js 10 // distributed under the License is distributed on an "AS IS" BASIS,
86 * @param {Object} defaultValue The default if the value is not set.
87 * @return {Object} The value, if it is
100 * Note that instanceof Array is not robust; for example an Array
103 * @return {boolean} Is the object an array?
127 // if opt_end is not provided.
159 * I.e. var_args are all the arguments that method is invoked with when
319 * returns window.document if node is null or the browser does not
320 * support ownerDocument. If the node is a document itself, return
    [all...]
  /external/v8/src/arm/
lithium-arm.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
190 ASSERT(instr->Is##type()); \
228 bool Is##type() const { return opcode() == k##type; }
545 // Used when the right hand is a constant power of 2.
663 DECLARE_CONCRETE_INSTRUCTION(IsNilAndBranch, "is-nil-and-branch")
680 DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
694 DECLARE_CONCRETE_INSTRUCTION(IsStringAndBranch, "is-string-and-branch")
707 DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
722 "is-undetectable-and-branch"
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
185 ASSERT(instr->Is##type()); \
223 bool Is##type() const { return opcode() == k##type; }
659 DECLARE_CONCRETE_INSTRUCTION(IsNilAndBranch, "is-nil-and-branch")
676 DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
689 DECLARE_CONCRETE_INSTRUCTION(IsStringAndBranch, "is-string-and-branch")
701 DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
716 "is-undetectable-and-branch")
785 "is-construct-call-and-branch"
    [all...]
  /external/v8/src/mips/
lithium-mips.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
189 ASSERT(instr->Is##type()); \
227 bool Is##type() const { return opcode() == k##type; }
544 // Used when the right hand is a constant power of 2.
662 DECLARE_CONCRETE_INSTRUCTION(IsNilAndBranch, "is-nil-and-branch")
679 DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
693 DECLARE_CONCRETE_INSTRUCTION(IsStringAndBranch, "is-string-and-branch")
706 DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
721 "is-undetectable-and-branch"
    [all...]
  /external/v8/src/x64/
lithium-x64.h 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
190 ASSERT(instr->Is##type()); \
229 bool Is##type() const { return opcode() == k##type; }
646 DECLARE_CONCRETE_INSTRUCTION(IsNilAndBranch, "is-nil-and-branch")
662 DECLARE_CONCRETE_INSTRUCTION(IsObjectAndBranch, "is-object-and-branch")
676 DECLARE_CONCRETE_INSTRUCTION(IsStringAndBranch, "is-string-and-branch")
689 DECLARE_CONCRETE_INSTRUCTION(IsSmiAndBranch, "is-smi-and-branch")
704 "is-undetectable-and-branch")
    [all...]

Completed in 849 milliseconds

1 23 4 5 6