/external/linux-tools-perf/src/tools/perf/ |
builtin-script.c | 20 static char const *script_name; variable 707 script_name = strdup(script); [all...] |
/external/v8/src/ |
allocation-tracker.cc | 111 script_name(""), 277 info->script_name = names_->GetName(name);
|
compiler.cc | 624 String* script_name = script->name()->IsString() local 629 CodeCreateEvent(log_tag, *code, *shared, info, script_name, 1057 Handle<String> script_name = script->name()->IsString() local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_install.py | 40 # script_name need not exist, it just need to be initialized 41 dist.script_name = os.path.join(builddir, "setup.py")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_install.py | 40 # script_name need not exist, it just need to be initialized 41 dist.script_name = os.path.join(builddir, "setup.py")
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/ |
do-it-yourself-framework.txt | 18 Explain SCRIPT_NAME/PATH_INFO better 50 specifically instead of just one path you two: ``SCRIPT_NAME`` (how 173 WSGI puts the requested path into two variables: ``SCRIPT_NAME`` and 174 ``PATH_INFO``. ``SCRIPT_NAME`` is everything that was used up 210 # Now fix up SCRIPT_NAME and PATH_INFO... 211 environ['SCRIPT_NAME'] += '/' + next
|
url-parsing-with-wsgi.txt | 45 in particular relate to URLs -- ``SCRIPT_NAME`` and ``PATH_INFO`` -- 118 what's left to parse. ``SCRIPT_NAME`` represents where we are *now*; 143 It appends this to ``SCRIPT_NAME``, and strips it off ``PATH_INFO``
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
request.py | 329 script_name = environ_decoder('SCRIPT_NAME', '', encattr='url_encoding') variable in class:BaseRequest 333 uscript_name = script_name 467 The URL including SCRIPT_NAME (no PATH_INFO or query string) 469 bscript_name = bytes_(self.script_name, self.url_encoding) 475 The URL including SCRIPT_NAME and PATH_INFO, but not QUERY_STRING 485 bscript = bytes_(self.script_name, self.url_encoding) 516 URL with only SCRIPT_NAME 529 SCRIPT_NAME, and returning the popped segment. Returns None if 551 self.script_name += slashes + [all...] |
client.py | 73 path = (url_quote(environ.get('SCRIPT_NAME', ''))
|
response.py | [all...] |
/frameworks/compile/libbcc/gdb_plugin/ |
android-commands.py | 628 def _awk_script_path(self, script_name): 629 if os.path.exists(script_name): 630 return script_name 635 path_in_root = os.path.join(script_root, script_name) 640 + str(script_name) + " in " + path_in_root)
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
url.py | 76 with_path_info=True, script_name=None, 80 with_path_info=with_path_info, script_name=script_name,
|
translogger.py | 54 req_uri = quote(environ.get('SCRIPT_NAME', '')
|
wsgiwrappers.py | 132 script_name = environ_getter('SCRIPT_NAME') variable in class:WSGIRequest 283 msg += '\nscheme=%s, host=%s, script_name=%s, path_info=%s,' % \ 284 (pf(self.scheme), pf(self.host), pf(self.script_name),
|
fixture.py | [all...] |
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/ |
wiki-example.txt | 276 URLs, PATH_INFO, and SCRIPT_NAME 293 * req.script_name: ``/wiki`` 297 One non-obvious part is ``req.script_name`` and ``req.path_info``. 298 These correspond to the CGI environmental variables ``SCRIPT_NAME`` 299 and ``PATH_INFO``. ``req.script_name`` points to the *application*. 320 (SCRIPT_NAME) like ``req.relative_url('some/other/page', True)`` which
|
news.txt | 276 Unicode for ``request.path_info`` and ``request.script_name`` under Python 293 with raw SCRIPT_NAME and PATH_INFO values, which caused nonsensical 298 decode the raw WSGI PATH_INFO and SCRIPT_NAME variables when the 299 ``request.path_info`` and ``request.script_name`` APIs are used. 303 SCRIPT_NAME from its WSGI-encoded values. If ``webob.url_encoding`` is not 306 PATH_INFO and SCRIPT_NAME. 350 * For backwards compatibility purposes, switch ``req.script_name`` and 353 of SCRIPT_NAME and PATH_INFO. 365 * ``req.script_name`` and ``path_info`` now contain text, not bytes. 682 * Fix handling of WSGI environs with missing ``SCRIPT_NAME`` [all...] |
do-it-yourself.txt | 32 The ``environ`` argument is a dictionary with values like the environment in a CGI request. The header ``Host:``, for instance, goes in ``environ['HTTP_HOST']``. The path is in ``environ['SCRIPT_NAME']`` (which is the path leading *up to* the application), and ``environ['PATH_INFO']`` (the remaining path that the application should interpret). 461 You can use hard-coded links in your HTML, but this can have problems. Relative links are hard to manage, and absolute links presume that your application lives at a particular location. WSGI gives a variable ``SCRIPT_NAME``, which is the portion of the path that led up to this application. If you are writing a blog application, for instance, someone might want to install it at ``/blog/``, and then SCRIPT_NAME would be ``"/blog"``. We should generate links with that in mind. 463 The base URL using SCRIPT_NAME is ``req.application_url``. So, if we have access to the request we can make a URL. But what if we don't have access?
|
/ndk/tests/ |
run-tests.sh | 347 local SCRIPT_NAME="`basename $SCRIPT`" 367 echo "Awk script: $SCRIPT_NAME: passed $INPUT_NAME" 375 echo "Awk script: $SCRIPT_NAME: $INPUT_NAME FAILED!!" 383 local SCRIPT_NAME="`basename \"$DIR\"`" 384 local SCRIPT="$ROOTDIR/build/awk/$SCRIPT_NAME.awk" 388 echo "Awk script: $SCRIPT_NAME: Missing script: $SCRIPT" 391 for INPUT in `ls "$PROGDIR"/awk/$SCRIPT_NAME/*.in`; do 394 echo "Awk script: $SCRIPT_NAME: Missing awk output file: $OUTPUT" [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/guide/ |
testing.rst | 71 If defined, wsgi.url_scheme, HTTP_HOST and SCRIPT_NAME will be filled in
|
/hardware/ti/omap4xxx/test/CameraHal/ |
camera_test_script.cpp | 83 extern char script_name[]; 1067 strcpy(script_name,config); 1073 printf("\n SCRIPT : <%s> is currently being executed \n",script_name); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
simple_server.py | 59 env['SCRIPT_NAME'] = ''
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
simple_server.py | 59 env['SCRIPT_NAME'] = ''
|
/external/lldb/source/Core/ |
Debugger.cpp | [all...] |
/frameworks/compile/slang/ |
README.rst | 105 The ScriptC_[SCRIPT_NAME].java has to be packaged so that Java 110 for outputting ScriptC_[SCRIPT_NAME].java.
|