HomeSort by relevance Sort by last modified time
    Searched refs:paste (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/mesa3d/src/glsl/glcpp/tests/
072-token-pasting-same-line.c 1 #define paste(x) success_ ## x macro
2 paste(1) paste(2) paste(3)
059-token-pasting-integer.c 1 #define paste(x,y) x ## y macro
2 paste(1,2)
3 paste(1,000)
4 paste(identifier,2)
058-token-pasting-empty-arguments.c 1 #define paste(x,y) x ## y macro
2 paste(a,b)
3 paste(a,)
4 paste(,b)
5 paste(,)
040-token-pasting.c 1 #define paste(a,b) a ## b macro
2 paste(one , token)
  /external/chromium-trace/catapult/third_party/Paste/paste/evalexception/
__init__.py 1 # (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
6 from paste.evalexception.middleware import EvalException
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_proxy.py 1 from paste import proxy
2 from paste.fixture import TestApp
test_response.py 1 from paste.response import *
test_gzipper.py 1 from paste.fixture import TestApp
2 from paste.gzipper import middleware
test_profilemiddleware.py 1 from paste.fixture import *
3 from paste.debug.profile import *
test_fixture.py 1 from paste.debug.debugapp import SimpleApplication
2 from paste.fixture import TestApp
test_request_form.py 3 from paste.request import *
4 from paste.util.multidict import MultiDict
10 assert e['paste.parsed_querystring'] == (
31 assert e['paste.parsed_formvars'] == (
test_cgitb_catcher.py 1 from paste.fixture import *
2 from paste.cgitb_catcher import CgitbMiddleware
3 from paste import lint
test_request.py 2 # This module is part of the Python Paste Project and is released under
4 from paste.fixture import *
5 from paste.request import *
6 from paste.wsgiwrappers import WSGIRequest
test_import_string.py 1 from paste.util.import_string import *
test_cgiapp.py 4 from paste.cgiapp import CGIApplication, CGIError
5 from paste.fixture import *
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
cas.py 2 # This module is part of the Python Paste Project and is released under
22 from paste.request import construct_url
23 from paste.httpexceptions import HTTPSeeOther, HTTPForbidden
95 from paste.wsgilib import dump_environ
96 from paste.httpserver import serve
97 from paste.httpexceptions import *
basic.py 2 # This module is part of the Python Paste Project and is released under
13 >>> from paste.wsgilib import dump_environ
14 >>> from paste.httpserver import serve
15 >>> # from paste.auth.basic import AuthBasicHandler
24 from paste.httpexceptions import HTTPUnauthorized
25 from paste.httpheaders import *
108 use = egg:Paste#auth_basic
113 from paste.util.import_string import eval_import
  /external/chromium-trace/catapult/third_party/Paste/
regen-docs 8 scp -r _build/* ianb@webwareforpython.org:/home/paste/htdocs/
  /external/chromium-trace/catapult/third_party/Paste/tests/urlparser_data/hook/
__init__.py 1 from paste import request
  /external/chromium-trace/catapult/third_party/Paste/tests/urlparser_data/not_found/user/
__init__.py 1 from paste import request
4 urlparser = environ['paste.urlparser.not_found_parser']
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
watchthreads.py 2 Watches the key ``paste.httpserver.thread_pool`` to see how many
11 from paste import httpexceptions
12 from paste.request import construct_url, parse_formvars
13 from paste.util.template import HTMLTemplate, bunch
175 Application that watches the threads in ``paste.httpserver``,
189 if 'paste.httpserver.thread_pool' not in environ:
191 return ['You must use the threaded Paste HTTP server to use this application']
204 thread_pool = environ['paste.httpserver.thread_pool']
247 thread_pool = environ['paste.httpserver.thread_pool']
275 hide_keys = ['paste.httpserver.thread_pool'
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/tests/test_auth/
test_auth_cookie.py 2 # This module is part of the Python Paste Project and is released under
8 from paste.auth import cookie
9 from paste.wsgilib import raw_interactive, dump_environ
10 from paste.response import header_value
11 from paste.httpexceptions import *
15 save = environ['paste.auth.cookie'].append
test_auth_digest.py 2 # This module is part of the Python Paste Project and is released under
5 from paste.auth.digest import *
6 from paste.wsgilib import raw_interactive
7 from paste.httpexceptions import *
8 from paste.httpheaders import AUTHORIZATION, WWW_AUTHENTICATE, REMOTE_USER
65 from paste.debug.testserver import serve
  /external/chromium-trace/catapult/third_party/Paste/paste/cowbell/
__init__.py 4 from paste.fileapp import FileApp
5 from paste.response import header_value, remove_header
101 from paste.debug.debugapp import SimpleApplication
103 from paste.httpserver import serve
  /external/chromium-trace/catapult/third_party/Paste/tests/test_exceptions/
test_error_middleware.py 1 from paste.fixture import *
2 from paste.exceptions.errormiddleware import ErrorMiddleware
3 from paste import lint
4 from paste.util.quoting import strip_html
21 The fixture sets paste.throw_errors, which suppresses exactly what
33 if 'paste.throw_errors' in environ:
34 del environ['paste.throw_errors']
81 assert 'paste.lint' in res
82 assert 'paste.exceptions.errormiddleware' in res

Completed in 265 milliseconds

1 2 3 4 5 6 7 8