OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sourcename
(Results
1 - 25
of
112
) sorted by null
1
2
3
4
5
/cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java
31
private final String
sourceName
;
33
public JavaSource(String
sourceName
, String sourceCode) {
34
super(URI.create("string:///" +
sourceName
.replace(".", "/") + ".java"),
36
this.
sourceName
=
sourceName
;
42
return
sourceName
;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptPreprocessor.cpp
72
String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String&
sourceName
)
77
return preprocessSourceCode(sourceCode,
sourceName
, v8::Undefined(m_isolate));
80
String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String&
sourceName
, const String& functionName)
86
return preprocessSourceCode(sourceCode,
sourceName
, functionNameString);
89
String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String&
sourceName
, v8::Handle<v8::Value> functionName)
98
v8::Handle<v8::String> sourceNameString = v8String(m_isolate,
sourceName
);
ScriptPreprocessor.h
49
String preprocessSourceCode(const String& sourceCode, const String&
sourceName
);
50
String preprocessSourceCode(const String& sourceCode, const String&
sourceName
, const String& functionName);
55
String preprocessSourceCode(const String& sourceCode, const String&
sourceName
, v8::Handle<v8::Value> functionName);
ScriptEventListener.h
52
bool eventListenerHandlerLocation(Document*, EventListener*, String&
sourceName
, String& scriptId, int& lineNumber);
ScriptCallStackFactory.cpp
56
String
sourceName
;
59
sourceName
= toCoreString(sourceNameValue);
68
return ScriptCallFrame(functionName, scriptId,
sourceName
, sourceLineNumber, sourceColumn);
ScriptEventListener.cpp
140
bool eventListenerHandlerLocation(Document* document, EventListener* listener, String&
sourceName
, String& scriptId, int& lineNumber)
158
sourceName
= toCoreString(origin.ResourceName().As<v8::String>());
160
sourceName
= "";
/packages/apps/Dialer/src/com/android/dialer/list/
RegularSearchListAdapter.java
58
final String
sourceName
= partition.getLabel();
60
cacheInfo.setExtendedSource(
sourceName
, directoryId);
62
cacheInfo.setDirectorySource(
sourceName
, directoryId);
/build/tools/atree/
files.h
25
string
sourceName
;
files.cpp
116
const string&
sourceName
, const string& outName)
122
rec.
sourceName
=
sourceName
;
345
string full = path_append(*it, rec->
sourceName
);
359
rec->listFile.c_str(), rec->listLine, rec->
sourceName
.c_str());
399
r.
sourceName
= path_append(rec.
sourceName
, entry);
400
r.sourcePath = path_append(rec.sourceBase, r.
sourceName
);
430
string full = path_append(rec.sourceBase, rec.
sourceName
);
/dalvik/vm/native/
dalvik_system_DexFile.cpp
133
* private static int openDexFileNative(String
sourceName
, String outputName,
138
* "
sourceName
" should point to the "source" jar or DEX file.
159
char*
sourceName
;
163
dvmThrowNullPointerException("
sourceName
== null");
167
sourceName
= dvmCreateCstrFromString(sourceNameObj);
194
if (dvmClassPathContains(gDvm.bootClassPath,
sourceName
)) {
195
ALOGW("Refusing to reopen boot DEX '%s'",
sourceName
);
198
free(
sourceName
);
208
if (hasDexExtension(
sourceName
)
209
&& dvmRawDexFileOpen(
sourceName
, outputName, &pRawDexFile, false) == 0)
[
all
...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRFileStream.as
32
public override function get
sourceName
():String {
ANTLRStringStream.as
202
public function get
sourceName
():String {
206
public function set
sourceName
(
sourceName
:String):void {
207
_sourceName =
sourceName
;
Parser.as
82
public override function get
sourceName
():String {
83
return input.
sourceName
;
TokenSource.as
53
function get
sourceName
():String;
/libcore/dalvik/src/main/java/dalvik/system/
DexFile.java
90
* @param
sourceName
97
private DexFile(String
sourceName
, String outputName, int flags) throws IOException {
111
mCookie = openDexFile(
sourceName
, outputName, flags);
112
mFileName =
sourceName
;
294
private static int openDexFile(String
sourceName
, String outputName,
296
return openDexFileNative(new File(
sourceName
).getCanonicalPath(),
301
native private static int openDexFileNative(String
sourceName
, String outputName,
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs
85
public ANTLRStringStream(string input, string
sourceName
)
86
: this(input.ToCharArray(), input.Length,
sourceName
) {
94
public ANTLRStringStream(char[] data, int numberOfActualCharsInArray, string
sourceName
) {
104
this.name =
sourceName
;
275
public virtual string
SourceName
{
Parser.cs
99
public override string
SourceName
{
101
return input.
SourceName
;
UnbufferedTokenStream.cs
72
public string
SourceName
{
74
return TokenSource.
SourceName
;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRStringStream.cs
88
public ANTLRStringStream( string input, string
sourceName
)
89
: this( input.ToCharArray(), input.Length,
sourceName
)
99
public ANTLRStringStream( char[] data, int numberOfActualCharsInArray, string
sourceName
)
110
this.name =
sourceName
;
314
public virtual string
SourceName
Parser.cs
111
public override string
SourceName
115
return input.
SourceName
;
UnbufferedTokenStream.cs
79
public string
SourceName
83
return TokenSource.
SourceName
;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs
94
public SlimStringStream( string input, string
sourceName
)
95
: this( input.ToCharArray(), input.Length,
sourceName
)
105
public SlimStringStream( char[] data, int numberOfActualCharsInArray, string
sourceName
)
111
this.name =
sourceName
;
326
public string
SourceName
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs
159
public virtual string
SourceName
{
161
return TokenSource.
SourceName
;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs
189
public virtual string
SourceName
193
return TokenSource.
SourceName
;
/external/compiler-rt/BlocksRuntime/tests/
testfilerunner.h
63
__strong char *
sourceName
;
72
@property __strong char *
sourceName
;
Completed in 508 milliseconds
1
2
3
4
5