/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
Notification.cpp | 117 String argument; local 118 if (options.get("body", argument)) 119 notification->setBody(argument); 120 if (options.get("tag", argument)) 121 notification->setTag(argument); 122 if (options.get("lang", argument)) 123 notification->setLang(argument); 124 if (options.get("dir", argument)) 125 notification->setDir(argument); 126 if (options.get("icon", argument)) { [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
kernel.cpp | 31 const std::vector<clover::module::argument> &args) : 34 if (arg.type == module::argument::scalar) 36 else if (arg.type == module::argument::global) 38 else if (arg.type == module::argument::local) 40 else if (arg.type == module::argument::constant) 42 else if (arg.type == module::argument::image2d_rd || 43 arg.type == module::argument::image3d_rd) 45 else if (arg.type == module::argument::image2d_wr || 46 arg.type == module::argument::image3d_wr) 48 else if (arg.type == module::argument::sampler 179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
kernel.cpp | 31 const std::vector<clover::module::argument> &args) : 34 if (arg.type == module::argument::scalar) 36 else if (arg.type == module::argument::global) 38 else if (arg.type == module::argument::local) 40 else if (arg.type == module::argument::constant) 42 else if (arg.type == module::argument::image2d_rd || 43 arg.type == module::argument::image3d_rd) 45 else if (arg.type == module::argument::image2d_wr || 46 arg.type == module::argument::image3d_wr) 48 else if (arg.type == module::argument::sampler 179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/ |
perf_config.c | 32 static int assign_string_if_matches(char const *line, char const *argument, 35 static int assign_long_if_matches(char const *line, char const *argument, 38 static char const *get_value_if_matches(char const *line, char const *argument); 237 char const *argument) 242 /* return NULL if argument name does not match */ 243 if (strncasecmp(line, argument, strlen(argument))) return (NULL); 244 line += strlen(argument); 246 /* there must be an = after argument name */ 342 int assign_string_if_matches(char const *line, char const *argument, [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
code_generator_v8.py | 324 def generate_argument(argument): 325 receiver = 'v8::Handle<v8::Value> %sHandle = %%s;' % argument.name 326 cpp_to_js_conversion = self.generate_cpp_to_js_conversion(argument.data_type, argument.name, receiver, 'isolate', creation_context='v8::Handle<v8::Object>()') 328 'name': argument.name, 333 def argument_declaration(argument): 334 return '%s %s' % (cpp_type(argument.data_type, 'raw'), argument.name) 342 arguments = [generate_argument(argument) for argument in operation.arguments [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-regexp.jar | |
/external/chromium_org/third_party/angle_dx11/src/compiler/depgraph/ |
DependencyGraph.cpp | 29 TGraphArgument* argument = new TGraphArgument(intermFunctionCall, argumentNumber); local 30 mAllNodes.push_back(argument); 31 return argument;
|
/external/chromium/base/debug/ |
debug_on_start_win.h | 6 // line argument. When the command line argument is detected, it invokes the 39 // Looks at the command line for kDebugOnStart argument. If found, it invokes 43 // Returns true if the 'argument' is present in the 'command_line'. It does 45 static bool FindArgument(wchar_t* command_line, const char* argument);
|
/external/chromium_org/base/debug/ |
debug_on_start_win.h | 6 // line argument. When the command line argument is detected, it invokes the 38 // Looks at the command line for kDebugOnStart argument. If found, it invokes 42 // Returns true if the 'argument' is present in the 'command_line'. It does 44 static bool FindArgument(wchar_t* command_line, const char* argument);
|
/external/chromium_org/base/test/ |
test_process_killer_win.cc | 133 explicit ArgumentFilter(const string16& argument) 134 : argument_to_find_(argument) {} 162 const string16& argument) { 163 ArgumentFilter argument_filter(argument);
|
/external/chromium_org/chrome_frame/ |
chrome_launcher.h | 39 // Returns whether a given argument is considered a valid flag. Only accepts 43 bool IsValidArgument(const std::wstring& argument);
|
/external/elfutils/libcpu/ |
i386_parse.h | 79 struct argument *arg;
|
/external/libmtp/examples/ |
connect.c | 54 split_arg(char * argument, char ** part1, char ** part2) 60 sepp = argument + strcspn(argument, ","); 62 *part1 = argument;
|
/external/icu4c/test/iotest/ |
iotest.cpp | 209 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/chromium_org/tools/gyp/pylib/gyp/ |
common_test.py | 54 def assertFlavor(self, expected, argument, param): 55 sys.platform = argument
|
/external/chromium_org/tools/win/split_link/ |
split_link.cc | 55 static void ArgvQuote(const std::wstring& argument, 58 if (!argument.empty() && 59 argument.find_first_of(L" \t\n\v\"") == argument.npos) { 60 command_line->append(argument); 63 for (std::wstring::const_iterator it = argument.begin();; ++it) { 65 while (it != argument.end() && *it == L'\\') { 69 if (it == argument.end()) {
|
/external/chromium_org/v8/test/webkit/ |
dfg-to-string-toString-in-string.js | 34 var argument = new String("hello"); 38 argument = new String("hello"); 39 argument.toString = function() { return 42; } 42 shouldBe("\"\" + foo(argument)", expected);
|
dfg-to-string-valueOf-in-string.js | 34 var argument = new String("hello"); 37 argument = new String("hello"); 38 argument.valueOf = function() { return 42; } 40 shouldBe("\"\" + foo(argument)", "\"hello\"");
|
/external/e2fsprogs/intl/ |
printf-args.h | 1 /* Decomposed printf argument list. 39 /* Argument types */ 77 /* Polymorphic argument */ 119 argument; typedef in typeref:struct:__anon19237 124 argument *arg;
|
/external/easymock/src/org/easymock/ |
AbstractMatcher.java | 29 * on <code>EasyMock</code>, there are per-argument matchers available. For more
38 * Checks whether an expected argument matches an actual argument; the method
44 * the expected argument.
46 * the actual argument.
54 * Converts an argument to a String, used by
57 * @param argument
58 * the argument to convert to a String.
59 * @return a <code>String</code> representation of the argument.
61 protected String argumentToString(Object argument) {
[all...] |
/external/mockito/src/org/mockito/internal/matchers/ |
LocalizedMatcher.java | 59 public void captureFrom(Object argument) {
61 ((CapturesArguments) actualMatcher).captureFrom(argument);
|
/external/chromium_org/v8/test/mjsunit/ |
stack-traces-2.js | 71 testTraceNativeConversion(String); // Does ToString on argument. 72 testTraceNativeConversion(Number); // Does ToNumber on argument. 73 testTraceNativeConversion(RegExp); // Does ToString on argument. 75 testTraceNativeConstructor(String); // Does ToString on argument. 76 testTraceNativeConstructor(Number); // Does ToNumber on argument. 77 testTraceNativeConstructor(RegExp); // Does ToString on argument. 78 testTraceNativeConstructor(Date); // Does ToNumber on argument.
|
/external/v8/test/mjsunit/ |
stack-traces-2.js | 71 testTraceNativeConversion(String); // Does ToString on argument. 72 testTraceNativeConversion(Number); // Does ToNumber on argument. 73 testTraceNativeConversion(RegExp); // Does ToString on argument. 75 testTraceNativeConstructor(String); // Does ToString on argument. 76 testTraceNativeConstructor(Number); // Does ToNumber on argument. 77 testTraceNativeConstructor(RegExp); // Does ToString on argument. 78 testTraceNativeConstructor(Date); // Does ToNumber on argument.
|
/external/chromium_org/third_party/jinja2/ |
sandbox.py | 297 def getitem(self, obj, argument): 300 return obj[argument] 302 if isinstance(argument, basestring): 304 attr = str(argument) 313 if self.is_safe_attribute(obj, argument, value): 315 return self.unsafe_undefined(obj, argument) 316 return self.undefined(obj=obj, name=argument) 345 # the double prefixes are to avoid double keyword argument
|
/external/chromium_org/chrome/browser/extensions/api/system_private/ |
system_private_api.cc | 50 // Dispatches an extension event with |argument| 51 void DispatchEvent(const std::string& event_name, base::Value* argument) { 53 if (argument) { 54 list_args->Append(argument);
|