HomeSort by relevance Sort by last modified time
    Searched defs:arg (Results 151 - 175 of 783) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestInterfaceNotScriptWrappable.cpp 66 TestInterfaceNotScriptWrappable* arg; local
68 arg = V8TestInterfaceNotScriptWrappable::toImplWithTypeCheck(info.GetIsolate(), info[0]);
70 impl->func(arg);
V8TestInterfaceWillBeGarbageCollected.cpp 72 TestInterfaceWillBeGarbageCollected* arg; local
74 arg = V8TestInterfaceWillBeGarbageCollected::toImplWithTypeCheck(info.GetIsolate(), info[0]);
76 impl->func(arg);
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
MacroExpander.cpp 289 MacroArg &arg = args->back(); local
291 if (arg.empty())
293 arg.push_back(token);
318 MacroArg &arg = args->at(i); local
319 TokenLexer lexer(&arg);
322 arg.clear();
326 arg.push_back(token);
358 const MacroArg &arg = args[iArg]; local
359 if (arg.empty())
364 replacements->insert(replacements->end(), arg.begin(), arg.end())
    [all...]
  /external/chromium_org/third_party/boringssl/src/tool/
client.cc 132 u_long arg = is_non_blocking; local
133 ok = 0 == ioctlsocket(sock, FIOBIO, &arg);
  /external/chromium_org/third_party/icu/source/samples/date/
