HomeSort by relevance Sort by last modified time
    Searched refs:isVoid (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium/webkit/glue/
cpp_variant.h 86 bool isVoid() const { return (type == NPVariantType_Void); }
88 bool isEmpty() const { return (isVoid() || isNull()); }
cpp_variant_unittest.cc 357 EXPECT_TRUE(cpp.isVoid());
367 EXPECT_FALSE(cpp.isVoid());
378 EXPECT_FALSE(cpp.isVoid());
389 EXPECT_FALSE(cpp.isVoid());
400 EXPECT_FALSE(cpp.isVoid());
411 EXPECT_FALSE(cpp.isVoid());
423 EXPECT_FALSE(cpp.isVoid());
  /external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.h 109 bool isVoid() const { return (type == NPVariantType_Void); }
111 bool isEmpty() const { return (isVoid() || isNull()); }
  /frameworks/native/opengl/tools/glgen/src/
CType.java 66 boolean isVoid() {
78 return isPointer() && !isVoid() && !isConstCharPointer();
JniCodeEmitter.java 157 boolean isVoid = jfunc.getType().isVoid();
160 if (!isVoid) {
165 (isVoid ? "" : "_returnValue = ") +
296 boolean isVoid = returnType.isVoid();
297 if (isVoid) {
655 boolean isVoid = jfunc.getType().isVoid();
657 if (!isVoid) {
    [all...]
JType.java 181 public boolean isVoid() {
  /external/mockito/src/org/mockito/internal/stubbing/answers/
AnswersValidator.java 58 if (!methodInfo.isVoid()) {
64 if (methodInfo.isVoid()) {
MethodInfo.java 43 public boolean isVoid() {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java 47 boolean isVoid() {
AndroidTranslator.java 360 methodBody = returnType.isVoid() ? "" : "return " + returnType.defaultReturnString() + ";";
366 methodBody += returnType.isVoid() ? "" : "return " + returnType.defaultReturnString() + ";";
372 boolean returnsVoid = returnType.isVoid();
  /sdk/emulator/opengl/host/tools/emugen/
Var.h 78 bool isVoid() const { return ((m_type->bytes() == 0) && (!m_type->isPointer())); }
ApiGen.cpp 86 if (!evars[j].isVoid()) {
238 bool shouldReturn = !e->retval().isVoid();
254 if (!e->vars()[j].isVoid()) {
420 if (!var.isVoid()) {
794 if (!v->isVoid()) printString += (v->isPointer() ? "%p(%u)" : v->type()->printFormat()) + " ";
808 if (!e->retval().isVoid()) {
813 if (pass == PASS_FunctionCall && !e->retval().isVoid() && !e->retval().isPointer()) {
827 if (e->vars().size() > 0 && !e->vars()[0].isVoid()) fprintf(fp, ",");
835 if (!v->isVoid()) {
    [all...]
EntryPoint.cpp 170 if (m_vars[i].isVoid()) continue;
  /external/llvm/lib/IR/
ValueTypes.cpp 127 case MVT::isVoid: return "isVoid";
180 case MVT::isVoid: return Type::getVoidTy(Context);
243 return MVT::isVoid;
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 71 case MVT::isVoid: return "MVT::isVoid";
490 if (VT == MVT::isVoid)
524 if (VT == MVT::isVoid && i != e-1 /*void at end means varargs*/)
CodeGenDAGPatterns.h 87 bool isVoid() const {
88 return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid;
IntrinsicEmitter.cpp 362 Int.IS.RetVTs[0] == MVT::isVoid)
FastISelEmitter.cpp 492 MVT::SimpleValueType RetVT = MVT::isVoid;
  /external/javassist/src/main/javassist/compiler/
Javac.java 206 boolean isVoid = rtype == CtClass.voidType;
222 gen.atMethodBody(s, callSuper, isVoid);
CodeGen.java 281 public void atMethodBody(Stmnt s, boolean isCons, boolean isVoid)
293 if (isVoid) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 115 isVoid = 51, // This has no value
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 554 assert(NVT.isInteger() == VT.isInteger() && NVT != MVT::isVoid &&
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]

Completed in 278 milliseconds

1 2