/external/clang/lib/Basic/ |
IdentifierTable.cpp | 158 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternative 556 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) { 557 switch (Operator) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 85 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", 92 Funny = group(Operator, Bracket, Special)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tokenize.py | 81 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", 88 Funny = group(Operator, Bracket, Special)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 85 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", 92 Funny = group(Operator, Bracket, Special)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tokenize.py | 81 Operator = group(r"\*\*=?", r">>=?", r"<<=?", r"<>", r"!=", 88 Funny = group(Operator, Bracket, Special)
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
CSSParserValues.h | 88 UChar operator[](unsigned i) const 118 operator String() const { return is8Bit() ? String(m_data.characters8, m_length) : StringImpl::create8BitIfPossible(m_data.characters16, m_length); } 119 operator AtomicString() const { return is8Bit() ? AtomicString(m_data.characters8, m_length) : AtomicString(m_data.characters16, m_length); } 151 Operator = 0x100000,
|
MediaQueryParser.cpp | 245 value.unit = CSSParserValue::Operator;
|
/external/chromium_org/tools/gn/ |
tokenizer_unittest.cc | 86 TEST(Tokenizer, Operator) {
|
/external/chromium_org/v8/src/compiler/ |
simplified-lowering.cc | 9 #include "src/compiler/common-operator.h" 14 #include "src/compiler/simplified-operator.h" 34 // to local rules for each operator. 36 // possible lowering for each operator so far, and that in turn determines 324 // Update the phi operator. 340 const Operator* Int32Op(Node* node) { 344 const Operator* Uint32Op(Node* node) { 348 const Operator* Float64Op(Node* node) { 362 // Depending on the operator, propagate new usage info to the inputs. 773 bool contains_js_nodes_; // {true} if a JS operator was see [all...] |
js-generic-lowering.cc | 7 #include "src/compiler/common-operator.h" 10 #include "src/compiler/machine-operator.h" 25 void JSGenericLowering::PatchOperator(Node* node, const Operator* op) { 218 Operator::Properties properties = node->op()->properties();
|
ast-graph-builder.h | 142 // stack and build a call node using the given call operator. 143 Node* ProcessArguments(const Operator* op, int arity);
|
/external/chromium_org/v8/test/cctest/compiler/ |
simplified-graph-builder.h | 8 #include "src/compiler/common-operator.h" 10 #include "src/compiler/machine-operator.h" 11 #include "src/compiler/simplified-operator.h" 141 virtual Node* MakeNode(const Operator* op, int value_input_count,
|
test-schedule.cc | 7 #include "src/compiler/common-operator.h" 10 #include "src/compiler/machine-operator.h" 12 #include "src/compiler/operator.h" 19 static SimpleOperator dummy_operator(IrOpcode::kParameter, Operator::kNoWrite,
|
test-simplified-lowering.cc | 668 void CheckLoweringBinop(IrOpcode::Value expected, const Operator* op) { 674 void CheckLoweringTruncatedBinop(IrOpcode::Value expected, const Operator* op, 675 const Operator* trunc) { [all...] |
codegen-tester.h | 245 const Operator* op(MachineOperatorBuilder* machine) {
|
test-run-machops.cc | 61 const Operator* ops[] = { 744 const Operator* shops[] = {m.machine()->Word32Sar(), 836 const Operator* shops[] = {m.machine()->Word32Sar(), 1081 const Operator* shops[] = {m.machine()->Word32Sar(), 1173 const Operator* shops[] = {m.machine()->Word32Sar(), [all...] |
/external/llvm/lib/Analysis/IPA/ |
GlobalsModRef.cpp | 266 } else if (Operator::getOpcode(I) == Instruction::GetElementPtr) { 269 } else if (Operator::getOpcode(I) == Instruction::BitCast) {
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
MediaQueryExp.cpp | 278 } else if (i == 1 && value->unit == CSSParserValue::Operator && value->iValue == '/') { 306 bool MediaQueryExp::operator==(const MediaQueryExp& other) const
|
CSSCalculationValue.cpp | 631 if (value->unit != CSSParserValue::Operator) 640 if (parserValue->unit >= CSSParserValue::Operator)
|
/external/clang/lib/Parse/ |
ParseTemplate.cpp | 667 // operator. [all...] |
/external/llvm/lib/CodeGen/ |
ScheduleDAGInstrs.cpp | 29 #include "llvm/IR/Operator.h" 74 if (const Operator *U = dyn_cast<Operator>(V)) { 87 Operator::getOpcode(U->getOperand(1)) != Instruction::Mul && 115 if (Operator::getOpcode(V) == Instruction::IntToPtr) { [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ndr64types.h | 473 NDR64_FORMAT_CHAR Operator;
|
/external/chromium_org/base/test/ |
trace_event_analyzer.cc | 265 << "Invalid query: comparison operator used between event member and " 274 // It's a logical operator. 552 Query Query::operator==(const Query& rhs) const { 556 Query Query::operator!=(const Query& rhs) const { 560 Query Query::operator<(const Query& rhs) const { 564 Query Query::operator<=(const Query& rhs) const { 568 Query Query::operator>(const Query& rhs) const { 572 Query Query::operator>=(const Query& rhs) const { 576 Query Query::operator&&(const Query& rhs) const { 580 Query Query::operator||(const Query& rhs) const [all...] |
/external/clang/lib/Sema/ |
DeclSpec.cpp | 325 getName().OperatorFunctionId.Operator); [all...] |
SemaExprCXX.cpp | 742 // This is a generic lambda call operator that is being instantiated [all...] |