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

1 2 3 4

  /external/e2fsprogs/debian/
e2fsprogs.preinst 17 if [ -f /etc/mkinitrd/scripts/e2fsprogs ]
19 rm -rf /etc/mkinitrd/scripts/e2fsprogs
21 rm -f /etc/mkinitrd/scripts/e2fsprogs.mkinitrd
initrd-tools.e2fsprogs 3 # /usr/share/initrd-tools/scripts/e2fsprogs
6 $INITRDDIR/scripts/ext3-add-journal.sh
  /external/dhcpcd/mk/
scripts.mk 1 # Quick and dirty scripts
7 _scriptsinstall: ${SCRIPTS}
9 ${INSTALL} -m ${SCRIPTSMODE} ${SCRIPTS} ${DESTDIR}${SCRIPTSDIR}
  /external/webkit/WebKit/mac/WebView/
WebPDFDocumentExtras.mm 73 NSMutableArray *scripts = [NSMutableArray array];
76 return scripts;
80 return scripts;
85 return scripts;
90 return scripts;
126 [scripts addObject:script];
130 return scripts;
WebPDFRepresentation.mm 129 NSArray *scripts = allScriptsInPDFDocument(doc);
133 NSUInteger scriptCount = [scripts count];
141 JSStringRef script = JSStringCreateWithCFString((CFStringRef)[scripts objectAtIndex:i]);
  /external/webkit/WebCore/inspector/front-end/
