Searched defs:isUnaryOp (Results 1 - 16 of 16) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp223 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in class:__anon11463::PrototypeAST
227 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp242 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in class:__anon11464::PrototypeAST
246 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp372 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in class:__anon11466::PrototypeAST
376 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp224 bool isUnaryOp() const { return isOperator && Args.size() == 1; } function in class:PrototypeAST
228 assert(isUnaryOp() || isBinaryOp());
H A Dtoy.cpp231 bool isUnaryOp() const { return isOperator && Args.size() == 1; } function in class:PrototypeAST
235 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp250 bool isUnaryOp() const { return isOperator && Args.size() == 1; } function in class:PrototypeAST
254 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp208 bool isUnaryOp() const { return isOperator && Args.size() == 1; } function in class:PrototypeAST
212 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp209 bool isUnaryOp() const { return isOperator && Args.size() == 1; } function in class:PrototypeAST
213 assert(isUnaryOp() || isBinaryOp());
H A Dtoy.cpp210 bool isUnaryOp() const { return isOperator && Args.size() == 1; } function in class:PrototypeAST
214 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp225 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in struct:PrototypeAST
229 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in struct:PrototypeAST
228 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in struct:PrototypeAST
228 assert(isUnaryOp() || isBinaryOp());
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } function in struct:PrototypeAST
228 assert(isUnaryOp() || isBinaryOp());
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp1286 bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); local
1304 if (isUnaryOp && funcInfo.isUnaryPrefix)
1342 if (funcInfo.type == OPERATOR && !isUnaryOp)
1350 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix)
1357 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix))
1358 shaderOp += string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " ");
1362 if (isUnaryOp && !funcInfo.isUnaryPrefix)
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderOperatorTests.cpp1882 const bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); local
1903 if (isUnaryOp && funcInfo.isUnaryPrefix)
1949 if (funcInfo.type == OPERATOR && !isUnaryOp)
1957 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix)
1964 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix))
1965 shaderOp += std::string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " ");
1969 if (isUnaryOp && !funcInfo.isUnaryPrefix)
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp1924 bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); local
1944 if (isUnaryOp && funcInfo.isUnaryPrefix)
1990 if (funcInfo.type == OPERATOR && !isUnaryOp)
1998 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix)
2005 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix))
2006 shaderOp += string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " ");
2010 if (isUnaryOp && !funcInfo.isUnaryPrefix)

Completed in 266 milliseconds