Searched defs:argument (Results 51 - 75 of 140) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSelector.cpp422 printf("%*sargument(): %s\n", indent, "", argument().ascii().data());
459 m_pseudoType = parsePseudoType(value(), !argument().isNull() || selectorList());
582 || sel1->argument() != sel2->argument()) {
638 str.append(cs->argument());
866 String argument = m_argument.lower(); local
868 if (argument.isEmpty())
873 if (argument == "odd") {
876 } else if (argument == "even") {
880 size_t n = argument
[all...]
H A DSelectorChecker.cpp844 const AtomicString& argument = selector.argument(); local
845 if (value.isEmpty() || !value.startsWith(argument, false))
847 if (value.length() != argument.length() && value[argument.length()] != '-')
/external/chromium_org/third_party/icu/source/test/iotest/
H A Diotest.cpp209 UChar argument[512]; local
246 tempStr=testCase->getString("argument", errorCode);
247 tempStr.extract(argument, sizeof(argument)/sizeof(argument[0]), errorCode);
258 dbl = atof(u_austrcpy(cBuffer, argument));
263 i8 = (int8_t)uto64(argument);
268 i16 = (int16_t)uto64(argument);
273 i32 = (int32_t)uto64(argument);
278 i64 = uto64(argument);
374 UChar argument[512]; local
577 UChar argument[512]; local
[all...]
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp89 llvm::Constant *argument; local
100 argument = llvm::ConstantExpr::getBitCast(
108 argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
111 CGM.getCXXABI().registerGlobalDtor(CGF, D, function, argument);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc218 static int TracerThread(void* argument) { argument
220 (TracerThreadArgument *)argument;
369 void StopTheWorld(StopTheWorldCallback callback, void *argument) { argument
374 tracer_thread_argument.callback_argument = argument;
/external/icu/icu4c/source/test/iotest/
H A Diotest.cpp209 UChar argument[512]; local
246 tempStr=testCase->getString("argument", errorCode);
247 tempStr.extract(argument, sizeof(argument)/sizeof(argument[0]), errorCode);
258 dbl = atof(u_austrcpy(cBuffer, argument));
263 i8 = (int8_t)uto64(argument);
268 i16 = (int16_t)uto64(argument);
273 i32 = (int32_t)uto64(argument);
278 i64 = uto64(argument);
374 UChar argument[512]; local
577 UChar argument[512]; local
[all...]
/external/libedit/src/
H A Del.h86 int doingarg; /* Are we getting an argument? */
87 int argument; /* Numeric argument */ member in struct:el_state_t
/external/proguard/src/proguard/optimize/peephole/
H A DInstructionSequenceReplacer.java322 * Returns the matched argument for the given pattern argument.
324 private int matchedArgument(Clazz clazz, int argument) argument
327 if (argument == STRING_A_LENGTH)
333 // Otherwise, just return the matched argument.
334 return instructionSequenceMatcher.matchedArgument(argument);
377 int argument)
382 return Boolean.toString((instructionSequenceMatcher.wasConstant(argument) ?
383 ((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))).getValue() :
384 instructionSequenceMatcher.matchedArgument(argument)) !
375 argumentAsString(ProgramClass programClass, int valueType, int argument) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DInspectorFileSystemAgent.cpp93 virtual void handleEvent(Argument argument) OVERRIDE
95 (m_handler.get()->*m_handlingMethod)(argument); variable
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp.h110 token_list_t *argument; member in struct:argument_node
/external/chromium_org/v8/src/arm/
H A Dbuiltins-arm.cc30 // -- sp[0] : last argument
32 // -- sp[4 * (argc - 1)] : first argument (argc == r0)
168 Register argument = r2; local
171 argument, // Result.
180 // -- r2 : argument converted to string
210 __ str(argument, FieldMemOperand(r0, JSValue::kValueOffset));
217 // The argument was not found in the number to string cache. Check
229 __ mov(argument, r0);
243 __ mov(argument, r0);
247 // stack, and jump back to the case where the argument i
[all...]
/external/chromium_org/v8/src/mips/
H A Dbuiltins-mips.cc33 // -- sp[0] : last argument
35 // -- sp[4 * (argc - 1)] : first argument
177 Register argument = a2; local
180 argument, // Result.
189 // -- a2 : argument converted to string
219 __ sw(argument, FieldMemOperand(v0, JSValue::kValueOffset));
226 // The argument was not found in the number to string cache. Check
238 __ mov(argument, a0);
252 __ mov(argument, v0);
256 // stack, and jump back to the case where the argument i
[all...]
/external/chromium_org/v8/src/mips64/
H A Dbuiltins-mips64.cc32 // -- sp[0] : last argument
34 // -- sp[8 * (argc - 1)] : first argument
176 Register argument = a2; local
179 argument, // Result.
188 // -- a2 : argument converted to string
218 __ sd(argument, FieldMemOperand(v0, JSValue::kValueOffset));
225 // The argument was not found in the number to string cache. Check
237 __ mov(argument, a0);
251 __ mov(argument, v0);
255 // stack, and jump back to the case where the argument i
[all...]
/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h147 unsigned argument) {
154 DD.ForbiddenTypeData.Argument = argument;
144 makeForbiddenType(SourceLocation loc, unsigned diagnostic, QualType type, unsigned argument) argument
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_linux.cc120 void *argument) {
118 FlushShadowMemoryCallback( const SuspendedThreadsList &suspended_threads_list, void *argument) argument
/external/guava/guava-tests/test/com/google/common/testing/
H A DNullPointerTesterTest.java55 * Class for testing all permutations of static/non-static one-argument
174 * Class for testing all permutations of nullable/non-nullable two-argument
567 private PrivateClassWithPrivateConstructor(@Nullable Integer argument) {} argument
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.h110 token_list_t *argument; member in struct:argument_node
/external/proguard/src/proguard/classfile/util/
H A DInstructionSequenceMatcher.java142 * Returns whether the specified wildcard argument was a constant from
145 public boolean wasConstant(int argument) argument
147 return (previousConstantFlags & (1 << (argument - X))) != 0;
152 * Returns the value of the specified matched argument (wildcard or not).
154 public int matchedArgument(int argument) argument
156 int argumentIndex = argument - X;
158 argument :
529 // Check the literal argument.
534 // Store the wildcard argument.
541 // Check the previously stored wildcard argument
551 setMatchingArgument(int argumentIndex, int argument) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorOverlay.cpp777 void InspectorOverlay::evaluateInOverlay(const String& method, const String& argument) argument
782 command->pushString(argument);
786 void InspectorOverlay::evaluateInOverlay(const String& method, PassRefPtr<JSONValue> argument) argument
791 command->pushValue(argument);
/external/chromium_org/v8/src/arm64/
H A Dbuiltins-arm64.cc56 // -- sp[0] : last argument
58 // -- sp[4 * (argc - 1)] : first argument (argc == x0)
165 Register argument = x2; local
168 argument, // Result.
177 // -- x2 : argument converted to string
204 __ Str(argument, FieldMemOperand(new_obj, JSValue::kValueOffset));
211 // The argument was not found in the number to string cache. Check
221 __ Mov(argument, arg);
235 __ Mov(argument, x0);
239 // stack, and jump back to the case where the argument i
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/stock/
H A DProxyBuilderTest.java48 private final String argument; field in class:ProxyBuilderTest.ConstructorTakesArguments
51 argument = arg;
64 assertEquals("hello", proxy.argument);
/external/libpng/
H A Dpngwrite.c1725 png_write_image_16bit(png_voidp argument) argument
1728 argument);
1882 png_write_image_8bit(png_voidp argument) argument
1885 argument);
2124 png_image_write_main(png_voidp argument) argument
2127 argument);
2357 "png_image_write_to_stdio: invalid argument");
2424 "png_image_write_to_file: invalid argument");
/external/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp87 uint64_t argument; member in struct:__anon25207
219 uint64_t argument; member in struct:malloc_stack_entry
346 m_entries[m_size].argument = 0;
839 stack_entry->argument = stack_record.argument;
875 stack_entry->argument = 0;
1033 printf ("error: invalid argument (empty cstring)\n");
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc426 // members which have previously been set, and one argument:
809 void AddArgument(const char* argument) { argument
810 args_.insert(args_.end() - 1, posix::StrDup(argument));
988 // by the "test" argument to its address. If the test should be
/external/chromium_org/testing/gtest/src/
H A Dgtest-death-test.cc509 // members which have previously been set, and one argument:
899 void AddArgument(const char* argument) { argument
900 args_.insert(args_.end() - 1, posix::StrDup(argument));
1152 // by the "test" argument to its address. If the test should be

Completed in 686 milliseconds

123456