/external/mesa3d/src/glsl/ |
ir_print_visitor.cpp | 37 deconsted->accept(&v); 178 inst->accept(this); 195 inst->accept(this); 213 sig->accept(this); 231 ir->operands[i]->accept(this); 245 ir->sampler->accept(this); 249 ir->coordinate->accept(this); 254 ir->offset->accept(this); 264 ir->projector->accept(this); 270 ir->shadow_comparitor->accept(this) [all...] |
/external/curl/tests/data/ |
test27 | 42 Accept: */*
46 Accept: */*
51 Accept: */*
|
test1117 | 15 Accept-Ranges: bytes
25 Accept-Ranges: bytes
56 Accept-Ranges: bytes
63 Accept-Ranges: bytes
78 Accept: */*
83 Accept: */*
|
test1240 | 40 Accept: */*
44 Accept: */*
|
test2049 | 47 Accept: */*
51 Accept: */*
55 Accept: */*
59 Accept: */*
|
test528 | 49 Accept: */*
53 Accept: */*
57 Accept: */*
61 Accept: */*
|
/external/clang/test/Sema/ |
typedef-variable-type.c | 3 // Make sure we accept a single typedef 6 // And make sure we accept identical redefinitions in system headers
|
/external/valgrind/memcheck/tests/ |
null_socket.c | 11 if (-1 != accept(99, NULL, 0)) 12 printf("accept succeeded?\n");
|
/libcore/luni/src/test/java/libcore/java/util/ |
DoubleSummaryStatisticsTest.java | 37 dss.accept(100.5d); 40 dss.accept(45.0d); 65 dss1.accept(Double.NaN); 73 dss1.accept(Double.NaN); 81 dss1.accept(Double.NaN); 89 dss1.accept(Double.NaN); 96 dss.accept(value); 104 dss.accept(value);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
strex-bad-t.l | 3 [^:]*:8: Error: instruction does not accept this addressing mode -- `strexh r0,r1,\[r2\],#0x04' 4 [^:]*:9: Error: instruction does not accept this addressing mode -- `strexh r0,r1,\[r2,#\+0x00\]!' 5 [^:]*:10: Error: instruction does not accept this addressing mode -- `strexh r0,r1,\[r2,r3\]' 7 [^:]*:12: Error: instruction does not accept this addressing mode -- `strexh r0,r1,\[r2,#-0x04\]' 14 [^:]*:22: Error: instruction does not accept this addressing mode -- `strexb r0,r1,\[r2\],#0x04' 15 [^:]*:23: Error: instruction does not accept this addressing mode -- `strexb r0,r1,\[r2,#\+0x00\]!' 16 [^:]*:24: Error: instruction does not accept this addressing mode -- `strexb r0,r1,\[r2,r3\]' 18 [^:]*:26: Error: instruction does not accept this addressing mode -- `strexb r0,r1,\[r2,#-0x04\]'
|
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
accept.c | 2 Implement the accept API.
19 Worker routine for ::accept and ::AcceptNB
68 // Attempt to accept a new network connection
100 Accept a network connection.
102 The accept routine waits for a network connection to the socket.
106 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/accept.html">POSIX</a>
117 @return The accept routine returns zero if successful and -1 when an error occurs.
122 accept (
function 129 // Wait for the accept call to complete
136 Non blocking version of ::accept. [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
AcceptParser.java | 33 * Parser for Accept header. 45 * Creates a new instance of Accept Parser 46 * @param accept the header to parse 48 public AcceptParser(String accept) { 49 super(accept); 61 * parse the Accept String header 72 headerName(TokenTypes.ACCEPT); 74 Accept accept = new Accept(); local [all...] |
/external/clang/test/SemaCXX/ |
PR8385.cpp | 4 // currently rather poor (we even accept things like "template struct {}").
|
/external/guava/guava-tests/test/com/google/common/io/ |
PatternFilenameFilterTest.java | 44 assertTrue(filter.accept(dir, "a")); 45 assertTrue(filter.accept(dir, "aaaa")); 46 assertFalse(filter.accept(dir, "b")); 49 assertTrue(filter.accept(null, "a"));
|
/external/iptables/extensions/ |
libxt_AUDIT.t | 2 -j AUDIT --type accept;=;OK
|
/external/llvm/utils/lit/tests/Inputs/shtest-format/ |
argv0.txt | 4 # '['. Otherwise it will refuse to accept the trailing closing bracket.
|
/external/nist-sip/java/javax/sip/header/ |
AcceptLanguageHeader.java | 7 String NAME = "Accept-Language";
|
/external/syslinux/com32/lib/ |
strspn.c | 45 size_t strspn(const char *s, const char *accept) 47 return strxspn(s, accept, 0); 55 char *strpbrk(const char *s, const char *accept) 57 const char *ss = s + strxspn(s, accept, 1);
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AcceptEncoding.java | 36 * Accept-Encoding SIP (HTTP) Header. 47 * The Accept-Encoding request-header field is similar to Accept, but 52 * Accept-Encoding = "Accept-Encoding" ":" 60 * Accept-Encoding: compress, gzip 61 * Accept-Encoding: 62 * Accept-Encoding: * 63 * Accept-Encoding: compress;q=0.5, gzip;q=1.0 64 * Accept-Encoding: gzip;q=1.0, identity; q=0.5, *;q= [all...] |
/external/selinux/libsemanage/tests/ |
nc_sort_unsorted | 2 pre :PREROUTING ACCEPT [0:0] 3 pre :INPUT ACCEPT [0:0] 4 pre :FORWARD ACCEPT [0:0] 5 pre :OUTPUT ACCEPT [0:0] 6 pre :POSTROUTING ACCEPT [0:0]
|
/prebuilts/go/darwin-x86/src/net/ |
sys_cloexec.go | 5 // This file implements sysSocket and accept for platforms that do not 37 // Wrapper around the accept system call that marks the returned file 39 func accept(s int) (int, syscall.Sockaddr, error) { func 41 // It is probably okay to hold the lock across syscall.Accept 50 return -1, nil, os.NewSyscallError("accept", err)
|
/prebuilts/go/linux-x86/src/net/ |
sys_cloexec.go | 5 // This file implements sysSocket and accept for platforms that do not 37 // Wrapper around the accept system call that marks the returned file 39 func accept(s int) (int, syscall.Sockaddr, error) { func 41 // It is probably okay to hold the lock across syscall.Accept 50 return -1, nil, os.NewSyscallError("accept", err)
|
/external/vulkan-validation-layers/libs/glm/detail/ |
func_trigonometric.inl | 42 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'radians' only accept floating-point input"); 56 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'degrees' only accept floating-point input"); 70 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'sin' only accept floating-point input"); 81 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'cos' only accept floating-point input"); 95 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'tan' only accept floating-point input"); 109 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asin' only accept floating-point input"); 123 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acos' only accept floating-point input"); 138 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'atan' only accept floating-point input"); 151 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'atan' only accept floating-point input"); 165 GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'sinh' only accept floating-point input") [all...] |
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/ |
ExpressionVisitor.java | 98 lambdaCtx.args.accept(this); 99 return prev.lambdaExpr(lambdaCtx.expression().accept(this), callbackModel); 167 return mModel.bindingExpr(ctx.expression().accept(this)); 183 return ctx.children.get(1).accept(this); 196 return mModel.field(ctx.expression().accept(this), 213 return mModel.methodReference(ctx.expression().accept(this), 225 final Expr left = ctx.left.accept(this); 227 ctx.right.accept(this), left); 276 return mModel.comparison(ctx.op.getText(), ctx.left.accept(this), ctx.right.accept(this)) [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
Http11.h | 49 /// Accept Request Header
50 /// The Accept request-header field can be used to specify certain media types which are
51 /// acceptable for the response. Accept headers can be used to indicate that the request
55 #define HTTP_HEADER_ACCEPT "Accept"
59 /// Accept-Charset Request Header
60 /// The Accept-Charset request-header field can be used to indicate what character sets
65 #define HTTP_HEADER_ACCEPT_CHARSET "Accept-Charset"
68 /// Accept-Language Request Header
69 /// The Accept-Language request-header field is similar to Accept,
[all...] |