HomeSort by relevance Sort by last modified time
    Searched refs:setup (Results 26 - 50 of 1014) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium-trace/trace-viewer/third_party/closure_linter/
setup.py 18 from setuptools import setup namespace
20 from distutils.core import setup namespace
22 setup(name='closure_linter',
  /external/chromium_org/cloud_print/service/win/
service_ipc_unittest.cc 14 SetupListener setup(GetCurrentUserName());
15 ASSERT_FALSE(setup.WaitResponce(base::TimeDelta::FromSeconds(3)));
21 SetupListener setup(GetCurrentUserName());
23 ASSERT_TRUE(setup.WaitResponce(base::TimeDelta::FromSeconds(30)));
24 EXPECT_EQ(setup.user_data_dir(), temp_dir.path());
25 EXPECT_EQ(setup.user_name(), GetCurrentUserName());
33 SetupListener setup(GetCurrentUserName());
34 ASSERT_TRUE(setup.WaitResponce(base::TimeDelta::FromSeconds(30)));
35 EXPECT_EQ(setup.user_data_dir(), temp_dir.path());
36 EXPECT_EQ(setup.user_name(), GetCurrentUserName())
    [all...]
  /external/chromium_org/third_party/closure_linter/
setup.py 18 from setuptools import setup namespace
20 from distutils.core import setup namespace
22 setup(name='closure_linter',
  /external/chromium_org/tools/gn/
template_unittest.cc 10 TestWithScope setup; local
22 input.parsed()->Execute(setup.scope(), &err);
25 EXPECT_EQ("lala\n42\n", setup.print_output());
29 TestWithScope setup; local
40 input.parsed()->Execute(setup.scope(), &err);
45 TestWithScope setup; local
56 input.parsed()->Execute(setup.scope(), &err);
61 TestWithScope setup; local
74 input.parsed()->Execute(setup.scope(), &err);
83 TestWithScope setup; local
    [all...]
ninja_action_target_writer_unittest.cc 14 TestWithScope setup; local
15 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
16 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
24 NinjaActionTargetWriter writer(&target, setup.toolchain(), out);
36 TestWithScope setup; local
37 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
38 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
41 NinjaActionTargetWriter writer(&target, setup.toolchain(), out);
47 FileTemplate args_template(setup.settings(), args);
64 TestWithScope setup; local
131 TestWithScope setup; local
250 TestWithScope setup; local
    [all...]
parse_tree_unittest.cc 12 TestWithScope setup; local
29 Value result = accessor.Execute(setup.scope(), &err);
35 setup.scope()->SetValue("a",
36 Value(NULL, scoped_ptr<Scope>(new Scope(setup.scope()))), NULL);
37 result = accessor.Execute(setup.scope(), &err);
44 setup.scope()->GetMutableValue("a", false)->scope_value()->SetValue(
46 result = accessor.Execute(setup.scope(), &err);
53 TestWithScope setup; local
65 input_all_used.parsed()->Execute(setup.scope(), &err);
77 input_unused.parsed()->Execute(setup.scope(), &err)
    [all...]
scope_unittest.cc 27 TestWithScope setup; local
38 setup.scope()->SetValue("v", old_value, &assignment);
40 setup.scope()->SetValue(private_var_name, old_value, &assignment);
44 Scope new_scope(setup.settings());
49 EXPECT_FALSE(setup.scope()->NonRecursiveMergeTo(
57 Scope new_scope(setup.settings());
64 EXPECT_TRUE(setup.scope()->NonRecursiveMergeTo(
75 Scope new_scope(setup.settings());
82 EXPECT_TRUE(setup.scope()->NonRecursiveMergeTo(
89 Scope new_scope(setup.settings())
141 TestWithScope setup; local
176 TestWithScope setup; local
230 TestWithScope setup; local
    [all...]
ninja_binary_target_writer_unittest.cc 12 TestWithScope setup; local
13 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
14 setup.settings()->set_target_os(Settings::WIN);
16 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
29 NinjaBinaryTargetWriter writer(&target, setup.toolchain(), out);
56 Target shlib_target(setup.settings(), Label(SourceDir("//foo/"), "shlib"));
63 NinjaBinaryTargetWriter writer(&shlib_target, setup.toolchain(), out);
99 Target stlib_target(setup.settings(), Label(SourceDir("//foo/"), "stlib"));
106 NinjaBinaryTargetWriter writer(&stlib_target, setup.toolchain(), out);
136 TestWithScope setup; local
182 TestWithScope setup; local
    [all...]
ninja_copy_target_writer_unittest.cc 14 TestWithScope setup; local
15 setup.build_settings()->SetBuildDir(SourceDir("//out/Debug/"));
16 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"));
27 setup.settings()->set_target_os(Settings::LINUX);
30 NinjaCopyTargetWriter writer(&target, setup.toolchain(), out);
47 setup.settings()->set_target_os(Settings::WIN);
50 NinjaCopyTargetWriter writer(&target, setup.toolchain(), out);
commands.cc 9 #include "tools/gn/setup.h"
51 Setup* setup = new Setup; local
54 if (!setup->DoSetup("//out/Default/"))
58 if (!setup->Run())
62 Label default_toolchain = setup->loader()->default_toolchain_label();
66 setup->build_settings().root_path()),
73 const Item* item = setup->builder()->GetItem(label);
functions_unittest.cc 12 TestWithScope setup; local
22 Value result = functions::RunDefined(setup.scope(), &function_call,
29 setup.scope()->SetValue(kDef,
30 Value(NULL, scoped_ptr<Scope>(new Scope(setup.scope()))),
38 result = functions::RunDefined(setup.scope(), &function_call,
51 result = functions::RunDefined(setup.scope(), &function_call,
  /external/chromium_org/testing/
multiprocess_func_list.cc 16 ProcessFunctions() : main(NULL), setup(NULL) {}
17 ProcessFunctions(TestMainFunctionPtr main, SetupFunctionPtr setup)
19 setup(setup) {
22 SetupFunctionPtr setup; member in struct:multi_process_function_list::__anon14838::ProcessFunctions
48 if (process_functions.setup)
49 (*process_functions.setup)();
  /external/chromium_org/third_party/libevent/test/
test.sh 3 setup () { function
54 setup
60 setup
66 setup
72 setup
78 setup
84 setup
  /external/chromium_org/printing/
page_setup_unittest.cc 38 printing::PageSetup setup; local
39 setup.SetRequestedMargins(margins);
40 setup.Init(page_size, printable_area, kTextHeight);
72 EXPECT_EQ(page_size, setup.physical_size()) << seed << " " <<
75 EXPECT_EQ(overlay_area, setup.overlay_area()) << seed << " " <<
78 EXPECT_EQ(content_area, setup.content_area()) << seed << " " <<
82 EXPECT_EQ(effective_margins.header, setup.effective_margins().header) <<
85 EXPECT_EQ(effective_margins.footer, setup.effective_margins().footer) <<
88 EXPECT_EQ(effective_margins.left, setup.effective_margins().left) << seed <<
91 EXPECT_EQ(effective_margins.top, setup.effective_margins().top) << seed <
118 printing::PageSetup setup; local
180 printing::PageSetup setup; local
212 printing::PageSetup setup; local
    [all...]
  /cts/suite/audio_quality/test/
TaskCaseCommon.h 28 * Create TaskCase with setup and action as children
29 * No need to destroy setup and action
31 inline TaskCase* getTaskCase(TaskGeneric*& setup, TaskGeneric*& action)
35 setup = factory.createTask(TaskGeneric::ETaskSetup);
36 taskCase->addChild(setup);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_context.h 30 * The setup code is concerned with point/line/triangle setup and
62 * Point/line/triangle setup context.
144 } setup; member in struct:lp_setup_context
161 void lp_setup_choose_triangle( struct lp_setup_context *setup );
162 void lp_setup_choose_line( struct lp_setup_context *setup );
163 void lp_setup_choose_point( struct lp_setup_context *setup );
165 void lp_setup_init_vbuf(struct lp_setup_context *setup);
167 boolean lp_setup_update_state( struct lp_setup_context *setup,
170 void lp_setup_destroy( struct lp_setup_context *setup );
    [all...]
lp_setup_point.c 60 constant_coef(struct lp_setup_context *setup,
73 point_persp_coeff(struct lp_setup_context *setup,
96 * Setup automatic texcoord coefficients (for sprite rendering).
97 * \param slot the vertex attribute slot to setup
104 texcoord_coef(struct lp_setup_context *setup,
118 float x0 = info->v0[0][0] - setup->pixel_offset;
119 float y0 = info->v0[0][1] - setup->pixel_offset;
134 float x0 = info->v0[0][0] - setup->pixel_offset;
135 float y0 = info->v0[0][1] - setup->pixel_offset;
165 * Special coefficient setup for gl_FragCoord
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_context.h 30 * The setup code is concerned with point/line/triangle setup and
62 * Point/line/triangle setup context.
144 } setup; member in struct:lp_setup_context
161 void lp_setup_choose_triangle( struct lp_setup_context *setup );
162 void lp_setup_choose_line( struct lp_setup_context *setup );
163 void lp_setup_choose_point( struct lp_setup_context *setup );
165 void lp_setup_init_vbuf(struct lp_setup_context *setup);
167 boolean lp_setup_update_state( struct lp_setup_context *setup,
170 void lp_setup_destroy( struct lp_setup_context *setup );
    [all...]
lp_setup_point.c 60 constant_coef(struct lp_setup_context *setup,
73 point_persp_coeff(struct lp_setup_context *setup,
96 * Setup automatic texcoord coefficients (for sprite rendering).
97 * \param slot the vertex attribute slot to setup
104 texcoord_coef(struct lp_setup_context *setup,
118 float x0 = info->v0[0][0] - setup->pixel_offset;
119 float y0 = info->v0[0][1] - setup->pixel_offset;
134 float x0 = info->v0[0][0] - setup->pixel_offset;
135 float y0 = info->v0[0][1] - setup->pixel_offset;
165 * Special coefficient setup for gl_FragCoord
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/
setup.py 37 from distutils.core import setup namespace
47 setup(author='Yuzo Fujishima',
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
chrome_test.py 12 def setup(top_dir): function
17 utils.update_version(pwd + '/src', False, version, setup, None)
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 23 * A class representing Wi-Fi Protected Setup
40 /** Wi-Fi Protected Setup. www.wi-fi.org/wifi-protected-setup has details */
41 public int setup; field in class:WpsInfo
50 setup = INVALID;
57 sbuf.append(" setup: ").append(setup);
74 setup = source.setup;
82 dest.writeInt(setup);
    [all...]
  /external/llvm/utils/lit/
setup.py 4 from setuptools import setup, find_packages namespace
6 # setuptools expects to be invoked from within the directory of setup.py, but it
8 # python path/to/setup.py install
12 setup(
  /external/oprofile/libutil++/
cverb.h 34 * setup from command line the state of these objects
36 * verbose::setup(command_line_args_to'--verbose=');
58 * verbose::setup(name)
66 static bool setup(std::string const &);
68 static bool setup(std::vector<std::string> const & args);
  /frameworks/opt/setupwizard/navigationbar/
common.mk 8 LOCAL_STATIC_JAVA_LIBRARIES += setup-wizard-navbar

Completed in 416 milliseconds

12 3 4 5 6 7 8 91011>>