/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 8 where module is the name of a Python module, and path is an optional 20 module -- the module name 21 name -- the name of the class 28 If the name of a super class is not recognized, the corresponding 30 string giving the name of the super class. Since import statements 36 module -- the module name 37 name -- the name of the class 45 from token import NAME, DEDENT, O [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pyclbr.py | 8 where module is the name of a Python module, and path is an optional 20 module -- the module name 21 name -- the name of the class 28 If the name of a super class is not recognized, the corresponding 30 string giving the name of the super class. Since import statements 36 module -- the module name 37 name -- the name of the class 45 from token import NAME, DEDENT, O [all...] |
/cts/apps/CameraITS/tests/inprog/scene2/ |
test_dng_tags.py | 25 NAME = os.path.basename(__file__).split(".")[0] 57 its.image.write_image(img, "%s_%s.jpg" % (NAME, illum_str[i]))
|
/cts/apps/CameraITS/tests/scene1/ |
test_ev_compensation_advanced.py | 28 NAME = os.path.basename(__file__).split(".")[0] 78 matplotlib.pyplot.savefig("%s_plot_means.png" % (NAME))
|
test_locked_burst.py | 31 NAME = os.path.basename(__file__).split(".")[0] 56 its.image.write_image(img, "%s_frame%d.jpg"%(NAME,i))
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
test_sensor_fusion.py | 32 NAME = os.path.basename(__file__).split(".")[0] 172 matplotlib.pyplot.savefig("%s_plot_shifts.png" % (NAME)) 193 matplotlib.pyplot.savefig("%s_plot.png" % (NAME)) 280 its.image.write_image(frame, "%s_features.jpg"%(NAME)) 309 with open("%s_events.txt"%(NAME), "r") as f: 314 img = Image.open("%s_frame%03d.jpg"%(NAME,i)) 358 with open("%s_events.txt"%(NAME), "w") as f: 367 its.image.write_image(img, "%s_frame%03d.jpg"%(NAME,i))
|
/cts/tests/tests/provider/src/android/provider/cts/ |
Settings_NameValueTableTest.java | 31 String name = "name1"; local 41 MyNameValueTable.putString(cr, uri, name, value); 48 String selection = NameValueTable.NAME + "=\"" + name + "\""; 53 assertEquals("name1", c.getString(c.getColumnIndexOrThrow(NameValueTable.NAME))); 70 String name = "table"; local 72 Uri res = NameValueTable.getUriFor(uri, name); 74 assertEquals(Uri.withAppendedPath(uri, name), res); 78 protected static boolean putString(ContentResolver resolver, Uri uri, String name, 80 return NameValueTable.putString(resolver, uri, name, value) [all...] |
/cts/tests/tests/sax/src/android/sax/cts/ |
ElementTest.java | 42 + "<name><id>bob</id></name>" 45 + "<name><id>tom</id></name>" 46 + "<name><id>brett</id></name></feed>"; 51 private static final String NAME = "name"; 74 Element name = root.getChild(ATOM_NAMESPACE, NAME); local [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
PepperPluginManager.java | 39 private static final String NAME = "name"; 44 // Find the name of the plugin's shared library. 56 // (eg. path<#name><#description><#version>;mimetype) 60 // Find the (optional) name/description/version of the plugin. 61 String name = metaData.getString(NAME); local 65 if (name != null && !name.isEmpty()) { 67 plugin.append(name); [all...] |
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
adm_writer_unittest.py | 85 'name': 'MainPolicy', 156 'name': 'MainPolicy', 220 'name': 'StringPolicy', 291 'name': 'IntPolicy', 363 'name': 'EnumPolicy', 367 'name': 'ProxyServerDisabled', 372 'name': 'ProxyServerAutoDetect', 409 NAME !!ProxyServerDisabled_DropDown VALUE NUMERIC 0 410 NAME !!ProxyServerAutoDetect_DropDown VALUE NUMERIC 1 431 NAME !!ProxyServerDisabled_DropDown VALUE NUMERIC [all...] |
/external/clang/lib/Driver/ |
SanitizerArgs.cpp | 178 #define SANITIZER(NAME, ID) \ 180 SanitizeOpt += NAME ","; 201 #define SANITIZER(NAME, ID) .Case(NAME, ID) 202 #define SANITIZER_GROUP(NAME, ID, ALIAS) .Case(NAME, ID##Group) 209 #define SANITIZER(NAME, ID) 210 #define SANITIZER_GROUP(NAME, ID, ALIAS) if (Kinds & ID##Group) Kinds |= ID;
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
MarshalHashtable.java | 44 public static final String NAME = "Map"; 49 public Object readInstance(XmlPullParser parser, String namespace, String name, 119 cm.addMapping(MarshalHashtable.NAMESPACE, MarshalHashtable.NAME, HASHTABLE_CLASS, this);
|
/external/qemu/audio/ |
rate_template.h | 30 void NAME (void *opaque, struct st_sample *ibuf, struct st_sample *obuf, 110 #undef NAME
|
/frameworks/native/include/binder/ |
IInterface.h | 83 #define IMPLEMENT_META_INTERFACE(INTERFACE, NAME) \ 84 const android::String16 I##INTERFACE::descriptor(NAME); \
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
BluetoothMasRequestGetMessagesListing.java | 60 mHeaderSet.setHeader(HeaderSet.NAME, ""); 62 mHeaderSet.setHeader(HeaderSet.NAME, folderName);
|
/external/deqp/modules/gles2/functional/ |
es2fShaderStructTests.cpp | 66 ShaderStructCase (Context& context, const char* name, const char* description, bool isVertexCase, deUint32 flags, ShaderEvalFunc evalFunc, SetupUniformsFunc setupUniformsFunc, const char* vertShaderSource, const char* fragShaderSource); 84 ShaderStructCase::ShaderStructCase (Context& context, const char* name, const char* description, bool isVertexCase, deUint32 flags, ShaderEvalFunc evalFunc, SetupUniformsFunc setupUniformsFunc, const char* vertShaderSource, const char* fragShaderSource) 85 : ShaderRenderCase (context.getTestContext(), context.getRenderContext(), context.getContextInfo(), name, description, isVertexCase, evalFunc) 151 static ShaderStructCase* createStructCase (Context& context, const char* name, const char* description, bool isVertexCase, deUint32 flags, ShaderEvalFunc evalFunc, SetupUniformsFunc setupUniforms, const LineStream& shaderSrc) 190 return new ShaderStructCase(context, name, description, isVertexCase, flags, evalFunc, setupUniforms, StringTemplate(shaderSrc.str()).specialize(spParams).c_str(), defaultFragSrc); 192 return new ShaderStructCase(context, name, description, isVertexCase, flags, evalFunc, setupUniforms, defaultVertSrc, StringTemplate(shaderSrc.str()).specialize(spParams).c_str()); 212 #define LOCAL_STRUCT_CASE(NAME, DESCRIPTION, FLAGS, SHADER_SRC, EVAL_FUNC_BODY) \ 214 struct Eval_##NAME { static void eval (ShaderEvalContext& c) EVAL_FUNC_BODY }; \ 215 addChild(createStructCase(m_context, #NAME "_vertex", DESCRIPTION, true, FLAGS, &Eval_##NAME::eval, DE_NULL, SHADER_SRC)); [all...] |
/external/deqp/modules/gles3/functional/ |
es3fShaderStructTests.cpp | 59 ShaderStructCase (Context& context, const char* name, const char* description, bool isVertexCase, bool usesTextures, ShaderEvalFunc evalFunc, SetupUniformsFunc setupUniformsFunc, const char* vertShaderSource, const char* fragShaderSource); 77 ShaderStructCase::ShaderStructCase (Context& context, const char* name, const char* description, bool isVertexCase, bool usesTextures, ShaderEvalFunc evalFunc, SetupUniformsFunc setupUniformsFunc, const char* vertShaderSource, const char* fragShaderSource) 78 : ShaderRenderCase (context.getTestContext(), context.getRenderContext(), context.getContextInfo(), name, description, isVertexCase, evalFunc) 118 static ShaderStructCase* createStructCase (Context& context, const char* name, const char* description, bool isVertexCase, bool usesTextures, ShaderEvalFunc evalFunc, SetupUniformsFunc setupUniforms, const LineStream& shaderSrc) 164 return new ShaderStructCase(context, name, description, isVertexCase, usesTextures, evalFunc, setupUniforms, StringTemplate(shaderSrc.str()).specialize(spParams).c_str(), defaultFragSrc); 166 return new ShaderStructCase(context, name, description, isVertexCase, usesTextures, evalFunc, setupUniforms, defaultVertSrc, StringTemplate(shaderSrc.str()).specialize(spParams).c_str()); 186 #define LOCAL_STRUCT_CASE(NAME, DESCRIPTION, SHADER_SRC, EVAL_FUNC_BODY) \ 188 struct Eval_##NAME { static void eval (ShaderEvalContext& c) EVAL_FUNC_BODY }; \ 189 addChild(createStructCase(m_context, #NAME "_vertex", DESCRIPTION, true, false, &Eval_##NAME::eval, DE_NULL, SHADER_SRC)); [all...] |
/external/clang/include/clang/AST/ |
RecursiveASTVisitor.h | 192 /// \brief Recursively visit a C++ nested-name-specifier. 197 /// \brief Recursively visit a C++ nested-name-specifier with location 203 /// \brief Recursively visit a name with its location information. 208 /// \brief Recursively visit a template name and dispatch to the 238 /// expression, but not for the name of the initializer, so may 239 /// be overridden for clients that need access to the name. 290 #define OPERATOR(NAME) \ 291 bool TraverseUnary##NAME(UnaryOperator *S) { \ 292 TRY_TO(WalkUpFromUnary##NAME(S)); \ 296 bool WalkUpFromUnary##NAME(UnaryOperator *S) { [all...] |
DataRecursiveASTVisitor.h | 188 /// \brief Recursively visit a C++ nested-name-specifier. 193 /// \brief Recursively visit a C++ nested-name-specifier with location 199 /// \brief Recursively visit a name with its location information. 204 /// \brief Recursively visit a template name and dispatch to the 234 /// expression, but not for the name of the initializer, so may 235 /// be overridden for clients that need access to the name. 286 #define OPERATOR(NAME) \ 287 bool TraverseUnary##NAME(UnaryOperator *S) { \ 288 TRY_TO(WalkUpFromUnary##NAME(S)); \ 293 bool WalkUpFromUnary##NAME(UnaryOperator *S) { [all...] |
/cts/apps/CameraITS/tests/dng_noise_model/ |
dng_noise_model.py | 31 NAME = os.path.basename(__file__).split(".")[0] 74 patches = its.image.get_color_checker_chart_patches(img, NAME+"_debug") 130 matplotlib.pyplot.savefig("%s_plot_mean_vs_variance.png" % (NAME)) 152 matplotlib.pyplot.savefig("%s_plot_S_O.png" % (NAME))
|
/cts/apps/CameraITS/tests/inprog/ |
test_3a_remote.py | 28 NAME = os.path.basename(__file__).split(".")[0]
|
/external/chromium_org/chrome/browser/extensions/ |
extension_context_menu_model.h | 36 NAME = 0,
|
/external/chromium_org/sandbox/win/src/ |
handle_policy.cc | 44 if (!duplicate_rule.AddStringMatch(IF, HandleTarget::NAME, type_name,
|
named_pipe_interception.cc | 46 params[NameBased::NAME] = ParamPickerMake(pipe_name);
|
named_pipe_policy.cc | 45 bool NamedPipePolicy::GenerateRules(const wchar_t* name, 52 if (!pipe.AddStringMatch(IF, NameBased::NAME, name, CASE_INSENSITIVE)) { 63 const base::string16 &name, 75 *pipe = CreateNamedPipeHelper(client_info.process, name.c_str(),
|