Home
last modified time | relevance | path

Searched refs:REQUIRE (Results 1 – 16 of 16) sorted by relevance

/external/parameter-framework/upstream/utility/test/
Dutility.cpp63 REQUIRE(join(first, last, test.binaryOpt, test.empty) == test.result);
64 REQUIRE(join<int>(first, last, test.binaryOpt) == test.resultNoEmpty);
89 REQUIRE(asString(test.input, test.separator) == test.result);
92 REQUIRE(asString(test.input) == test.resultNoSep);
123 REQUIRE(asString(test.input, test.keyValueSep, test.itemSep) == test.result);
124 REQUIRE(asString(test.input, test.keyValueSep) == test.resultNoKeyValueSep);
125 REQUIRE(asString(test.input) == test.resultNoSep);
201 REQUIRE(sizeof(float) == sizeof(uint32_t));
202 REQUIRE(std::numeric_limits<float>::is_iec559);
210 REQUIRE(sizeof(double) == sizeof(uint64_t));
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
Dregcomp.c127 #define REQUIRE(co, e) (void)((co) || SETERROR(e)) macro
128 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
129 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
130 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
270 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere()
315 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
371 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
376 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
392 REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp()
419 REQUIRE(count <= count2, REG_BADBR); in p_ere_exp()
[all …]
/external/llvm/lib/Support/
Dregcomp.c135 #define REQUIRE(co, e) (void)((co) || SETERROR(e)) macro
136 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
137 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
138 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
278 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere()
324 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
380 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
412 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
428 REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp()
455 REQUIRE(count <= count2, REG_BADBR); in p_ere_exp()
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregcomp.c135 #define REQUIRE(co, e) (void)((co) || SETERROR(e)) macro
136 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
137 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
138 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
278 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere()
324 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
380 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
412 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
428 REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp()
455 REQUIRE(count <= count2, REG_BADBR); in p_ere_exp()
[all …]
/external/parameter-framework/upstream/bindings/c/
DTest.cpp52 REQUIRE(str != NULL); in empty()
151 REQUIRE(pfw != NULL);
262 REQUIRE(pfwBindParameter(pfw, intParameterPath) == NULL);
277 REQUIRE(value == 0);
295 REQUIRE(value == 3);
329 REQUIRE(value == 11);
349 REQUIRE(value == std::string("ok"));
/external/nist-sip/java/gov/nist/javax/sip/header/
DRequire.java58 super(REQUIRE); in Require()
65 super(REQUIRE); in Require()
DSIPHeaderNames.java86 public static final String REQUIRE = RequireHeader.NAME; //34 field
DNameMap.java145 putNameMap(REQUIRE, Require.class.getName()); //34 in initializeNameMap()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DRequireParser.java73 headerName(TokenTypes.REQUIRE); in parse()
77 r.setHeaderName(SIPHeaderNames.REQUIRE); in parse()
DTokenTypes.java78 public static final int REQUIRE = START + 41; field
DLexer.java190 TokenTypes.REQUIRE); in selectLexer()
/external/selinux/checkpolicy/
Dpolicy_scan.l162 require|REQUIRE { return(REQUIRE); }
Dpolicy_parse.y150 %token MODULE VERSION_IDENTIFIER REQUIRE OPTIONAL
911 require_block : REQUIRE '{' require_list '}'
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DPeerConnection.java125 NEGOTIATE, REQUIRE enumConstant
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java457 rtcConfig.rtcpMuxPolicy = PeerConnection.RtcpMuxPolicy.REQUIRE; in createPeerConnectionInternal()
/external/libchrome/base/message_loop/
Dmessage_pump_mac.mm769 // The main-thread MessagePump implementations REQUIRE an NSApp.