date.c 68 char *arg; local
80 arg = argv[optInd];
83 if(strcmp(arg, "-v") == 0 || strcmp(arg, "--version") == 0) {
87 else if(strcmp(arg, "-h") == 0 || strcmp(arg, "--help") == 0) {
91 else if(strcmp(arg, "-u") == 0 || strcmp(arg, "--gmt") == 0) {
95 else if(strcmp(arg, "-f") == 0 || strcmp(arg, "--full") == 0)
    [all...]
  /external/chromium_org/third_party/icu/source/samples/ugrep/
ugrep.cpp 175 const char *arg; local
179 arg = argv[optInd];
182 if(strcmp(arg, "-V") == 0 || strcmp(arg, "--version") == 0) {
186 else if(strcmp(arg, "--help") == 0) {
189 else if(strcmp(arg, "-n") == 0 || strcmp(arg, "--line-number") == 0) {
193 else if(strcmp(arg, "--") == 0) {
199 else if(strncmp(arg, "-", strlen("-")) == 0) {
200 printf("ugrep: invalid option -- %s\n", arg+1)
    [all...]
  /external/chromium_org/third_party/icu/source/samples/uresb/
uresb.c 82 const char* arg; local
150 arg = getLongPathname(argv[i]);
152 u_fprintf(out, "uresb: processing file \"%s\" in path \"%s\"\n", arg, resPath);
153 bundle = ures_open(resPath, arg, &status);
155 u_fprintf(out, "%s\n", arg);
  /external/chromium_org/third_party/libjpeg_turbo/
cjpeg.c 220 char * arg; local
241 arg = argv[argn];
242 if (*arg != '-') {
250 arg++; /* advance past switch marker character */
252 if (keymatch(arg, "arithmetic", 1)) {
262 } else if (keymatch(arg, "baseline", 1)) {
266 } else if (keymatch(arg, "dct", 2)) {
279 } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
294 } else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2))
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlcatalog.c 99 char arg[400]; local
131 memset(arg, 0, sizeof(arg));
137 arg[i++] = *cur++;
139 arg[i] = 0;
146 cur = arg;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 170 unsigned int arg; local
183 arg = r300FPTranslateRGBSwizzle(inst->RGB.Arg[j].Source, inst->RGB.Arg[j].Swizzle);
184 arg |= inst->RGB.Arg[j].Abs << 6;
185 arg |= inst->RGB.Arg[j].Negate << 5;
186 code->alu.inst[ip].rgb_inst |= arg << (7*j);
188 arg = r300FPTranslateAlphaSwizzle(inst->Alpha.Arg[j].Source, inst->Alpha.Arg[j].Swizzle)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
appledri.h 84 int arg; member in struct:__anon18907
  /external/chromium_org/third_party/opus/src/celt/
mathops.h 243 opus_val32 arg; local
244 arg = celt_div(SHL32(EXTEND32(y),15),x);
245 if (arg >= 32767)
246 arg = 32767;
247 return SHR16(celt_atan01(EXTRACT16(arg)),1);
249 opus_val32 arg; local
250 arg = celt_div(SHL32(EXTEND32(x),15),y);
251 if (arg >= 32767)
252 arg = 32767;
253 return 25736-SHR16(celt_atan01(EXTRACT16(arg)),1)
    [all...]
  /external/chromium_org/third_party/re2/re2/
bitstate.cc 27 int arg; member in struct:re2::Job
44 void Push(int id, const char* p, int arg);
119 // Push the triple (id, p, arg) onto the stack, growing it if necessary.
120 void BitState::Push(int id, const char* p, int arg) {
129 // Only check ShouldVisit when arg == 0.
130 // When arg > 0, we are continuing a previous visit.
131 if (arg == 0 && !ShouldVisit(id, p))
137 j->arg = arg;
152 int arg = job_[njob_].arg local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
flags.cc 139 void FlagList::SplitArgument(const char* arg,
147 if (*arg == '-') {
149 arg++; // remove 1st '-'
150 if (*arg == '-')
151 arg++; // remove 2nd '-'
152 if (arg[0] == 'n' && arg[1] == 'o') {
153 arg += 2; // remove "no"
156 *name = arg;
159 while (*arg != '\0' && *arg != '='
182 const char* arg = argv[i++]; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
valparam.h 257 * \param arg #yasm_dir_help.arg argument
261 void *data, uintptr_t arg);
271 /** Argument to pass in as the arg parameter to #yasm_dir_help.helper().
273 uintptr_t arg; member in struct:yasm_dir_help
303 * It does not look at the vp; rather, it uses the value of the arg parameter,
309 * \param arg flag to set
314 void *data, uintptr_t arg);
317 * It does not look at the vp; rather, it uses the value of the arg parameter,
323 * \param arg flag to O
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UnixAPIChecker.cpp 53 const Expr *arg,
208 const Expr *arg,
222 report->addRange(arg->getSourceRange());
223 bugreporter::trackNullOrUndefValue(N, arg, *report);
243 const Expr *arg = CE->getArg(sizeArg); local
244 SVal argVal = state->getSVal(arg, C.getLocationContext());
251 (void) ReportZeroByteAllocation(C, falseState, arg, fn);
271 const Expr *arg = CE->getArg(i); local
272 SVal argVal = state->getSVal(arg, C.getLocationContext());
281 if (ReportZeroByteAllocation(C, falseState, arg, "calloc")
    [all...]
  /external/clang/test/CodeGenCXX/
visibility-inlines-hidden.cpp 87 typedef B<A> arg; typedef in namespace:test2
91 extern template void foo<arg>();
95 ns::foo<arg>();
  /external/deqp/executor/tools/
xeExtractShaderPrograms.cpp 208 const char* arg = argv[argNdx]; local
210 if (!deStringBeginsWith(arg, "--"))
213 cmdLine.filename = arg;
215 cmdLine.dstPath = arg;
  /external/dhcpcd/
eloop.c 45 void *arg; member in struct:event
53 void *arg; member in struct:timeout
63 add_event(int fd, void (*callback)(void *), void *arg)
71 e->arg = arg;
85 e->arg = arg;
114 const struct timeval *when, void (*callback)(void *), void *arg)
129 if (t->callback == callback && t->arg == arg) {
    [all...]
  /external/e2fsprogs/misc/
util.c 174 char *buf, *token, *next, *p, *arg; local
193 arg = strchr(token, '=');
194 if (arg) {
195 *arg = 0;
196 arg++;
200 arg ? arg : "NONE");
203 journal_device = blkid_get_devname(NULL, arg, NULL);
205 if (arg)
208 arg);
    [all...]
  /external/icu/icu4c/source/samples/date/
date.c 68 char *arg; local
80 arg = argv[optInd];
83 if(strcmp(arg, "-v") == 0 || strcmp(arg, "--version") == 0) {
87 else if(strcmp(arg, "-h") == 0 || strcmp(arg, "--help") == 0) {
91 else if(strcmp(arg, "-u") == 0 || strcmp(arg, "--gmt") == 0) {
95 else if(strcmp(arg, "-f") == 0 || strcmp(arg, "--full") == 0)
    [all...]
  /external/icu/icu4c/source/samples/ugrep/
ugrep.cpp 175 const char *arg; local
179 arg = argv[optInd];
182 if(strcmp(arg, "-V") == 0 || strcmp(arg, "--version") == 0) {
186 else if(strcmp(arg, "--help") == 0) {
189 else if(strcmp(arg, "-n") == 0 || strcmp(arg, "--line-number") == 0) {
193 else if(strcmp(arg, "--") == 0) {
199 else if(strncmp(arg, "-", strlen("-")) == 0) {
200 printf("ugrep: invalid option -- %s\n", arg+1)
    [all...]
  /external/icu/icu4c/source/samples/uresb/
uresb.c 82 const char* arg; local
150 arg = getLongPathname(argv[i]);
152 u_fprintf(out, "uresb: processing file \"%s\" in path \"%s\"\n", arg, resPath);
153 bundle = ures_open(resPath, arg, &status);
155 u_fprintf(out, "%s\n", arg);
  /external/iptables/extensions/
libip6t_DNAT.c 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
52 arg = strdup(orig_arg);
53 if (arg == NULL)
56 start = strchr(arg, '[');
58 start = arg;
60 colon = strchr(arg, ':');
114 if (colon == arg || colon == arg+2) {
115 free(arg);
143 free(arg);
    [all...]
libip6t_SNAT.c 49 char *arg, *start, *end = NULL, *colon = NULL, *dash, *error; local
52 arg = strdup(orig_arg);
53 if (arg == NULL)
56 start = strchr(arg, '[');
58 start = arg;
60 colon = strchr(arg, ':');
114 if (colon == arg || colon == arg+2) {
115 free(arg);
143 free(arg);
    [all...]

Completed in 3559 milliseconds

1 2 3 4 5 67 8 91011>>