SourceView.js 96 var scripts = this.resource.scripts;
97 for (var i = 0; i < scripts.length; ++i) {
98 var script = scripts[i];
105 if (WebInspector.panels.scripts) {
107 WebInspector.panels.scripts.addBreakpoint(breakpoint);
113 if (WebInspector.panels.scripts)
114 WebInspector.panels.scripts.removeBreakpoint(breakpoint);
  /system/bluetooth/brfpatch/
Android.mk 4 # scripts
  /external/webkit/WebKit/mac/Misc/
WebCache.mm 56 [NSNumber numberWithInt:s.scripts.count], @"JavaScript",
66 [NSNumber numberWithInt:s.scripts.size], @"JavaScript",
76 [NSNumber numberWithInt:s.scripts.liveSize], @"JavaScript",
86 [NSNumber numberWithInt:s.scripts.decodedSize], @"JavaScript",
96 [NSNumber numberWithInt:s.scripts.purgeableSize], @"JavaScript",
106 [NSNumber numberWithInt:s.scripts.purgedSize], @"JavaScript",
  /external/webkit/WebKit/chromium/public/
WebCache.h 63 ResourceTypeStat scripts; member in struct:WebKit::WebCache::ResourceTypeStats
  /sdk/eclipse/scripts/
build_server.sh 69 sdk/eclipse/scripts/create_all_symlinks.sh
92 sdk/eclipse/scripts/build_plugins.sh $QUALIFIER $INTERNAL_BUILD -d "$DEST_DIR" -a "$BUILD_PREFIX"
update_version.sh 13 scripts/update_version.sh 0.1.2 0.2.3
build_plugins.sh 5 # Usage: sdk/eclipse/scripts/build_plugins <build_version>
13 # Other properties, ant scripts that drive the build are defined in ./buildConfig
84 scripts/setup_eclipse.sh -p "$BASE_DIR"
100 # parse for build internal site flag. If set, pass in internalSite property to ant scripts
154 BUILDFILE=`findFirst "$ECLIPSE_HOME"/plugins/org.eclipse.pde.build_*/scripts/build.xml`
163 echo "Installation Error: Eclipse build file org.eclipse.pde.build_.../scripts/build.xml " \
  /external/webkit/WebCore/
Android.derived.v8bindings.mk 27 $(LOCAL_PATH)/bindings/scripts/CodeGenerator.pm \
28 $(LOCAL_PATH)/bindings/scripts/CodeGeneratorV8.pm \
29 $(LOCAL_PATH)/bindings/scripts/IDLParser.pm \
30 $(LOCAL_PATH)/bindings/scripts/IDLStructure.pm \
31 $(LOCAL_PATH)/bindings/scripts/generate-bindings.pl
66 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include css --include dom --include html --outputdir $(dir $@) $<
128 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
222 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVAS (…)
    [all...]
Android.derived.jscbindings.mk 46 bindings/scripts/CodeGenerator.pm \
47 bindings/scripts/IDLParser.pm \
48 bindings/scripts/IDLStructure.pm \
49 bindings/scripts/generate-bindings.pl \
83 $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $<
145 $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --outputdir $(dir $@) $<
239 $(GEN): PRIVATE_CUSTOM_TOOL = perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include d (…)
    [all...]
  /external/v8/test/mjsunit/
debug-script.js 39 var scripts = Debug.scripts(); variable
40 for (i = 0; i < scripts.length; i++) {
41 if (scripts[i].type == Debug.ScriptType.Native) {
42 if (scripts[i].name) {
45 } else if (scripts[i].type == Debug.ScriptType.Extension) {
47 } else if (scripts[i].type == Debug.ScriptType.Normal) {
50 assertUnreachable('Unexpected type ' + scripts[i].type);
54 // This has to be updated if the number of native scripts change.
  /external/webkit/WebCore/WebCore.vcproj/
build-generated-files.sh 29 NUMCPUS=`../../WebKitTools/Scripts/num-cpus`
62 export FEATURE_DEFINES=`$SDKROOT/tools/scripts/feature-defines.sh $SDKROOT $3`
  /external/webkit/WebKit/chromium/src/
WebCache.cpp 104 ToResourceTypeStat(stats.scripts, result->scripts);
  /external/webkit/WebCore/html/
HTMLDocument.idl 33 readonly attribute HTMLCollection scripts;
  /external/webkit/JavaScriptCore/
jsc.cpp 109 Vector<Script> scripts; member in struct:Options
365 static bool runWithScripts(GlobalObject* globalObject, const Vector<Script>& scripts, bool dump)
381 for (size_t i = 0; i < scripts.size(); i++) {
382 if (scripts[i].isFile) {
383 fileName = scripts[i].argument;
388 script = scripts[i].argument;
479 options.scripts.append(Script(true, argv[i]));
485 options.scripts.append(Script(false, argv[i]));
511 options.scripts.append(Script(true, argv[i]));
514 if (options.scripts.isEmpty()
    [all...]
  /external/libvpx/build/make/
gen_msvs_def.sh 22 to export from a DLL. Source files are technically bash scripts (and thus may
  /external/srec/srec/Semproc/include/
SR_SemanticGraphImpl.h 57 * The word map containing the actual scripts. The index of teh script in the wordmap
60 wordmap* scripts; member in struct:SR_SemanticGraphImpl_t
  /external/webkit/WebKit/win/
WebCache.cpp 108 static CFStringRef scriptsKey = CFSTR("scripts");
129 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.count));
151 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.size));
173 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.liveSize));
195 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.decodedSize));
  /external/webkit/WebCore/loader/
DocLoader.cpp 182 // types of resources, like Images, Scripts, and CSS, can be loaded from
491 unsigned scripts = 0; local
508 scripts++;
528 if (scripts)
529 printf("SCRIPTS: %d (%d hits, hit rate %d%%)\n", scripts, scripts - scriptMisses, (scripts - scriptMisses) * 100 / scripts);
  /external/webkit/WebCore/page/
PageGroup.cpp 250 UserScriptVector* scripts = it->second;
251 for (int i = scripts->size() - 1; i >= 0; --i) {
252 if (scripts->at(i)->url() == url)
253 scripts->remove(i);
256 if (!scripts->isEmpty())
  /external/srec/srec/Semproc/src/
SemanticProcessorImpl.c 59 * A holder for accumulated scripts
69 * A list of accumulated scripts
99 * Recursively accumulate the scripts
101 static ESR_ReturnCode accumulate_scripts(SR_SemanticGraphImpl* semgraph, script_list* scripts, sem_partial_path* path_root);
103 static ESR_ReturnCode interpretScripts(SR_SemanticProcessorImpl* semproc, LCHAR* scripts, SR_SemanticResult** result);
544 * Go through the partial paths which were successful and accumulate the scripts
550 /*pfprintf(PSTDOUT,"Accumulated scripts\n");*/
553 * Prepare the scripts for processing, in other words, make them "nice".
667 if (0) PLogMessage( L("Accumulated Scripts for:\n%s"), semproc->acc_scripts);
781 LCHAR acc_scripts[MAX_SCRIPT_LEN]; /* the accumulated scripts */
    [all...]

Completed in 299 milliseconds

1 2 3 4