HomeSort by relevance Sort by last modified time
    Searched defs:js (Results 1 - 25 of 38) sorted by null

1 2

  /external/libvpx/libvpx/vp8/common/
invtrans.h 29 int js; local
30 for (js = 0; js < 16; ++js) {
31 if ((eobs[js] == 0) && (diff[0] != 0)) eobs[js]++;
  /external/grpc-grpc/tools/profiling/microbenchmarks/
bm2bq.py 48 js = json.loads(f.read()) variable
59 for row in bm_json.expand_json(js, js2):
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmsimpleexpression_unittest.cpp 28 CFX_WideTextBuf js; local
29 callExp.ToJavaScript(js);
46 EXPECT_EQ(result.AsStringView(), js.AsStringView());
  /external/grpc-grpc/tools/buildgen/
build-cleaner.py 68 js = yaml.load(f) variable
69 js = rebuild_as_ordered_dict(js, _TOP_LEVEL_KEYS) variable
71 if grp not in js: continue
72 js[grp] = sorted(
73 [clean_elem(x) for x in js[grp]],
75 output = yaml.dump(js, indent=2, width=80, default_flow_style=False)
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
generate.py 116 js = flatten_to_file.getvalue()
117 minified_js = _MinifyJS(js)
129 js = s.getvalue()
130 min_js_size = str(len(_MinifyJS(js)))
143 print '%i\t%s\t%s\t%s\t%s' % (len(js), min_js_size, module.name, tln, sln)
210 The load_sequence is a list of (HTML or JS) Module objects; the order that
261 js = GenerateJS(load_sequence, minify=minify, report_sizes=report_sizes) variable in class:GenerateStandaloneHTMLToFile.HTMLGenerationController
262 output_file.write(js)
  /external/jsmn/example/
jsondump.c 28 static int dump(const char *js, jsmntok_t *t, size_t count, int indent) {
34 printf("%.*s", t->end - t->start, js+t->start);
37 printf("'%.*s'", t->end - t->start, js+t->start);
44 j += dump(js, t+1+j, count-j, indent+1);
46 j += dump(js, t+1+j, count-j, indent+1);
56 j += dump(js, t+1+j, count-j, indent+1);
67 char *js = NULL; local
101 js = realloc_it(js, jslen + r + 1);
102 if (js == NULL)
    [all...]
  /external/skia/tools/skqp/
gn_to_bp.py 138 js = gn_to_bp_utils.GenerateJSONFromGN(gn_args) variable
143 srcs = strip_slashes(js['targets']['//:libskqp_app']['sources'])
144 cflags = strip_slashes(js['targets']['//:libskqp_app']['cflags'])
145 cflags_cc = strip_slashes(js['targets']['//:libskqp_app']['cflags_cc'])
146 local_includes = strip_slashes(js['targets']['//:libskqp_app']['include_dirs'])
147 defines = {str(d) for d in js['targets']['//:libskqp_app']['defines']}
152 gn_to_bp_utils.GrabDependentValues(js, '//:libskqp_app', 'sources', srcs, None)
153 gn_to_bp_utils.GrabDependentValues(js, '//:libskqp_app', 'include_dirs',
155 gn_to_bp_utils.GrabDependentValues(js, '//:libskqp_app', 'defines',
  /external/skqp/tools/skqp/
gn_to_bp.py 140 js = gn_to_bp_utils.GenerateJSONFromGN(gn_args) variable
145 srcs = strip_slashes(js['targets']['//:libskqp_app']['sources'])
146 cflags = strip_slashes(js['targets']['//:libskqp_app']['cflags'])
147 cflags_cc = strip_slashes(js['targets']['//:libskqp_app']['cflags_cc'])
148 local_includes = strip_slashes(js['targets']['//:libskqp_app']['include_dirs'])
149 defines = {str(d) for d in js['targets']['//:libskqp_app']['defines']}
154 gn_to_bp_utils.GrabDependentValues(js, '//:libskqp_app', 'sources', srcs, None)
155 gn_to_bp_utils.GrabDependentValues(js, '//:libskqp_app', 'include_dirs',
157 gn_to_bp_utils.GrabDependentValues(js, '//:libskqp_app', 'defines',
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/tests/
JsonWebKeyUnittest.cpp 66 const String8 js(
77 EXPECT_FALSE(jwk->extractKeysFromJsonWebKeySet(js, &keys));
82 const String8 js(
99 EXPECT_FALSE(jwk->extractKeysFromJsonWebKeySet(js, &keys));
104 const String8 js(
121 EXPECT_TRUE(jwk->extractKeysFromJsonWebKeySet(js, &keys));
129 const String8 js(
146 EXPECT_TRUE(jwk->extractKeysFromJsonWebKeySet(js, &keys));
154 const String8 js(
184 EXPECT_TRUE(jwk->extractKeysFromJsonWebKeySet(js, &keys))
192 const String8 js; local
    [all...]
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsJobDurationTests.java 57 JobScheduler js = mContext.getSystemService(JobScheduler.class); local
58 assertTrue("JobScheduler service not available", js != null);
63 js.schedule(job);
SimpleJobService.java 62 JobScheduler js = context.getSystemService(JobScheduler.class); local
63 js.schedule(jobInfo);
BatteryStatsBgVsFgActions.java 256 JobScheduler js = ctx.getSystemService(JobScheduler.class); local
257 if (js == null) {
266 js.schedule(job);
  /cts/tests/JobSchedulerSharedUid/src/android/jobscheduler/cts/shareduidtests/
SharedUidTest.java 47 final JobScheduler js = getContext().getSystemService(JobScheduler.class); local
55 js.cancel(JOBID);
57 assertEquals(JobScheduler.RESULT_SUCCESS, js.schedule(ji));
60 assertNotNull("Job should be registered", js.getPendingJob(JOBID));
95 assertNotNull("Job shouldn't be canceled", js.getPendingJob(JOBID));
97 js.cancel(JOBID);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
MediaContentJob.java 52 JobScheduler js = context.getSystemService(JobScheduler.class); local
57 js.schedule(builder.build());
62 JobScheduler js = context.getSystemService(JobScheduler.class); local
63 List<JobInfo> jobs = js.getAllPendingJobs();
76 JobScheduler js = context.getSystemService(JobScheduler.class); local
77 js.cancel(JobIds.MEDIA_CONTENT_JOB);
PhotosContentJob.java 89 JobScheduler js = context.getSystemService(JobScheduler.class); local
90 js.schedule(JOB_INFO);
96 JobScheduler js = context.getSystemService(JobScheduler.class); local
97 List<JobInfo> jobs = js.getAllPendingJobs();
111 JobScheduler js = context.getSystemService(JobScheduler.class); local
112 js.cancel(JobIds.PHOTOS_CONTENT_JOB);
  /external/jsmn/test/
tests.c 147 const char *js = "{\"x\": \"va\\\\ue\", \"y\": \"value y\"}"; local
150 for (i = 1; i <= strlen(js); i++) {
151 r = jsmn_parse(&p, js, i, tok, sizeof(tok)/sizeof(tok[0]));
152 if (i == strlen(js)) {
154 check(tokeq(js, tok, 5,
173 const char *js = "[ 1, true, [123, \"hello\"]]"; local
176 for (i = 1; i <= strlen(js); i++) {
177 r = jsmn_parse(&p, js, i, tok, sizeof(tok)/sizeof(tok[0]));
178 if (i == strlen(js)) {
180 check(tokeq(js, tok, 6
200 const char *js; local
231 const char *js; local
251 const char *js; local
268 const char *js = local
275 const char *js; local
294 const char *js; local
342 const char *js; local
369 const char *js; local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/js/
js_generator.h 51 namespace js { namespace in namespace:google::protobuf::compiler
63 // Create a library with name <name>_lib.js rather than a separate .js file
276 } // namespace js
  /external/testng/src/main/java/org/testng/reporters/jq/
TimesPanel.java 32 private String js(ISuite suite) { method in class:TimesPanel
91 xsb.addString(js(suite)); method
  /external/clang/test/SemaCXX/
linkage-spec.cpp 124 namespace js { extern int ObjectClass; } namespace in namespace:pr14958
126 namespace js {} namespace
128 int js::ObjectClass;
  /external/skia/gn/
gn_to_bp.py 346 js = gn_to_bp_utils.GenerateJSONFromGN(gn_args) variable
351 android_srcs = strip_slashes(js['targets']['//:skia']['sources'])
352 cflags = strip_slashes(js['targets']['//:skia']['cflags'])
353 cflags_cc = strip_slashes(js['targets']['//:skia']['cflags_cc'])
354 local_includes = strip_slashes(js['targets']['//:skia']['include_dirs'])
355 export_includes = strip_slashes(js['targets']['//:public']['include_dirs'])
357 dm_srcs = strip_slashes(js['targets']['//:dm']['sources'])
358 dm_includes = strip_slashes(js['targets']['//:dm']['include_dirs'])
360 nanobench_target = js['targets']['//:nanobench']
364 gn_to_bp_utils.GrabDependentValues(js, '//:dm', 'sources', dm_srcs, 'skia'
    [all...]
  /external/skqp/gn/
gn_to_bp.py 298 js = gn_to_bp_utils.GenerateJSONFromGN(gn_args) variable
303 android_srcs = strip_slashes(js['targets']['//:skia']['sources'])
304 cflags = strip_slashes(js['targets']['//:skia']['cflags'])
305 cflags_cc = strip_slashes(js['targets']['//:skia']['cflags_cc'])
306 local_includes = strip_slashes(js['targets']['//:skia']['include_dirs'])
307 export_includes = strip_slashes(js['targets']['//:public']['include_dirs'])
309 dm_srcs = strip_slashes(js['targets']['//:dm']['sources'])
310 dm_includes = strip_slashes(js['targets']['//:dm']['include_dirs'])
312 nanobench_target = js['targets']['//:nanobench']
316 gn_to_bp_utils.GrabDependentValues(js, '//:dm', 'sources', dm_srcs, 'skia'
    [all...]
  /cts/tests/JobScheduler/src/android/jobscheduler/
MockJobService.java 210 final JobScheduler js = (JobScheduler) getSystemService( local
213 js.enqueue(ji, new JobWorkItem(sub[subi].intent));
TriggerContentJobService.java 63 JobScheduler js = context.getSystemService(JobScheduler.class); local
64 js.schedule(jobInfo);
  /cts/tests/JobSchedulerSharedUid/src/android/jobscheduler/
MockJobService.java 210 final JobScheduler js = (JobScheduler) getSystemService( local
213 js.enqueue(ji, new JobWorkItem(sub[subi].intent));
TriggerContentJobService.java 63 JobScheduler js = context.getSystemService(JobScheduler.class); local
64 js.schedule(jobInfo);

Completed in 1793 milliseconds

1 2