HomeSort by relevance Sort by last modified time
    Searched full:operators (Results 276 - 300 of 2192) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr2/
bool_set 265 // 20.2.3.4 bool_set logical operators
292 // 20.2.3.5 bool_set relational operators
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_relops.h 61 * Short summary: the rel_ops operators should be avoided for the present.
74 * @brief The generated relational operators are sequestered here.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr2/
bool_set 265 // 20.2.3.4 bool_set logical operators
292 // 20.2.3.5 bool_set relational operators
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_relops.h 61 * Short summary: the rel_ops operators should be avoided for the present.
74 * @brief The generated relational operators are sequestered here.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr2/
bool_set 265 // 20.2.3.4 bool_set logical operators
292 // 20.2.3.5 bool_set relational operators
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 9 There's also a table here mapping operators to their names in the
10 token module; the Python tokenize module reports all operators as the
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 9 There's also a table here mapping operators to their names in the
10 token module; the Python tokenize module reports all operators as the
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_relops.h 61 * Short summary: the rel_ops operators should be avoided for the present.
74 * @brief The generated relational operators are sequestered here.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
bool_set 265 // 20.2.3.4 bool_set logical operators
292 // 20.2.3.5 bool_set relational operators
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 9 There's also a table here mapping operators to their names in the
10 token module; the Python tokenize module reports all operators as the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 9 There's also a table here mapping operators to their names in the
10 token module; the Python tokenize module reports all operators as the
  /external/dbus/dbus/
dbus-shell.c 146 * quotes; if a string contains file globs, arithmetic operators,
255 * don't understand that operators are tokens, don't do tilde expansion,
264 * - tokenize the string (but since we ignore operators,
282 * enclosing quotes or substitution operators, between the quote
540 * perform (variable expansion, globs, operators, filename expansion,
  /external/llvm/lib/TableGen/
SetTheory.cpp 22 // Define the standard operators.
68 // SetIntBinOp - Abstract base class for (Op S, N) operators.
261 Operators[Name] = std::move(Op);
292 auto I = Operators.find(OpInit->getDef()->getName());
293 if (I == Operators.end())
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
pointer.h 255 * arithmetic, comparison operators, etc. that are supported by this
433 // Expand into the various pointer arithmetic operators needed.
494 // Expand into the various comparison operators needed.
524 * Comparison operators for _Pointer_adapter defer to the base class'
525 * comparison operators, when possible.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pointer.h 255 * arithmetic, comparison operators, etc. that are supported by this
433 // Expand into the various pointer arithmetic operators needed.
494 // Expand into the various comparison operators needed.
524 * Comparison operators for _Pointer_adapter defer to the base class'
525 * comparison operators, when possible.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pointer.h 255 * arithmetic, comparison operators, etc. that are supported by this
433 // Expand into the various pointer arithmetic operators needed.
494 // Expand into the various comparison operators needed.
524 * Comparison operators for _Pointer_adapter defer to the base class'
525 * comparison operators, when possible.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
pointer.h 255 * arithmetic, comparison operators, etc. that are supported by this
433 // Expand into the various pointer arithmetic operators needed.
494 // Expand into the various comparison operators needed.
524 * Comparison operators for _Pointer_adapter defer to the base class'
525 * comparison operators, when possible.
  /external/llvm/docs/tutorial/
OCamlLangImpl2.rst 67 the variable name, binary operators capture their opcode (e.g. '+'), and
71 Note that there is no discussion about precedence of binary operators,
133 the tutorial <OCamlLangImpl6.html#user-defined-unary-operators>`_. In order to parse an
247 This parsing technique uses the precedence of binary operators to guide
262 (* Install standard binary operators.
271 operators (this can obviously be extended by you, our brave and intrepid
274 ``Hashtbl.t`` makes it easy to add new operators and makes it clear that
275 the algorithm doesn't depend on the specific operators involved, but it
282 down an expression with potentially ambiguous binary operators into
285 expressions separated by binary operators. As such, it will first pars
    [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 314 /// Associative operators satisfy: x op (y op z) === (x op y) op z
316 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
323 /// Commutative operators satisfy: (x op y) === (y op x)
325 /// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
333 /// Idempotent operators satisfy: x op x === x
335 /// In LLVM, the And and Or operators are idempotent.
342 /// Nilpotent operators satisfy: x op x === Id,
  /external/vulkan-validation-layers/libs/glm/detail/
type_vec2.inl 148 // Unary arithmetic operators
270 // Increment and decrement operators
305 // Boolean operators
328 // Unary bit operators
439 // Binary arithmetic operators
588 // Unary constant operators
601 // Binary bit operators
type_vec3.inl 172 // Unary arithmetic operators
274 // Increment and decrement operators
311 // Boolean operators
334 // Unary bit operators
457 // Binary arithmetic operators
618 // Unary constant operators
632 // Binary bit operators
type_vec4.inl 227 // Unary arithmetic operators
339 // Increment and decrement operators
378 // Unary bit operators
513 // Binary arithmetic operators
686 // Unary constant operators
701 // Boolean operators
724 // Binary bit operators
  /development/ndk/sources/android/ndk_helper/
vecmath.h 78 //Operators
139 //External operators
161 //Operators with float
294 //Operators
363 //External operators
387 //Operators with float
537 //Operators
614 //External operators
640 //Operators with float
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearchdomain/
layer1.py 90 queries using Boolean operators, and use advanced features
261 + `operators`: An array of the operators or special characters you want
263 `or`, or `not` operators, the corresponding operators ( `+`, `|`,
277 example, you could disable all operators other than the phrase
279 `"operators":["and","not","or", "prefix"]`. Valid values: `and`,
281 `prefix`, `whitespace`. Default: All operators and special
343 (NOT), `|` (OR), and `*` (wildcard) operators to exclude particular
  /external/clang/include/clang/Format/
Format.h 77 /// This will align the assignment operators of consecutive lines. This
206 /// \brief The style of breaking before or after binary operators.
208 /// Break after operators.
210 /// Break before operators that aren't assignments.
212 /// Break before operators.
216 /// \brief The way to wrap binary operators.
278 /// \brief If \c true, ternary operators will be placed after line breaks.
510 /// \brief If \c false, spaces will be removed before assignment operators.
522 /// when determined by other style rules (after unary operators, opening

Completed in 1219 milliseconds

<<11121314151617181920>>