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

1 2

  /external/nist-sip/java/gov/nist/javax/sip/header/
Require.java 35 * Require SIP Header.
44 public class Require extends SIPHeader implements RequireHeader {
57 public Require() {
58 super(REQUIRE);
64 public Require(String s) {
65 super(REQUIRE);
88 "JAIN-SIP Exception, Require, "
103 * $Log: Require.java,v $
NameMap.java 145 putNameMap(REQUIRE, Require.class.getName()); //34
SIPHeaderNames.java 86 public static final String REQUIRE = RequireHeader.NAME; //34
  /external/parameter-framework/upstream/utility/test/
utility.cpp 63 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/nist-sip/java/gov/nist/javax/sip/parser/
RequireParser.java 33 * Parser for Require header.
48 * @param require the header to parse
50 public RequireParser(String require) {
51 super(require);
73 headerName(TokenTypes.REQUIRE);
76 Require r = new Require();
77 r.setHeaderName(SIPHeaderNames.REQUIRE);
91 r = new Require();
114 "Require: 100rel \n"
    [all...]
TokenTypes.java 78 public static final int REQUIRE = START + 41;
Lexer.java 190 TokenTypes.REQUIRE);
  /libcore/ojluni/src/main/java/sun/security/x509/
PolicyConstraintsExtension.java 42 * in two ways. It can be used to prohibit policy mapping or require
70 public static final String REQUIRE = "require";
76 private int require = -1; field in class:PolicyConstraintsExtension
81 if (require == -1 && inhibit == -1) {
88 if (require != -1) {
90 tmp.putInteger(require);
106 * require explicit policy and inhibit policy mapping. The
109 * @param require require explicit policy (-1 for optional)
    [all...]
  /external/parameter-framework/upstream/bindings/c/
Test.cpp 52 REQUIRE(str != NULL);
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/v8/test/cctest/wasm/
test-run-wasm-64.cc 97 #define REQUIRE(name) \
101 REQUIRE(I64Const);
110 REQUIRE(I64Const);
123 REQUIRE(I64Return);
132 REQUIRE(I64Add);
142 REQUIRE(I64Sub);
152 REQUIRE(I64DivS);
170 REQUIRE(I64DivS);
182 REQUIRE(I64DivS);
197 REQUIRE(I64DivU)
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf-eh-frame.c 463 #define REQUIRE(COND) \
502 REQUIRE (bfd_malloc_and_get_section (abfd, sec, &ehbuf));
515 REQUIRE (sec->size == (unsigned int) sec->size);
519 REQUIRE (ptr_size != 0);
532 REQUIRE (skip_bytes (&buf, end, 4));
536 REQUIRE (hdr_length != 0xffffffff);
540 REQUIRE (skip_bytes (&buf, end, 4));
545 REQUIRE (skip_bytes (&buf, end, hdr_length - 4));
551 REQUIRE (sec_info);
555 REQUIRE (local_cies)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
assertions.h 72 #define REQUIRE(cond) \
81 #define REQUIRE(cond) ((void) (cond))
  /external/llvm/lib/Support/
regcomp.c 135 #define REQUIRE(co, e) (void)((co) || SETERROR(e))
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 */
324 REQUIRE(MORE(), REG_EPAREN);
380 REQUIRE(MORE(), REG_EESCAPE);
412 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
428 REQUIRE(!wascaret, REG_BADRPT)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 126 #define REQUIRE(co, e) if (!(co)) { SETERROR(e); }
127 #define MUSTSEE(c, e) REQUIRE(MORE() && PEEK() == (c), e)
128 #define MUSTEAT(c, e) REQUIRE(MORE() && GETNEXT() == (c), e)
129 #define MUSTNOTSEE(c, e) REQUIRE(!MORE() || PEEK() != (c), e)
262 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */
307 REQUIRE(MORE(), REG_EPAREN);
363 REQUIRE(MORE(), REG_EESCAPE);
368 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
384 REQUIRE(!wascaret, REG_BADRPT)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 111 #define BOOST_REQUIRE( P ) BOOST_CHECK_IMPL( (P), BOOST_TEST_STRINGIZE( P ), REQUIRE, CHECK_PRED )
117 #define BOOST_REQUIRE_MESSAGE( P, M ) BOOST_CHECK_IMPL( (P), M, REQUIRE, CHECK_MSG )
141 #define BOOST_REQUIRE_THROW( S, E ) BOOST_CHECK_THROW_IMPL( S, E, true, "exception ", REQUIRE )
147 #define BOOST_REQUIRE_EXCEPTION( S, E, P ) BOOST_CHECK_THROW_IMPL( S, E, P( ex ), "incorrect exception ", REQUIRE )
162 #define BOOST_REQUIRE_NO_THROW( S ) BOOST_CHECK_NO_THROW_IMPL( S, REQUIRE )
171 BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::equal_impl_frwd(), "", REQUIRE, CHECK_EQUAL, (L)(R) )
180 BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::ne_impl(), "", REQUIRE, CHECK_NE, (L)(R) )
189 BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::lt_impl(), "", REQUIRE, CHECK_LT, (L)(R) )
198 BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::le_impl(), "", REQUIRE, CHECK_LE, (L)(R) )
207 BOOST_CHECK_WITH_ARGS_IMPL( ::boost::test_tools::tt_detail::gt_impl(), "", REQUIRE, CHECK_GT, (L)(R)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 195 #define REQUIRE(co, e) (void) ((co) || SETERROR(e))
196 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
197 #define MUSTEAT(c, e) (void) (REQUIRE(MORE() && GETNEXT() == (c), e))
198 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
363 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */
413 REQUIRE(MORE(), REG_EPAREN);
469 REQUIRE(MORE(), REG_EESCAPE);
474 REQUIRE(!MORE() || !isdigit((unsigned char)PEEK()), REG_BADRPT);
490 REQUIRE(!wascaret, REG_BADRPT)
    [all...]
  /external/selinux/checkpolicy/
policy_scan.l 160 require|REQUIRE { return(REQUIRE); }
policy_parse.y 149 %token MODULE VERSION_IDENTIFIER REQUIRE OPTIONAL
906 require_block : REQUIRE '{' require_list '}'
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 125 NEGOTIATE, REQUIRE
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.core.shared/0.20.0/
org.eclipse.tycho.core.shared-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.core.shared/0.18.1/
org.eclipse.tycho.core.shared-0.18.1.jar 
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PolicyChecker.java 279 int require = local
280 polConstExt.get(PolicyConstraintsExtension.REQUIRE).intValue();
283 + "require Index from cert = " + require);
286 if (require != -1) {
287 if ((explicitPolicy == -1) || (require < explicitPolicy)) {
288 explicitPolicy = require;
292 if (require == 0)
293 explicitPolicy = require;
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
PeerConnectionClient.java 457 rtcConfig.rtcpMuxPolicy = PeerConnection.RtcpMuxPolicy.REQUIRE;
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 

Completed in 1385 milliseconds

1 2